Skip to content

Commit

Permalink
v2.0.1 / 2024-11-12
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornstar committed Nov 12, 2024
1 parent 8a1058d commit a456ae5
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Tumblr Savior Changelog

## v2.0.1 / 2024-11-12
* Update Firefox AddOn specific id value

## v2.0.0 / 2024-11-12
* There is a one-time manual step you need to take in Tumblr Savior's options to read your localStorage settings and load it into browser extension storage.
Go to the Save / Load tab and press the "Read from localStorage" button then you can press the "Load" button to have it applied. It will save it to your
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tumblr-savior",
"version": "2.0.0",
"version": "2.0.1",
"description": "Would you like to control what shows up on your dashboard? Tumblr Savior is here to save you!",
"scripts": {
"addons-linter": "addons-linter src",
Expand Down
2 changes: 1 addition & 1 deletion src/data/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const defaultSettings = {
'show_notice': true,
'show_tags': true,
'show_words': true,
'version': '2.0.0'
'version': '2.0.1'
}; // Initialize default values.

const { version } = defaultSettings;
Expand Down
2 changes: 1 addition & 1 deletion src/data/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const defaultSettings = {
'show_notice': true,
'show_tags': true,
'show_words': true,
'version': '2.0.0'
'version': '2.0.1'
}; // Initialize default values.

const { version } = defaultSettings;
Expand Down
2 changes: 1 addition & 1 deletion src/data/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const defaultSettings = {
'show_notice': true,
'show_tags': true,
'show_words': true,
'version': '2.0.0'
'version': '2.0.1'
}; // Initialize default values.

const BASE_CONTAINER_ID = 'base-container';
Expand Down
4 changes: 2 additions & 2 deletions src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Tumblr Savior",
"version": "2.0.0",
"version": "2.0.1",
"description": "Would you like to control what shows up on your dashboard? Tumblr Savior is here to save you!",
"action": {
"default_icon": "data/Icon-16.png",
Expand All @@ -13,7 +13,7 @@
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
"id": "jid1-W5guVoyeUR0uBg@jetpack"
}
},
"content_scripts": [ {
Expand Down

0 comments on commit a456ae5

Please sign in to comment.