Skip to content
Merged

1.1 #61

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 1.1.0
- Updated extension to pull colours from https://github.com/ozh/github-colors
- colours are loaded every week, which roughly coincides with how often the above repo is updated
- Updated to manifest v3 to bring back the chrome version
- also removed the background script from the distributed version since it was only for 0.1.9 integrity issues
- Setting up project to be also used within my personal website

# 1.0.13
- Pulling in dependabot pull requests
- Fixing organisation page displays
Expand Down
1 change: 0 additions & 1 deletion dist/colors.json

This file was deleted.

24 changes: 9 additions & 15 deletions dist/manifest.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,9 @@
{
"author": "freyamade",
"background": {
"persistent": false,
"scripts": [
"js/background.js"
]
},
"browser_action": {
"action": {
"default_icon": "images/github-user-languages.128.png",
"default_popup": "popup.html"
},
"author": "freyamade",
"browser_specific_settings": {
"gecko": {
"id": "extension@github-user-languages.github.com"
Expand All @@ -27,18 +21,18 @@
}
],
"description": "See the language usage breakdown of a User or Org right on their GitHub profile page.",
"host_permissions": [
"https://api.github.com/",
"https://raw.githubusercontent.com/ozh/github-colors/master/colors.json"
],
"icons": {
"128": "images/github-user-languages.128.png"
},
"manifest_version": 2,
"manifest_version": 3,
"name": "GitHub User Languages",
"permissions": [
"https://api.github.com/",
"storage"
],
"short_name": "github-user-languages",
"version": "1.0.13",
"web_accessible_resources": [
"colors.json"
]
}
"version": "1.1.0"
}
2 changes: 1 addition & 1 deletion dist/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ <h4>API Token <small>Click out of input to save</small></h4>
<p>If you wish to be able to see your own private repos in the chart, be sure to select the <b>repo</b> scope for the token also.</p>
</main>
<footer>
<small>GitHub User Languages v1.0.13</small>
<small>GitHub User Languages v1.1.0</small>
</footer>
<script src="js/popup.js"></script>
</body>
Expand Down
15 changes: 0 additions & 15 deletions get-colors.py

This file was deleted.

Loading