Skip to content

Commit

Permalink
adjust (up)boarding
Browse files Browse the repository at this point in the history
  • Loading branch information
StigNygaard committed Oct 24, 2024
1 parent 06f1bbe commit 212fc83
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion WebExtension/background/flickr_fixr.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,10 @@ function installHandler({reason, temporary, previousVersion}) {
switch (reason) {
case 'update':
console.log("Updated from details.previousVersion: " + previousVersion);
// break; // Show onboarding when updating or not?...
if (versionnumber.compare(previousVersion, '2.6.0') < 0) {
browser.tabs.create({url: "/onboard/onboard.html"});
}
break;
case 'install':
// browser.runtime.openOptionsPage();
// browser.runtime.getURL()
Expand Down
2 changes: 1 addition & 1 deletion WebExtension/onboard/onboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ <h2>New in this version...</h2>
back both links after the changes Flickr has made to the album pages.<br />
PS. If somebody gets confused by the "album comments" link, it was an official feature of Flickr many many
years ago. The old page that the link points to, makes it possible to see comments made in those old days.
And actually I think it is still possible to make new comments, but be aware that most people cannot see them🙄
And actually I think it is still possible to make new comments, but be aware that most people won't see them🙄
</li>

</ul>
Expand Down

0 comments on commit 212fc83

Please sign in to comment.