Skip to content

Commit

Permalink
1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Milkshiift committed Aug 7, 2024
1 parent 747cdfb commit f16f4ad
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 22 deletions.
1 change: 1 addition & 0 deletions assetsDev/io.github.milkshiift.GoofCord.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
</screenshot>
</screenshots>
<releases>
<release version="1.6.0" date="2024-08-07"/>
<release version="1.5.1" date="2024-07-18"/>
<release version="1.5.0" date="2024-07-07"/>
<release version="1.4.3" date="2024-06-17"/>
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "goofcord",
"version": "1.5.1",
"version": "1.6.0",
"description": "Take control of your Discord experience with GoofCord – the highly configurable and privacy-minded discord client.",
"main": "ts-out/main.js",
"scripts": {
Expand All @@ -23,7 +23,7 @@
},
"homepage": "https://github.com/Milkshiift/GoofCord",
"devDependencies": {
"@types/node": "^22.0.0",
"@types/node": "^22.1.0",
"@types/stegcloak": "^1.0.2",
"electron": "^31.3.1",
"electron-builder": "^24.13.3",
Expand Down
38 changes: 19 additions & 19 deletions pnpm-lock.yaml

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

3 changes: 2 additions & 1 deletion src/menu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,10 @@ export async function setApplicationMenu() {
{
label: "Zoom",
submenu: [
{label: "Zoom in", accelerator: "CmdOrCtrl+Plus", role: "zoomIn"},
// Fix for zoom in on keyboards with dedicated + like QWERTZ (or numpad)
// See https://github.com/electron/electron/issues/14742 and https://github.com/electron/electron/issues/5256
{label: "Zoom in", accelerator: "CmdOrCtrl+Plus", role: "zoomIn", visible: false},
{label: "Zoom in", accelerator: "CmdOrCtrl++", role: "zoomIn"},
{label: "Zoom in", accelerator: "CmdOrCtrl+=", role: "zoomIn", visible: false},
{label: "Zoom out", accelerator: "CmdOrCtrl+-", role: "zoomOut"}
]
Expand Down

0 comments on commit f16f4ad

Please sign in to comment.