Skip to content

Commit

Permalink
Update version and minimum firefox version
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-bixby committed May 13, 2022
1 parent 2374389 commit eb4fc92
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Expand Up @@ -3,7 +3,7 @@ FROM ubuntu:18.04
# Replace shell with bash so we can source files
RUN rm /bin/sh && ln -s /bin/bash /bin/sh

ENV ASB_VER 3.4.4
ENV ASB_VER 3.4.5
ENV HOME /root
WORKDIR $HOME

Expand Down
20 changes: 20 additions & 0 deletions docker-build.sh
@@ -1,4 +1,24 @@
#!/bin/sh

ASB_VER=3.4.5
SRC_DIR=/root/auto-sort-bookmarks-webext-${ASB_VER}
BLD_DIR=${SRC_DIR}/build
XPI_FILE=${SRC_DIR}/auto-sort_bookmarks-${ASB_VER}.xpi

echo Cleaning...
./clean.sh

echo
echo Building...
docker build -t asb .

echo
echo Copying...
id=$(docker create asb)
docker cp $id:${BLD_DIR} .
docker cp $id:${XPI_FILE} .
docker rm -v $id

echo
echo Done.

14 changes: 7 additions & 7 deletions src/manifest.json
@@ -1,10 +1,4 @@
{
"applications": {
"gecko": {
"id": "sortbookmarks@bouanto",
"strict_min_version": "52.0"
}
},
"author": "Eric Bixby",
"background": {
"scripts": ["background/auto-sort-bookmarks.js"]
Expand All @@ -17,6 +11,12 @@
"default_title": "Auto-Sort Bookmarks",
"browser_style": true
},
"browser_specific_settings": {
"gecko": {
"id": "sortbookmarks@bouanto",
"strict_min_version": "63.0"
}
},
"default_locale": "en",
"description": "Sort bookmarks by multiple criteria.",
"icons": {
Expand All @@ -34,5 +34,5 @@
"browser_style": true
},
"permissions": ["bookmarks", "downloads", "history", "storage", "tabs"],
"version": "3.4.4"
"version": "3.4.5"
}

0 comments on commit eb4fc92

Please sign in to comment.