From d111141e6ce6f0f4a8bb601403682a7173195b44 Mon Sep 17 00:00:00 2001 From: Toshimitsu Takahashi Date: Mon, 23 Oct 2023 00:20:11 +0900 Subject: [PATCH] Release v4.0.0 (#309) * update version and changelog * update recent main updates * fix to removing old zip file --- CHANGELOG.md | 5 +++++ bin/archive.sh | 8 ++++++-- manifest.json | 2 +- src/updated.html | 50 +++++++++++++++--------------------------------- 4 files changed, 27 insertions(+), 38 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e7bc37..1182cce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ Changelog ========= +## 4.0.0 (2023/10/22) + +- Change the storage location of profile data to **IndexedDB**, removing the registration number limit +- Update the host specification for the AWS Management Console + ## 3.0.0 (2023/06/18) - Migrate to Manifest V3 (thanks to @eetann) diff --git a/bin/archive.sh b/bin/archive.sh index 1655f4b..9b0205a 100755 --- a/bin/archive.sh +++ b/bin/archive.sh @@ -7,7 +7,9 @@ copydest=$1 cd dist/chrome; version=`cat manifest.json | jq -r '.version' | sed 's/\./-/g'` zipfile="aesr-chrome-$version.zip" -\rm $zipfile +if [ -e $zipfile ]; then + \rm $zipfile +fi zip -r $zipfile \ manifest.json *.html icons/ js/ echo "archived: chrome/$zipfile" @@ -20,7 +22,9 @@ echo "----" cd ../firefox; version=`cat manifest.json | jq -r '.version' | sed 's/\./-/g'` zipfile="aesr-firefox-$version.zip" -\rm $zipfile +if [ -e $zipfile ]; then + \rm $zipfile +fi zip -r $zipfile \ manifest.json *.html icons/ js/ diff --git a/manifest.json b/manifest.json index c7102da..fee657a 100644 --- a/manifest.json +++ b/manifest.json @@ -1,5 +1,5 @@ { - "version": "3.0.0", + "version": "4.0.0", "name": "AWS Extend Switch Roles", "description": "Extend your AWS IAM switching roles. You can set the configuration like aws config format", "short_name": "Extend SwitchRole", diff --git a/src/updated.html b/src/updated.html index 8a19739..7764f90 100644 --- a/src/updated.html +++ b/src/updated.html @@ -39,6 +39,13 @@

AWS Extend Switch Roles - Update Notice

Recent main updates

+ +

Migration profile data to IndexedDB

+

+ Change the storage location of profile data to IndexedDB. While this removes any fixed upper limit on the number of profiles, + there will now be a restriction based on the text size of the Configuration. +

+

'Visual mode' setting

'Visual mode' has been added in the 'Configuration' to provide 3 options: @@ -65,54 +72,27 @@

'Sign-in endpoint in current region' setting (Experimental, Supporters only)
-

3.0.0 New version!

+

4.0.0 New version!

+ + +

3.0.0

-

2.3.2

+

2.1.0–2.3.2

- -

2.3.1

- - -

2.3.0

- - -

2.2.0

- - -

2.1.0

- - -

2.0.4–2.0.6

-