Skip to content

Commit

Permalink
build: bump version to 1.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
giacomoferretti committed Dec 22, 2022
1 parent 4d36e6f commit 1bb6085
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "__MSG_appName__",
"version": "1.2.2",
"version": "1.2.3",

"description": "__MSG_appDescription__",
"default_locale": "en",
Expand Down
8 changes: 4 additions & 4 deletions pack.sh
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
#!/usr/bin/env bash

VERSION="1.2.1-chrome"
VERSION="1.2.3-chrome"
ICONS_SIZES="16 32 48 64 128"
OUTPUT_FOLDER=".build"

# Prepare icons
for size in ${ICONS_SIZES}; do
(
cd icons || exit 1
inkscape -w "${size}" -h "${size}" source.svg --export-filename "icon.${size}.png"
cd icons || exit 1
inkscape -w "${size}" -h "${size}" source.svg --export-filename "icon.${size}.png"
)
done

# Pack to zip
mkdir "${OUTPUT_FOLDER}"
7z a "${OUTPUT_FOLDER}/${VERSION}.zip" -x!pack.sh -x!icons/source.svg -x!.git -x!.gitignore -x!.ignoreme -x!"${OUTPUT_FOLDER}"
7z a "${OUTPUT_FOLDER}/${VERSION}.zip" -x!pack.sh -x!icons/source.svg -x!.git -x!.gitignore -x!.ignoreme -x!.github -x!"${OUTPUT_FOLDER}"

0 comments on commit 1bb6085

Please sign in to comment.