Skip to content

Commit

Permalink
fix: windows 图标显示不完整 #1
Browse files Browse the repository at this point in the history
  • Loading branch information
xurenda committed Nov 23, 2024
1 parent 961fb61 commit 8ac6466
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "enjoy-player",
"version": "1.0.2",
"version": "1.0.3",
"private": true,
"type": "module",
"main": "./electron/main.js",
Expand Down Expand Up @@ -76,7 +76,7 @@
"./electron"
],
"win": {
"icon": "./public/logo.png",
"icon": "./public/logo_256x256.ico",
"artifactName": "${productName}_${version}.${ext}",
"target": [
"nsis"
Expand Down
Binary file added public/logo_256x256.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion src/pages/TheSettings/TheShortcuts.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="box-border h-full overflow-y-auto overflow-x-hidden">
<div class="flex flex-wrap">
<div v-for="item in shortcuts" :key="item.key.join(' + ')" class="mb-4 flex w-full items-center">
<div class="mr-2 w-32">
<div class="mr-2 w-36">
<a-typography-text v-for="key in item.key" :key="key" :keyboard="!notKey.includes(key)">{{
key
}}</a-typography-text>
Expand Down

0 comments on commit 8ac6466

Please sign in to comment.