Skip to content

Commit 814372e

Browse files
committed
fix: long package names in windows open with options
1 parent 1ab9dfd commit 814372e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src-build/ci-createDistReleaseConfig.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ async function ciCreateDistReleaseConfig() {
8686
configJson.package.version = phoenixVersion;
8787
configJson.package.productName = _getProductName(configJson.package.productName, phoenixStage);
8888
configJson.tauri.bundle.shortDescription = configJson.package.productName;
89+
configJson.tauri.bundle.longDescription = configJson.package.productName;
8990
console.log("Product name is: ", configJson.package.productName);
9091
configJson.tauri.windows[0].title = configJson.package.productName;
9192
if(os.platform() === 'win32'){

src-tauri/tauri.conf.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,8 @@
184184
"icons/icon.ico"
185185
],
186186
"identifier": "io.phcode.dev",
187-
"longDescription": "Phoenix is a modern open-source IDE for the web, built for the browser",
187+
"shortDescription": "Phoenix Code Experimental Build",
188+
"longDescription": "Phoenix Code Experimental Build",
188189
"macOS": {
189190
"entitlements": "../entitlements.plist",
190191
"exceptionDomain": "localhost",
@@ -196,7 +197,6 @@
196197
"resources": [
197198
"src-node/*"
198199
],
199-
"shortDescription": "Phoenix Code Experimental Build",
200200
"targets": [
201201
"appimage",
202202
"nsis",

0 commit comments

Comments
 (0)