Skip to content

Commit

Permalink
Merge pull request #29 from passwall/main
Browse files Browse the repository at this point in the history
1.0.11
  • Loading branch information
yakuter authored Oct 1, 2021
2 parents 5a057fa + 8e4a14c commit 23a180f
Show file tree
Hide file tree
Showing 22 changed files with 2,539 additions and 1,248 deletions.
55 changes: 28 additions & 27 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "passwall-extension",
"version": "1.0.10",
"version": "1.0.11",
"private": true,
"scripts": {
"serve": "vue-cli-service build --mode development --watch",
Expand Down Expand Up @@ -30,48 +30,49 @@
]
},
"dependencies": {
"axios": "^0.21.1",
"core-js": "^3.6.5",
"crypto-js": "^4.0.0",
"localforage": "^1.9.0",
"axios": "^0.22.0",
"core-js": "^3.18.1",
"crypto-js": "^4.1.1",
"localforage": "^1.10.0",
"puppeteer-core": "https://github.com/seanaye/puppeteer/releases/download/v5.5.0-apple-silicon/puppeteer-core-5.5.0-post.tgz",
"skeleton-loader-vue": "^1.0.6",
"v-tooltip": "^2.1.1",
"vee-validate": "2.2.15",
"vue": "^2.6.11",
"vue-clipboard2": "^0.3.1",
"vue-i18n": "^8.22.2",
"vue": "^2.6.14",
"vue-clipboard2": "^0.3.3",
"vue-i18n": "^8.26.5",
"vue-notification": "^1.3.20",
"vue-outside-events": "^1.1.3",
"vue-router": "^3.4.9",
"vue-wait": "^1.4.8",
"vue-router": "^3.5.2",
"vue-wait": "^1.5.3",
"vuex": "^3.4.0",
"webextension-polyfill": "^0.7.0"
"webextension-polyfill": "^0.8.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-vuex": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/test-utils": "^1.1.3",
"@vue/cli-plugin-babel": "~4.5.13",
"@vue/cli-plugin-eslint": "~4.5.13",
"@vue/cli-plugin-router": "~4.5.13",
"@vue/cli-plugin-vuex": "~4.5.13",
"@vue/cli-service": "~4.5.13",
"@vue/test-utils": "^1.2.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"jest": "^26.6.3",
"jest-puppeteer": "^4.4.0",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^7.18.0",
"jest": "^27.2.4",
"jest-puppeteer": "^6.0.0",
"jest-transform-stub": "^2.0.0",
"jest-webextension-mock": "^3.7.8",
"puppeteer": "^8.0.0",
"sass": "^1.30.0",
"sass-loader": "^10.1.0",
"jest-webextension-mock": "^3.7.19",
"puppeteer": "^10.4.0",
"sass": "^1.42.1",
"sass-loader": "^10",
"vue-cli-plugin-browser-extension": "^0.25.2",
"vue-jest": "^3.0.7",
"vue-template-compiler": "^2.6.11"
"vue-template-compiler": "^2.6.14"
},
"resolutions": {
"cacache":"^15.0.6",
"cacache": "^15.0.6",
"ssri": "^8.0.1"
}
}
20 changes: 20 additions & 0 deletions public/css/content-script.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/*//////////////////////////////////////////////////////////////////////////////////////////////*/
/* Passwall ////////////////////////////////////////////////////////////////////////////////////*/
/*//////////////////////////////////////////////////////////////////////////////////////////////*/

#passwall-dialog{
border:10px solig blue;
position:fixed;
z-index:999999;
top:20px;
right:20px;
}

#passwall-dialog iframe{
display:block;
width:350px;
height: 360px;
background: #0A0F17;
border-style:none;
border-radius: 16px;
}
6 changes: 6 additions & 0 deletions public/js/jquery.js

Large diffs are not rendered by default.

4 changes: 0 additions & 4 deletions src/api/services/System.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
import HTTPClient from '@/api/HTTPClient'

export default class SystemService {
static async GeneratePassword() {
return HTTPClient.post(`/api/system/generate-password`)
}

static async Import(data) {
return HTTPClient.post(`/api/system/import`, data)
}
Expand Down
Loading

0 comments on commit 23a180f

Please sign in to comment.