-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: support
executableName
in main config (#7828)
- Loading branch information
1 parent
9e97794
commit 7c7db83
Showing
7 changed files
with
166 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"app-builder-lib": minor | ||
--- | ||
|
||
fix: support executableName in main config |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -655,3 +655,91 @@ Object { | |
`; | ||
|
||
exports[`no quotes for safe exec name 5`] = `"Test Application (test quite “ #378)"`; | ||
|
||
exports[`top-level exec name 1`] = ` | ||
Object { | ||
"linux": Array [ | ||
Object { | ||
"arch": "x64", | ||
"file": "TestApp_1.1.0_amd64.deb", | ||
}, | ||
], | ||
} | ||
`; | ||
|
||
exports[`top-level exec name 2`] = ` | ||
Array [ | ||
"/", | ||
"/opt/", | ||
"/usr/", | ||
"/opt/foo/", | ||
"/opt/foo/Boo", | ||
"/opt/foo/chrome-sandbox", | ||
"/opt/foo/chrome_100_percent.pak", | ||
"/opt/foo/chrome_200_percent.pak", | ||
"/opt/foo/chrome_crashpad_handler", | ||
"/opt/foo/icudtl.dat", | ||
"/opt/foo/libEGL.so", | ||
"/opt/foo/libffmpeg.so", | ||
"/opt/foo/libGLESv2.so", | ||
"/opt/foo/libvk_swiftshader.so", | ||
"/opt/foo/libvulkan.so.1", | ||
"/opt/foo/LICENSE.electron.txt", | ||
"/opt/foo/LICENSES.chromium.html", | ||
"/opt/foo/resources.pak", | ||
"/opt/foo/snapshot_blob.bin", | ||
"/opt/foo/v8_context_snapshot.bin", | ||
"/opt/foo/vk_swiftshader_icd.json", | ||
"/usr/share/", | ||
"/opt/foo/resources/", | ||
"/opt/foo/resources/app.asar", | ||
"/opt/foo/swiftshader/", | ||
"/opt/foo/swiftshader/libEGL.so", | ||
"/opt/foo/swiftshader/libGLESv2.so", | ||
"/usr/share/applications/", | ||
"/usr/share/applications/Boo.desktop", | ||
"/usr/share/doc/", | ||
"/usr/share/icons/", | ||
"/usr/share/doc/testapp/", | ||
"/usr/share/doc/testapp/changelog.gz", | ||
"/usr/share/icons/hicolor/", | ||
"/usr/share/icons/hicolor/128x128/", | ||
"/usr/share/icons/hicolor/16x16/", | ||
"/usr/share/icons/hicolor/256x256/", | ||
"/usr/share/icons/hicolor/32x32/", | ||
"/usr/share/icons/hicolor/48x48/", | ||
"/usr/share/icons/hicolor/512x512/", | ||
"/usr/share/icons/hicolor/64x64/", | ||
"/usr/share/icons/hicolor/128x128/apps/", | ||
"/usr/share/icons/hicolor/128x128/apps/Boo.png", | ||
"/usr/share/icons/hicolor/16x16/apps/", | ||
"/usr/share/icons/hicolor/16x16/apps/Boo.png", | ||
"/usr/share/icons/hicolor/256x256/apps/", | ||
"/usr/share/icons/hicolor/256x256/apps/Boo.png", | ||
"/usr/share/icons/hicolor/32x32/apps/", | ||
"/usr/share/icons/hicolor/32x32/apps/Boo.png", | ||
"/usr/share/icons/hicolor/48x48/apps/", | ||
"/usr/share/icons/hicolor/48x48/apps/Boo.png", | ||
"/usr/share/icons/hicolor/512x512/apps/", | ||
"/usr/share/icons/hicolor/512x512/apps/Boo.png", | ||
"/usr/share/icons/hicolor/64x64/apps/", | ||
"/usr/share/icons/hicolor/64x64/apps/Boo.png", | ||
] | ||
`; | ||
|
||
exports[`top-level exec name 3`] = ` | ||
Object { | ||
"Architecture": "amd64", | ||
"Depends": "libgtk-3-0, libnotify4, libnss3, libxss1, libxtst6, xdg-utils, libatspi2.0-0, libuuid1, libsecret-1-0", | ||
"Homepage": "http://foo.example.com", | ||
"License": "MIT", | ||
"Maintainer": "Foo Bar <[email protected]>", | ||
"Package": "testapp", | ||
"Priority": "optional", | ||
"Recommends": "libappindicator3-1", | ||
"Section": "devel", | ||
"Vendor": "Foo Bar <[email protected]>", | ||
} | ||
`; | ||
|
||
exports[`top-level exec name 4`] = `"Test Application (test quite “ #378)"`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters