diff --git a/.env.example b/.env.example deleted file mode 100644 index c7e34ad..0000000 --- a/.env.example +++ /dev/null @@ -1,2 +0,0 @@ -ZOTERO_CONSUMER_KEY="" -ZOTERO_CONSUMER_SECRET="" \ No newline at end of file diff --git a/.github/workflows/build-desktop.yml b/.github/workflows/build-desktop.yml index e44e9e7..5890aec 100644 --- a/.github/workflows/build-desktop.yml +++ b/.github/workflows/build-desktop.yml @@ -162,6 +162,8 @@ jobs: APPLE_ID: ${{ steps.signing.outputs.available == 'true' && secrets.APPLE_ID || '' }} APPLE_PASSWORD: ${{ steps.signing.outputs.available == 'true' && secrets.APPLE_PASSWORD || '' }} APPLE_TEAM_ID: ${{ steps.signing.outputs.available == 'true' && secrets.APPLE_TEAM_ID || '' }} + ZOTERO_CONSUMER_KEY: ${{ secrets.ZOTERO_CONSUMER_KEY }} + ZOTERO_CONSUMER_SECRET: ${{ secrets.ZOTERO_CONSUMER_SECRET }} with: projectPath: apps/desktop tauriScript: pnpm tauri @@ -183,6 +185,8 @@ jobs: APPLE_ID: ${{ steps.signing.outputs.available == 'true' && secrets.APPLE_ID || '' }} APPLE_PASSWORD: ${{ steps.signing.outputs.available == 'true' && secrets.APPLE_PASSWORD || '' }} APPLE_TEAM_ID: ${{ steps.signing.outputs.available == 'true' && secrets.APPLE_TEAM_ID || '' }} + ZOTERO_CONSUMER_KEY: ${{ secrets.ZOTERO_CONSUMER_KEY }} + ZOTERO_CONSUMER_SECRET: ${{ secrets.ZOTERO_CONSUMER_SECRET }} with: projectPath: apps/desktop tauriScript: pnpm tauri diff --git a/apps/desktop/src-tauri/.env.example b/apps/desktop/src-tauri/.env.example new file mode 100644 index 0000000..a0ecc2d --- /dev/null +++ b/apps/desktop/src-tauri/.env.example @@ -0,0 +1,11 @@ +# Apple Code Signing (macOS) +APPLE_SIGNING_IDENTITY= +APPLE_TEAM_ID= +APPLE_ID= +APPLE_PASSWORD= +APPLE_CERTIFICATE_PASSWORD= +APPLE_CERTIFICATE= + +# Zotero OAuth (https://www.zotero.org/oauth/apps) +ZOTERO_CONSUMER_KEY= +ZOTERO_CONSUMER_SECRET= diff --git a/apps/desktop/src-tauri/tauri.conf.json b/apps/desktop/src-tauri/tauri.conf.json index c16a3d5..f6e4386 100644 --- a/apps/desktop/src-tauri/tauri.conf.json +++ b/apps/desktop/src-tauri/tauri.conf.json @@ -14,6 +14,8 @@ "windows": [ { "title": "ClaudePrism", + "fullscreen": false, + "maximized": true, "width": 1400, "height": 900, "minWidth": 800, diff --git a/assets/OpenPrism.png b/assets/OpenPrism.png deleted file mode 100644 index 889a88a..0000000 Binary files a/assets/OpenPrism.png and /dev/null differ