From a8a4999f2c675154756b806e9b3101a8d54d4fdf Mon Sep 17 00:00:00 2001 From: Nicolas Goutay Date: Wed, 17 Nov 2021 11:19:41 +0100 Subject: [PATCH] Prepare release 0.3.4 --- CHANGELOG.md | 9 ++++++- manifest.json | 68 +++++++++++++++++++++++++-------------------------- package.json | 2 +- 3 files changed, 43 insertions(+), 36 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a5ce7f6..6012dab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,13 +4,20 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), -## [0.3.3] - 2020-06-09 +## [0.3.4] - 2021-11-17 + +### Fixed + +- Fixed an issue with the widget not displaying (ea78b8) + +## [0.3.3] - 2021-06-09 ### Fixed - Fixed an issue where a merged Orbit user would have a different URL slug to their GitHub username - Fixed API requests for adding content to a member profile - Changed the format of requests to update some endpoints + ## [0.3.2] - 2020-02-17 ### Fixed diff --git a/manifest.json b/manifest.json index 6cf6347..3bf73da 100644 --- a/manifest.json +++ b/manifest.json @@ -1,36 +1,36 @@ { - "manifest_version": 2, - "name": "Orbit", - "version": "0.3.3", - "description": "Get Orbit insights on your community members, directly on GitHub issues and Pull Requests.", - "short_name": "Orbit", - "homepage_url": "https://orbit.love", - "minimum_chrome_version": "42", - "permissions": ["storage"], - "content_scripts": [ - { - "run_at": "document_start", - "matches": [ - "https://github.com/*/*/pull/*", - "https://github.com/*/*/issues/*" - ], - "css": ["src/github/orbit-action.css"], - "js": ["src/github/background.js"] - } - ], - "browser_action": { - "default_icon": { - "16": "icons/icon16.png", - "32": "icons/icon32.png" - } - }, - "icons": { + "manifest_version": 2, + "name": "Orbit", + "version": "0.3.4", + "description": "Get Orbit insights on your community members, directly on GitHub issues and Pull Requests.", + "short_name": "Orbit", + "homepage_url": "https://orbit.love", + "minimum_chrome_version": "42", + "permissions": ["storage"], + "content_scripts": [ + { + "run_at": "document_start", + "matches": [ + "https://github.com/*/*/pull/*", + "https://github.com/*/*/issues/*" + ], + "css": ["src/github/orbit-action.css"], + "js": ["src/github/background.js"] + } + ], + "browser_action": { + "default_icon": { "16": "icons/icon16.png", - "48": "icons/icon48.png", - "128": "icons/icon128.png" - }, - "web_accessible_resources": ["icons/*.png"], - "options_page": "src/options/options.html", - "content_security_policy": "script-src 'self' https://cdn.jsdelivr.net 'unsafe-eval'; object-src 'self'", - "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAjhINKsJLOLT7AkGSNZrD/3TG96SLKOFgik5v7k/Mu4Erkmvead50nzdQkUZaJYx1EUVzlKFebFkCqvFw6RfrPkzUmiaOJVBQOo2BIvlrIIHpXsUctRp7nfeOrhO3OKCQugUrHivBYWcgqabJCXJjvhAKY9LKBjyZMyzoaipNoNGk15O2NGRAm2uDQntnJupf4m7lH1ot2NHtb/4rU02FRVWpb8AxC6FFSJ7JzDob6Y8CmmD9oIFt2DrN2i4b0v5KH0XbveKLiNICQs1KNZYYsn2kckwjV2HOP9x0tRrQK6RIwRGOWTYi6jgPv0S3pQkqTa6Vd0OWWvRozlDdZhU2WwIDAQAB" - } \ No newline at end of file + "32": "icons/icon32.png" + } + }, + "icons": { + "16": "icons/icon16.png", + "48": "icons/icon48.png", + "128": "icons/icon128.png" + }, + "web_accessible_resources": ["icons/*.png"], + "options_page": "src/options/options.html", + "content_security_policy": "script-src 'self' https://cdn.jsdelivr.net 'unsafe-eval'; object-src 'self'", + "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAjhINKsJLOLT7AkGSNZrD/3TG96SLKOFgik5v7k/Mu4Erkmvead50nzdQkUZaJYx1EUVzlKFebFkCqvFw6RfrPkzUmiaOJVBQOo2BIvlrIIHpXsUctRp7nfeOrhO3OKCQugUrHivBYWcgqabJCXJjvhAKY9LKBjyZMyzoaipNoNGk15O2NGRAm2uDQntnJupf4m7lH1ot2NHtb/4rU02FRVWpb8AxC6FFSJ7JzDob6Y8CmmD9oIFt2DrN2i4b0v5KH0XbveKLiNICQs1KNZYYsn2kckwjV2HOP9x0tRrQK6RIwRGOWTYi6jgPv0S3pQkqTa6Vd0OWWvRozlDdZhU2WwIDAQAB" +} diff --git a/package.json b/package.json index 7380c69..32b23d9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "orbit-browser-extension", - "version": "0.3.3", + "version": "0.3.4", "description": "Orbit browser extension", "main": "background.js", "repository": "git@github.com:orbit-love/orbit-browser-extension.git",