From 1bb60852cfbe2abea6915c9dbe97b49ce8cf85a9 Mon Sep 17 00:00:00 2001 From: Giacomo Ferretti Date: Thu, 22 Dec 2022 12:22:50 +0100 Subject: [PATCH] build: bump version to 1.2.3 --- manifest.json | 2 +- pack.sh | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/manifest.json b/manifest.json index e7d25a8..8e145b5 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 3, "name": "__MSG_appName__", - "version": "1.2.2", + "version": "1.2.3", "description": "__MSG_appDescription__", "default_locale": "en", diff --git a/pack.sh b/pack.sh index 472c810..545c953 100755 --- a/pack.sh +++ b/pack.sh @@ -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}" \ No newline at end of file +7z a "${OUTPUT_FOLDER}/${VERSION}.zip" -x!pack.sh -x!icons/source.svg -x!.git -x!.gitignore -x!.ignoreme -x!.github -x!"${OUTPUT_FOLDER}"