Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
alganzory committed Mar 15, 2024
1 parent 2e5338f commit 1ce6302
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "HaramBlur",
"description": "Protect your privacy and uphold Islamic values by auto detecting & blurring images and videos of unwanted or impermissible content.",
"version": "0.2.4",
"version": "0.2.5",
"permissions": ["storage", "offscreen","contextMenus"],
"author": "[email protected]",
"action": {
Expand Down
1 change: 1 addition & 0 deletions src/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ chrome.runtime.onInstalled.addListener(function (details) {
});
} else if (details?.reason === "update") {
const currentVersion = chrome.runtime.getManifest().version;
if (currentVersion == "0.2.4" || currentVersion == "0.2.5") return; // no need to show update page for this version
const previousVersion = details.previousVersion;
if (currentVersion != previousVersion) {
chrome.tabs.create({
Expand Down

0 comments on commit 1ce6302

Please sign in to comment.