From 9c62260b702c7da24f217fcfb023acaab90843e0 Mon Sep 17 00:00:00 2001 From: Yury Rebrov Date: Thu, 29 Jan 2026 12:16:06 +0300 Subject: [PATCH] chore(updater): set signing public key --- desktop/src-tauri/tauri.conf.json | 49 +++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 desktop/src-tauri/tauri.conf.json diff --git a/desktop/src-tauri/tauri.conf.json b/desktop/src-tauri/tauri.conf.json new file mode 100644 index 0000000..f29553d --- /dev/null +++ b/desktop/src-tauri/tauri.conf.json @@ -0,0 +1,49 @@ +{ + "$schema": "https://schema.tauri.app/config/2", + "productName": "PAPA YU", + "version": "0.1.0", + "identifier": "com.papa-yu", + + "plugins": { + "updater": { + "endpoints": [ + "https://github.com/yrippert-maker/papayu/releases/latest/download/latest.json" + ], + "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEQwOUFBRjlEQzMwODc5QjQKUldTMGVRakRuYSthMEM1RVp2aHpYbTduNG5zcTR5N0tYOFdqQzI0VXB3QlhRT0F6OEFpOVE5djYK" + } + }, + + "build": { + "beforeDevCommand": "cd \"${PAPAYU_PROJECT_ROOT:-$HOME/PAPA-YU}/desktop/ui\" && npm run dev -- --port 5173", + "beforeBuildCommand": "cd \"${PAPAYU_PROJECT_ROOT:-$HOME/PAPA-YU}/desktop/ui\" && npm run build", + "devUrl": "http://localhost:5173", + "frontendDist": "../ui/dist" + }, + + "app": { + "windows": [ + { + "title": "PAPA YU", + "width": 800, + "height": 600, + "resizable": true, + "fullscreen": false + } + ], + "security": { + "csp": null + } + }, + + "bundle": { + "active": true, + "targets": "all", + "icon": [ + "icons/32x32.png", + "icons/128x128.png", + "icons/128x128@2x.png", + "icons/icon.icns", + "icons/icon.ico" + ] + } +}