Skip to content

Commit

Permalink
Fixes #445: Enable some online features by default
Browse files Browse the repository at this point in the history
  • Loading branch information
digimezzo committed Sep 3, 2023
1 parent 74206b3 commit 912cd29
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions main.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion main.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ function createMainWindow(): void {

// Load the previous state with fallback to defaults
const windowState = windowStateKeeper({
defaultWidth: 870,
defaultHeight: 620,
defaultWidth: 1000,
defaultHeight: 650,
});

const remoteMain = require('@electron/remote/main');
Expand Down
6 changes: 3 additions & 3 deletions src/app/common/settings/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,7 @@ export class Settings implements BaseSettings {
}

if (!this.settings.has('downloadMissingAlbumCovers')) {
this.settings.set('downloadMissingAlbumCovers', false);
this.settings.set('downloadMissingAlbumCovers', true);
}

if (!this.settings.has('showAllFoldersInCollection')) {
Expand Down Expand Up @@ -864,11 +864,11 @@ export class Settings implements BaseSettings {
}

if (!this.settings.has('enableMultimediaKeys')) {
this.settings.set('enableMultimediaKeys', false);
this.settings.set('enableMultimediaKeys', true);
}

if (!this.settings.has('downloadArtistInformationFromLastFm')) {
this.settings.set('downloadArtistInformationFromLastFm', false);
this.settings.set('downloadArtistInformationFromLastFm', true);
}
}
}

0 comments on commit 912cd29

Please sign in to comment.