tabby/electron-builder.yml

102 lines
3.3 KiB
YAML
Raw Normal View History

2020-02-05 09:57:24 +00:00
---
2021-06-29 21:57:04 +00:00
appId: org.tabby
productName: Tabby
2020-02-05 09:57:24 +00:00
compression: normal
npmRebuild: false
2020-02-05 09:57:24 +00:00
files:
2021-01-02 09:41:04 +00:00
- '**/*'
2020-02-05 09:57:24 +00:00
- dist
2021-01-28 17:20:45 +00:00
- '!lib'
2021-01-02 09:41:04 +00:00
- '!src'
2021-01-28 17:20:45 +00:00
- '!**/node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme,node.lib}'
2021-01-02 09:41:04 +00:00
- '!**/node_modules/*/{test,__tests__,tests,powered-test,example,examples,docs}'
2021-01-02 10:49:56 +00:00
- '!**/node_modules/@angular/common/locales'
- '!**/node_modules/@angular/compiler/src'
2021-01-02 09:41:04 +00:00
- '!**/node_modules/node-gyp'
- '!**/node_modules/**/*.d.ts'
- '!**/node_modules/**/*.map'
- '!**/node_modules/**/include/node'
- '!**/node_modules/.bin'
- '!**/node_modules/*/*/{esm5,fesm5,esm2015,fesm2015,_esm2015,_fesm2015}'
2021-01-02 10:49:56 +00:00
- '!**/*.{woff,ttf,otf,eot}'
2021-01-02 09:41:04 +00:00
- '!**/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}'
- '!.editorconfig'
- '!**/._*'
- '!**/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,.gitignore,.gitattributes}'
- '!**/{__pycache__,thumbs.db,.flowconfig,.idea,.vs,.nyc_output}'
- '!**/{appveyor.yml,.travis.yml,circle.yml}'
2021-06-20 17:08:56 +00:00
- '!**/{npm-debug.log,yarn.lock,.yarn-integrity,.yarn-metadata.json}'
- '!**/deps/cpu_features/build'
2020-02-05 09:57:24 +00:00
extraResources:
- builtin-plugins
- extras
asarUnpack:
2021-06-25 15:27:17 +00:00
- 'dist/*.map'
2020-02-05 09:57:24 +00:00
win:
icon: "./build/windows/icon.ico"
2022-03-08 17:01:13 +00:00
artifactName: tabby-${version}-portable-${env.ARCH}.${ext}
2022-01-30 19:54:18 +00:00
rfc3161TimeStampServer: http://timestamp.sectigo.com
2020-02-05 09:57:24 +00:00
nsis:
oneClick: false
2022-03-08 17:01:13 +00:00
artifactName: tabby-${version}-setup-${env.ARCH}.${ext}
2020-02-05 09:57:24 +00:00
installerIcon: "./build/windows/icon.ico"
allowToChangeInstallationDirectory: true
2021-09-13 07:53:53 +00:00
shortcutName: Tabby Terminal
2020-02-05 09:57:24 +00:00
mac:
category: public.app-category.utilities
2020-02-05 09:57:24 +00:00
icon: "./build/mac/icon.icns"
2021-06-29 21:57:04 +00:00
artifactName: tabby-${version}-macos-${env.ARCH}.${ext}
2020-02-05 09:57:24 +00:00
hardenedRuntime: true
entitlements: "./build/mac/entitlements.plist"
entitlementsInherit: "./build/mac/entitlements.plist"
extendInfo:
2024-09-17 18:02:29 +00:00
ElectronTeamID: ${teamId}
2020-02-05 09:57:24 +00:00
NSRequiresAquaSystemAppearance: false
NSCameraUsageDescription: "A subprocess requests access to the device's camera."
NSMicrophoneUsageDescription: "A subprocess requests access to the device's microphone."
NSLocationUsageDescription: "A subprocess requests access to the user's location information."
NSDesktopFolderUsageDescription: "A subprocess requests access to the user's Desktop folder."
NSDocumentsFolderUsageDescription: "A subprocess requests access to the user's Documents folder."
NSDownloadsFolderUsageDescription: "A subprocess requests access to the user's Downloads folder."
NSNetworkVolumesUsageDescription: 'A subprocess requests access to files on a network volume.'
NSRemovableVolumesUsageDescription: 'A subprocess requests access to files on a removable volume.'
NSAppleEventsUsageDescription: 'A subprocess requests permission to send AppleScript events to another application.'
2020-02-05 09:57:24 +00:00
linux:
2022-01-20 08:13:05 +00:00
category: "Utility;TerminalEmulator;System"
2020-02-05 09:57:24 +00:00
icon: "./build/icons"
2022-03-08 17:01:13 +00:00
artifactName: tabby-${version}-linux-${env.ARCH}.${ext}
2020-02-05 09:57:24 +00:00
executableArgs:
- "--no-sandbox"
desktop:
2021-06-29 21:57:04 +00:00
StartupWMClass: tabby
2020-02-05 09:57:24 +00:00
snap:
plugs:
- default
- system-files
- system-observe
deb:
depends:
- gnome-keyring
2020-02-05 09:57:24 +00:00
- libnotify4
- libsecret-1-0
- libxtst6
- libnss3
afterInstall: build/linux/after-install.tpl
2021-05-28 18:29:07 +00:00
fpm:
- '--replaces'
2021-06-29 21:57:04 +00:00
- 'terminus-terminal'
2021-05-02 18:02:46 +00:00
pacman:
depends:
- gnome-keyring
- libsecret
2020-02-05 09:57:24 +00:00
rpm:
depends:
- gnome-keyring
fpm:
2021-02-28 11:34:49 +00:00
- '--rpm-rpmbuild-define'
- '_build_id_links none'
- '--replaces'
2021-06-29 21:57:04 +00:00
- 'terminus-terminal'