Skip to content

Commit

Permalink
fix: 修复分类id重复的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
ximu3 committed Oct 14, 2024
1 parent cafe25f commit 98a90b3
Show file tree
Hide file tree
Showing 3 changed files with 188 additions and 174 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ dist
out
.DS_Store
*.log*
src/renderer/public
src/renderer/public
16 changes: 8 additions & 8 deletions electron-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ directories:
buildResources: build
files:
# - "out/**/*"
- '!**/.vscode/*'
- '!src/*'
- '!electron.vite.config.{js,ts,mjs,cjs}'
- '!{.eslintignore,.eslintrc.cjs,.prettierignore,.prettierrc.yaml,dev-app-update.yml,CHANGELOG.md,README.md}'
- '!{.env,.env.*,.npmrc,pnpm-lock.yaml}'
- "!**/.vscode/*"
- "!src/*"
- "!electron.vite.config.{js,ts,mjs,cjs}"
- "!{.eslintignore,.eslintrc.cjs,.prettierignore,.prettierrc.yaml,dev-app-update.yml,CHANGELOG.md,README.md}"
- "!{.env,.env.*,.npmrc,pnpm-lock.yaml}"
extraFiles:
- from: "assets/"
to: "assets"
Expand All @@ -29,9 +29,9 @@ nsis:
shortcutName: ${productName}
uninstallDisplayName: ${productName}
createDesktopShortcut: always
oneClick: false # 禁用一键安装
allowToChangeInstallationDirectory: true # 允许更改安装目录
perMachine: true # 允许选择为所有用户安装或仅为当前用户安装
oneClick: false # 禁用一键安装
allowToChangeInstallationDirectory: true # 允许更改安装目录
perMachine: true # 允许选择为所有用户安装或仅为当前用户安装
include: installer.nsh
mac:
entitlementsInherit: build/entitlements.mac.plist
Expand Down
Loading

0 comments on commit 98a90b3

Please sign in to comment.