From 4bbf27602060e0ff7dbf01e4083d9bc687ef14bd Mon Sep 17 00:00:00 2001 From: Erhan Yakut Date: Sat, 2 Oct 2021 21:21:28 +0300 Subject: [PATCH] New version 1.0.3 (#51) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update version * Add auth expire check * Add linux build script and update installer scripts * auth and UI bug fix * update electron version for dynamically change top bar (#37) * Update: Electron version to 7.0.0 * Add: Operating system dark mode support * Update: Private notes size is enlarged * add menu item became singular * fix import function (#38) * Fix import bug after electron update to 7.0.0 * Fix openexternal link issue and add success callback to paddle upgrade * Refactor copy content functions * Add detail mixin and implement for all detail pages * Fix server detail page * update servers * Improve search function * pre-release * change company logo at detail and create * added Generate tooltip * Add custom title bar * Implement a global search on the title bar * added closeDevTools * Update login page style * fix height * Fix title-bar drag issue * added server field * Update login page * Fix quit issue * update version 1.0.2 * add nvm usage to README * Update electron and axios * updated electron version * fix top bar links * removed paddle script * add http cookie authentication * fix check update url * update version to 1.0.3 * Bump path-parse from 1.0.6 to 1.0.7 (#50) Bumps [path-parse](https://github.com/jbgutierrez/path-parse) from 1.0.6 to 1.0.7. - [Release notes](https://github.com/jbgutierrez/path-parse/releases) - [Commits](https://github.com/jbgutierrez/path-parse/commits/v1.0.7) --- updated-dependencies: - dependency-name: path-parse dependency-type: indirect ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump dns-packet from 1.3.1 to 1.3.4 (#49) Bumps [dns-packet](https://github.com/mafintosh/dns-packet) from 1.3.1 to 1.3.4. - [Release notes](https://github.com/mafintosh/dns-packet/releases) - [Changelog](https://github.com/mafintosh/dns-packet/blob/master/CHANGELOG.md) - [Commits](https://github.com/mafintosh/dns-packet/compare/v1.3.1...v1.3.4) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump hosted-git-info from 2.8.8 to 2.8.9 (#48) Bumps [hosted-git-info](https://github.com/npm/hosted-git-info) from 2.8.8 to 2.8.9. - [Release notes](https://github.com/npm/hosted-git-info/releases) - [Changelog](https://github.com/npm/hosted-git-info/blob/v2.8.9/CHANGELOG.md) - [Commits](https://github.com/npm/hosted-git-info/compare/v2.8.8...v2.8.9) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * upgrade electron builder version for mac arm * update readme for build Co-authored-by: Oguzhan INAN Co-authored-by: Faruk Oruç Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- README.md | 20 + package.json | 4 +- src/renderer/App.vue | 6 +- src/renderer/api/HTTPClient.js | 3 +- src/renderer/api/services/Auth.js | 4 + src/renderer/router/auth-check.js | 23 +- src/renderer/store/index.js | 27 +- src/renderer/views/Home/Sidebar/index.vue | 13 +- yarn.lock | 1996 +++++++++++++-------- 9 files changed, 1306 insertions(+), 790 deletions(-) diff --git a/README.md b/README.md index c2ed3b0..9ae3a67 100644 --- a/README.md +++ b/README.md @@ -42,4 +42,24 @@ yarn run dev # build electron application for production yarn run build +``` + +### Build From Source Code +After installing yarn, you can download dependencies and run the app with the commands below. + +``` bash +# auto choose platform and architecture +yarn build + +# MacOS x64 (intel) +yarn build --mac --x64 + +# MacOS arm64 (M1) +yarn build --mac --arm64 + +# Linux Debian Package +yarn build --linux deb + +# Windows x64 +yarn build --win --x64 ``` \ No newline at end of file diff --git a/package.json b/package.json index 441c872..ccaa46b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "passwall", - "version": "1.0.2", + "version": "1.0.3", "author": "PassWall ", "description": "PassWall Desktop", "license": "MIT", @@ -99,7 +99,7 @@ "del": "^3.0.0", "devtron": "^1.4.0", "electron": "^11.4.1", - "electron-builder": "21.2.0", + "electron-builder": "22.10", "electron-debug": "^1.5.0", "electron-devtools-installer": "^2.2.4", "electron-packager": "^15.0.0", diff --git a/src/renderer/App.vue b/src/renderer/App.vue index 3956212..e6e5e59 100644 --- a/src/renderer/App.vue +++ b/src/renderer/App.vue @@ -8,7 +8,7 @@