Skip to content

Commit

Permalink
v2.6.1 edge-variant
Browse files Browse the repository at this point in the history
  • Loading branch information
StigNygaard committed Oct 25, 2024
1 parent 0869151 commit 54a081e
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 8 deletions.
2 changes: 1 addition & 1 deletion WebExtension/background/flickr_fixr.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ function installHandler({reason, temporary, previousVersion}) {
switch (reason) {
case 'update':
console.log("Updated from details.previousVersion: " + previousVersion);
if (versionnumber.compare(previousVersion, '2.6.0') < 0) {
if (versionnumber.compare(previousVersion, '2.5.0') < 0) {
browser.tabs.create({url: "/onboard/onboard.html"});
}
break;
Expand Down
1 change: 0 additions & 1 deletion WebExtension/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
"minimum_opera_version": "107.0",
"minimum_edge_version": "121.0",
"background": {
"scripts": ["background/flickr_fixr.js"],
"service_worker": "background/flickr_fixr.js",
"type": "module"
},
Expand Down
33 changes: 27 additions & 6 deletions WebExtension/onboard/onboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,18 +57,39 @@ <h1>Congratulations!...</h1>

<p>If you are new to Flickr Fixr, make sure to look through features on the <a href="#" class="settings">Options Page</a>.</p>

<h2>New in this version...</h2>
<h2>This is a special <em>Edge version</em></h2>

<p>Standards and cross-browser designs are something I care a lot about and always try to support. That's why
Flickr Fixr generally is made so I can publish the exact same extension version for Firefox, Chrome and Edge
browsers. However, lately Microsoft's Add-ons site hasn't allowed me to upload the "normal" version of my
extension that is available for Firefox and Chrome. It
<a href="https://github.com/microsoft/MicrosoftEdge-Extensions/issues/172" target="_blank">sounds like Microsoft acknowledge the problem and plan to fix it</a>.
But after three months of waiting, nothing has happened yet.
</p>
<p>You Edge users has missed a couple of updates to Flickr Fixr, so I decided this time to publish a special tailored
Edge version. It probably won't happen with all updates of Flickr Fixr, so going forward you could consider
<a href="https://chrome.google.com/webstore/detail/flickr-fixr/ledhkkpililplmmfcfnhkgifmcnboonb" target="_blank">installing Flickr Fixr from Chrome Add-ons webstore instead</a>,
which Edge also supports installing extensions from. But hopefully Microsoft will fix the problem soon.
</p>

<h3>New from previous version that was available for Edge, is:</h3>
<ul>
<li>Just a small update to adapt Flickr Fixr functionality to the new album pages. The "album comments" and
"map view" links inserted by Flickr Fixr, are now shown next to photo and view counts of the album. Maybe
not an extremely intuitive place to locate the "map view" link(?). But for now, it was a quick fix to bring
back both links after the changes Flickr has made to the album pages.<br />
<li><strong>Photopage "Show in Photostream" links</strong><br/>
<img src="/options/PhotostreamLink-326x47.gif" alt="" />
On Photopages, this feature makes it always possible to open <em>Photostream where the photo is located</em>.
No matter if your current Photopage was opened from a group pool, an album, a search result, a faves-list,
Explore-page, gallery, etc. The new link is shown in upper left corner as an arrow next to the other arrow
that brings you back to the "context" you came from.<br/>
This is actually a feature I have been thinking about implementing ever since first version of Flickr Fixr
debuted back in 2015(!). But for some reason it took me 9 years to do it 🙄
</li>
<li><strong>Fix: Adapting to the new album-headers on Flickr</strong><br/>
The "album comments" and "map view" links are once again inserted by Flickr Fixr in the header of album pages.
Links are shown next to the photo and view counts of the album.<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 won't see them🙄
</li>

</ul>

<p>You can always enable and disable features on the <a href="#" class="settings">Options Page</a> if you don't
Expand Down

0 comments on commit 54a081e

Please sign in to comment.