tauri.beta.conf.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "$schema": "https://schema.tauri.app/config/2",
  3. "productName": "OpenCode Beta",
  4. "identifier": "ai.opencode.desktop.beta",
  5. "bundle": {
  6. "createUpdaterArtifacts": true,
  7. "icon": [
  8. "icons/beta/32x32.png",
  9. "icons/beta/128x128.png",
  10. "icons/beta/[email protected]",
  11. "icons/beta/icon.icns",
  12. "icons/beta/icon.ico"
  13. ],
  14. "windows": {
  15. "signCommand": {
  16. "cmd": "powershell",
  17. "args": ["-ExecutionPolicy", "Bypass", "-File", "../../../script/sign-windows.ps1", "%1"]
  18. },
  19. "nsis": {
  20. "installerIcon": "icons/beta/icon.ico"
  21. }
  22. },
  23. "linux": {
  24. "rpm": {
  25. "compression": {
  26. "type": "none"
  27. }
  28. }
  29. }
  30. },
  31. "plugins": {
  32. "updater": {
  33. "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEYwMDM5Nzg5OUMzOUExMDQKUldRRW9UbWNpWmNEOENYT01CV0lhOXR1UFhpaXJsK1Z3aU9lZnNtNzE0TDROWVMwVW9XQnFOelkK",
  34. "endpoints": ["https://github.com/anomalyco/opencode-beta/releases/latest/download/latest.json"]
  35. }
  36. }
  37. }