Skip to content

Commit

Permalink
Merge pull request #12 from crabnebula-dev/generate-updater-artifacts
Browse files Browse the repository at this point in the history
fix: Generate updater artifacts
  • Loading branch information
denjell-crabnebula authored Nov 10, 2024
2 parents 9635439 + 330d0b7 commit d9db540
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"productName": "koi-pond",
"version": "0.1.2",
"version": "0.1.3",
"identifier": "com.koi-pond.app",
"build": {
"beforeDevCommand": "pnpm dev",
Expand Down Expand Up @@ -37,7 +37,8 @@
"icons/[email protected]",
"icons/icon.icns",
"icons/icon.ico"
]
],
"createUpdaterArtifacts": true
},
"plugins": {
"updater": {
Expand Down
1 change: 0 additions & 1 deletion src/updater.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ export async function checkForAppUpdates() {
const update = await check();

if (update?.available) {
console.log("Available");
const yes = await ask(
`
Update to ${update.version} is available!
Expand Down

0 comments on commit d9db540

Please sign in to comment.