Skip to content

Commit

Permalink
Prepare release 0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
phacks committed Nov 17, 2021
1 parent 2404294 commit a8a4999
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 36 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
68 changes: 34 additions & 34 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -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"
}
"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"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "orbit-browser-extension",
"version": "0.3.3",
"version": "0.3.4",
"description": "Orbit browser extension",
"main": "background.js",
"repository": "[email protected]:orbit-love/orbit-browser-extension.git",
Expand Down

0 comments on commit a8a4999

Please sign in to comment.