Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
zigazajc007 committed Apr 2, 2024
1 parent 6095aca commit 5a34790
Show file tree
Hide file tree
Showing 5 changed files with 573 additions and 446 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:

steps:
- name: Check out Git repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16
node-version: 20

- name: Build/release Electron app
uses: samuelmeuli/action-electron-builder@v1
Expand All @@ -30,7 +30,7 @@ jobs:
release: ${{ startsWith(github.ref, 'refs/tags/v') }}

- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: passky-desktop-${{ matrix.os }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion js/login.js
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ function forget_username(){
}

function getDebugInfo(){
let info = "Client Version: 8.1.1";
let info = "Client Version: 8.1.1.5";
if(readData('url') != null) info += "\nServer: " + readData('url');
if(readData('username') != null) info += "\nUsername: " + readData('username');
info += "\nTheme: " + readData('theme');
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "passky",
"version": "8.1.1",
"version": "8.1.1.5",
"license": "GPL-3.0",
"author": "Rabbit Company LLC <[email protected]>",
"homepage": "https://passky.org",
Expand Down Expand Up @@ -57,7 +57,7 @@
}
},
"devDependencies": {
"electron": "^22.1.0",
"electron-builder": "^23.3.3"
"electron": "^29.1.6",
"electron-builder": "^24.13.3"
}
}
2 changes: 1 addition & 1 deletion passwords.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
</div>
<div class="px-4 py-5 secondaryBackgroundColor shadow overflow-hidden sm:p-6">
<dt id="client-version" class="text-sm font-medium secondaryColor truncate">Client Version</dt>
<dd class="mt-1 text-3xl font-semibold tertiaryColor">8.1.1</dd>
<dd class="mt-1 text-3xl font-semibold tertiaryColor">8.1.1.5</dd>
</div>
</dl>
</div>
Expand Down
Loading

0 comments on commit 5a34790

Please sign in to comment.