Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
flo committed May 7, 2018
1 parent 19cf572 commit 983e41c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion web/src/Data/Sync.elm
Original file line number Diff line number Diff line change
Expand Up @@ -1251,7 +1251,7 @@ encodeComplete s =
appVersion : String
appVersion =
-- TODO!: change if a new version is released
"0.2.0"
"0.2.1"


completeDecoder : Decoder SyncData
Expand Down
1 change: 1 addition & 0 deletions web_extension/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Debugging
* TODO!: Remove 'unsafe-eval' from manifest. It's only needed because of how webpack works in dev mode
* `yarn build`
* `web-ext build -s addon/`
* test in chrome

## Publish
### Firefox
Expand Down
2 changes: 1 addition & 1 deletion web_extension/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const sendMsgToAll = (msg, ports) => {
try {
ports[key].postMessage(msg);
} catch (err) {
console.log("couldn't post msg to", key, "err", err);
// console.log("couldn't post msg to", key, "err", err);
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions web_extension/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

"name": "NoKey",
"description": "A distributed password manager without a master passwords",
"version": "0.2.0",
"version": "0.2.1",
"author": "Florian Zinggeler",

"applications": {
Expand Down Expand Up @@ -53,7 +53,7 @@
}
],

"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
"content_security_policy": "script-src 'self'; object-src 'self';",
"content_security_policy_RELEASE": "script-src 'self'; object-src 'self';",
"content_security_policy_DEBUG": "script-src 'self' 'unsafe-eval'; object-src 'self';"
}

0 comments on commit 983e41c

Please sign in to comment.