electron-builder.yml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. ---
  2. appId: org.tabby
  3. productName: Tabby
  4. compression: normal
  5. npmRebuild: false
  6. files:
  7. - '**/*'
  8. - dist
  9. - '!lib'
  10. - '!src'
  11. - '!**/node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme,node.lib}'
  12. - '!**/node_modules/*/{test,__tests__,tests,powered-test,example,examples,docs}'
  13. - '!**/node_modules/@angular/common/locales'
  14. - '!**/node_modules/@angular/compiler/src'
  15. - '!**/node_modules/node-gyp'
  16. - '!**/node_modules/**/*.d.ts'
  17. - '!**/node_modules/**/*.map'
  18. - '!**/node_modules/**/include/node'
  19. - '!**/node_modules/.bin'
  20. - '!**/node_modules/*/*/{esm5,fesm5,esm2015,fesm2015,_esm2015,_fesm2015}'
  21. - '!**/*.{woff,ttf,otf,eot}'
  22. - '!**/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}'
  23. - '!.editorconfig'
  24. - '!**/._*'
  25. - '!**/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,.gitignore,.gitattributes}'
  26. - '!**/{__pycache__,thumbs.db,.flowconfig,.idea,.vs,.nyc_output}'
  27. - '!**/{appveyor.yml,.travis.yml,circle.yml}'
  28. - '!**/{npm-debug.log,yarn.lock,.yarn-integrity,.yarn-metadata.json}'
  29. - '!**/deps/cpu_features/build'
  30. extraResources:
  31. - builtin-plugins
  32. - extras
  33. asarUnpack:
  34. - 'dist/*.map'
  35. win:
  36. icon: "./build/windows/icon.ico"
  37. artifactName: tabby-${version}-portable-${env.ARCH}.${ext}
  38. rfc3161TimeStampServer: http://timestamp.sectigo.com
  39. nsis:
  40. oneClick: false
  41. artifactName: tabby-${version}-setup-${env.ARCH}.${ext}
  42. installerIcon: "./build/windows/icon.ico"
  43. allowToChangeInstallationDirectory: true
  44. shortcutName: Tabby Terminal
  45. mac:
  46. category: public.app-category.utilities
  47. icon: "./build/mac/icon.icns"
  48. artifactName: tabby-${version}-macos-${env.ARCH}.${ext}
  49. hardenedRuntime: true
  50. entitlements: "./build/mac/entitlements.plist"
  51. entitlementsInherit: "./build/mac/entitlements.plist"
  52. extendInfo:
  53. ElectronTeamID: ${teamId}
  54. NSRequiresAquaSystemAppearance: false
  55. NSCameraUsageDescription: "A subprocess requests access to the device's camera."
  56. NSMicrophoneUsageDescription: "A subprocess requests access to the device's microphone."
  57. NSLocationUsageDescription: "A subprocess requests access to the user's location information."
  58. NSDesktopFolderUsageDescription: "A subprocess requests access to the user's Desktop folder."
  59. NSDocumentsFolderUsageDescription: "A subprocess requests access to the user's Documents folder."
  60. NSDownloadsFolderUsageDescription: "A subprocess requests access to the user's Downloads folder."
  61. NSNetworkVolumesUsageDescription: 'A subprocess requests access to files on a network volume.'
  62. NSRemovableVolumesUsageDescription: 'A subprocess requests access to files on a removable volume.'
  63. NSAppleEventsUsageDescription: 'A subprocess requests permission to send AppleScript events to another application.'
  64. linux:
  65. category: "Utility;TerminalEmulator;System"
  66. icon: "./build/icons"
  67. artifactName: tabby-${version}-linux-${env.ARCH}.${ext}
  68. executableArgs:
  69. - "--no-sandbox"
  70. desktop:
  71. StartupWMClass: tabby
  72. snap:
  73. plugs:
  74. - default
  75. - system-files
  76. - system-observe
  77. deb:
  78. depends:
  79. - gnome-keyring
  80. - libnotify4
  81. - libsecret-1-0
  82. - libxtst6
  83. - libnss3
  84. afterInstall: build/linux/after-install.tpl
  85. fpm:
  86. - '--replaces'
  87. - 'terminus-terminal'
  88. pacman:
  89. depends:
  90. - gnome-keyring
  91. - libsecret
  92. rpm:
  93. depends:
  94. - gnome-keyring
  95. fpm:
  96. - '--rpm-rpmbuild-define'
  97. - '_build_id_links none'
  98. - '--replaces'
  99. - 'terminus-terminal'