Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
keombre committed Oct 10, 2020
1 parent 70b9dde commit cd0d5f7
Show file tree
Hide file tree
Showing 7 changed files with 1,294 additions and 1,804 deletions.
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,14 @@ chrome: source
find ./progtest-themes/ -type f | xargs zip ${out_dir}/chrome/progtest_themes.zip
rm progtest-themes

firefox-zip: source
cp ${manifest_dir}/firefox.json ${build_dir}/manifest.json
mkdir -p ${out_dir}/firefox || exit 0
ln -s ${build_dir} progtest-themes
rm ${out_dir}/firefox/* || exit 0
find ./progtest-themes/ -type f | xargs zip ${out_dir}/firefox/progtest_themes.zip
rm progtest-themes

dev: source
cp ${manifest_dir}/debug.json ${build_dir}/manifest.json
cp ${utils_dir}/reloader.js ${build_dir}/reloader.js
Expand Down
2 changes: 1 addition & 1 deletion manifests/chrome.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ProgTest Themes",
"version": "1.1.0",
"version": "1.1.1",
"description": "Theme manager for ProgTest",
"manifest_version": 2,
"content_scripts": [
Expand Down
2 changes: 1 addition & 1 deletion manifests/firefox.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ProgTest Themes",
"version": "1.1.0",
"version": "1.1.1",
"description": "Theme manager for ProgTest",
"manifest_version": 2,
"content_scripts": [
Expand Down
3,069 changes: 1,273 additions & 1,796 deletions package-lock.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "progtest-theme",
"version": "1.1.0",
"version": "1.1.1",
"description": "Theme manager for ProgTest",
"main": "background.js",
"scripts": {
Expand All @@ -17,15 +17,15 @@
},
"homepage": "https://github.com/keombre/progtest-theme",
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"babel-eslint": "^10.1.0",
"csslint": "^1.0.5",
"eslint": "^6.8.0",
"eslint-config-pedant": "^1.0.1",
"github-api": "^3.3.0",
"web-ext": "^4.1.0",
"minimist": ">=1.2.3"
"minimist": ">=1.2.3",
"web-ext": "^4.3.0"
}
}
1 change: 1 addition & 0 deletions src/themes/common.css
Original file line number Diff line number Diff line change
Expand Up @@ -766,6 +766,7 @@ span.course_link_score_sum {

span.course_link_name {
display: block;
max-width: calc(100% - 80px);
}

span.course_link_score {
Expand Down
4 changes: 4 additions & 0 deletions update.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@
{
"version": "1.1.0",
"update_link": "https://github.com/keombre/progtest-theme/releases/download/1.1.0/progtest_themes-1.1.0-an+fx.xpi"
},
{
"version": "1.1.1",
"update_link": "https://github.com/keombre/progtest-theme/releases/download/1.1.1/progtest_themes-1.1.1-an+fx.xpi"
}
]
}
Expand Down

0 comments on commit cd0d5f7

Please sign in to comment.