diff --git a/CHANGELOG.md b/CHANGELOG.md index 65d3346..94b328a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,20 @@ +## 0.5.0 / 2018-12-31 + +* Support filling in basic auth credentials (can be turned off in settings) (#99) +* Add button to open URL of entry in new tab (shortcut Ctrl+Click) (#71) +* Add feedback when saving a new secret (#84) +* Add saving indicator to settings (#61) +* Support frames similar to iframes (#77) +* Fix missing values after input events (#92) +* Document keyboard shortcut in "Usage Hints" (#80) + ## 0.4.0 / 2018-06-16 * Detail view and buttons for copy * Credentials are now inserted via background script to prevent closing via pinentry * Tests added for most parts of the code -## 0.3.0 / 2018-05-3 +## 0.3.0 / 2018-05-03 * Fix focused case for iframes * Fix focus of search field on firefox on open diff --git a/manifests/chrome-manifest-dev.json b/manifests/chrome-manifest-dev.json index b4f6cb0..a9a1577 100644 --- a/manifests/chrome-manifest-dev.json +++ b/manifests/chrome-manifest-dev.json @@ -2,10 +2,10 @@ "manifest_version": 2, "short_name": "gopassbridge", "name": "Gopass Bridge", - "version": "0.4.0", + "version": "0.5.0", "description": "__MSG_extensionDescription__", "author": "Martin Hoefling", - "homepage_url": "https://github.com/martinhoefling/gopassbridge", + "homepage_url": "https://github.com/gopasspw/gopassbridge", "incognito": "split", "icons": { diff --git a/manifests/chrome-manifest.json b/manifests/chrome-manifest.json index 40ac5ac..8073320 100644 --- a/manifests/chrome-manifest.json +++ b/manifests/chrome-manifest.json @@ -2,10 +2,10 @@ "manifest_version": 2, "short_name": "gopassbridge", "name": "Gopass Bridge", - "version": "0.4.0", + "version": "0.5.0", "description": "__MSG_extensionDescription__", "author": "Martin Hoefling", - "homepage_url": "https://github.com/martinhoefling/gopassbridge", + "homepage_url": "https://github.com/gopasspw/gopassbridge", "incognito": "split", "icons": { diff --git a/manifests/firefox-manifest.json b/manifests/firefox-manifest.json index 9c9449f..a5a56e4 100644 --- a/manifests/firefox-manifest.json +++ b/manifests/firefox-manifest.json @@ -3,10 +3,10 @@ "manifest_version": 2, "short_name": "gopassbridge", "name": "Gopass Bridge", - "version": "0.4.0", + "version": "0.5.0", "description": "__MSG_extensionDescription__", "author": "Martin Hoefling", - "homepage_url": "https://github.com/martinhoefling/gopassbridge", + "homepage_url": "https://github.com/gopasspw/gopassbridge", "incognito": "spanning", "icons": { diff --git a/package.json b/package.json index a8acf9d..7c479e3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gopassbridge", - "version": "0.3.0", + "version": "0.5.0", "description": "Gopass Bridge allows searching and inserting login credentials from the gopass password manager", "main": "web-extension/gopassbridge.js", "scripts": { @@ -14,7 +14,7 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/martinhoefling/gopassbridge.git" + "url": "git+https://github.com/gopasspw/gopassbridge.git" }, "keywords": [ "gopass", @@ -24,9 +24,9 @@ "author": "Martin Hoefling", "license": "MIT", "bugs": { - "url": "https://github.com/martinhoefling/gopassbridge/issues" + "url": "https://github.com/gopasspw/gopassbridge/issues" }, - "homepage": "https://github.com/martinhoefling/gopassbridge#readme", + "homepage": "https://github.com/gopasspw/gopassbridge#readme", "dependencies": {}, "devDependencies": { "codecov": "^3.0.0", diff --git a/web-extension/_locales/de/messages.json b/web-extension/_locales/de/messages.json index 9c5624e..48ec6ab 100644 --- a/web-extension/_locales/de/messages.json +++ b/web-extension/_locales/de/messages.json @@ -84,7 +84,7 @@ "description": "Text of changelog", "placeholders": { "url": { - "content": "https://github.com/martinhoefling/gopassbridge/blob/master/CHANGELOG.md" + "content": "https://github.com/gopasspw/gopassbridge/blob/master/CHANGELOG.md" } } }, diff --git a/web-extension/_locales/en/messages.json b/web-extension/_locales/en/messages.json index a98470b..1a7c2fd 100644 --- a/web-extension/_locales/en/messages.json +++ b/web-extension/_locales/en/messages.json @@ -84,7 +84,7 @@ "description": "Text of changelog", "placeholders": { "url": { - "content": "https://github.com/martinhoefling/gopassbridge/blob/master/CHANGELOG.md" + "content": "https://github.com/gopasspw/gopassbridge/blob/master/CHANGELOG.md" } } },