From a46519358a4e8daea5ed53bc323913fa9ce8a8f8 Mon Sep 17 00:00:00 2001 From: webadderall <131426131+webadderall@users.noreply.github.com> Date: Tue, 10 Mar 2026 19:12:50 +1100 Subject: [PATCH] Set version to 1.0.0 and remove version from release artifact names --- electron-builder.json5 | 8 +++++--- package.json | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/electron-builder.json5 b/electron-builder.json5 index 24d5e6b6..eed42ad2 100644 --- a/electron-builder.json5 +++ b/electron-builder.json5 @@ -12,7 +12,7 @@ "buildDependenciesFromSource": true, "compression": "normal", "directories": { - "output": "release/${version}" + "output": "release" }, "files": [ "dist", @@ -41,7 +41,7 @@ } ], "icon": "icons/icons/mac/icon.icns", - "artifactName": "${productName}-Mac-${arch}-${version}-Installer.${ext}", + "artifactName": "Recordly.dmg", "extendInfo": { "NSAudioCaptureUsageDescription": "Recordly needs audio capture permission to record system audio.", "NSMicrophoneUsageDescription": "Recordly needs microphone access to record voice audio.", @@ -54,7 +54,7 @@ "AppImage" ], "icon": "icons/icons/png", - "artifactName": "${productName}-Linux-${version}.${ext}", + "artifactName": "Recordly.AppImage", "category": "AudioVideo" }, "win": { @@ -62,5 +62,7 @@ "nsis" ], "icon": "icons/icons/win/icon.ico" + , + "artifactName": "Recordly.exe" } } diff --git a/package.json b/package.json index e34c9945..12cc9239 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "url": "https://github.com/webadderall/Recordly/issues" }, "private": true, - "version": "1.1.3", + "version": "1.0.0", "type": "module", "scripts": { "dev": "vite",