Skip to content

Commit

Permalink
Disable Hide to Tray by default and bundle assets
Browse files Browse the repository at this point in the history
  • Loading branch information
ggtylerr committed Jun 7, 2022
1 parent 0625f41 commit e30fe3d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@
"appx"
]
},
"extraFiles": [
"assets"
],
"appx": {
"displayName": "Divolt Desktop",
"applicationId": "revolt.chat",
Expand Down
4 changes: 2 additions & 2 deletions src/lib/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export async function firstRun() {

store.set("firstrun", true);
store.set("config", {
"minimiseToTray": "true"
"minimiseToTray": "false"
});
}

Expand All @@ -29,7 +29,7 @@ export function getConfig(): ConfigData {
build: "stable",
frame: process.platform !== "win32",
discordRPC: false,
minimiseToTray: true,
minimiseToTray: false,
hardwareAcceleration: true,
};

Expand Down

0 comments on commit e30fe3d

Please sign in to comment.