Skip to content

Commit

Permalink
v2.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
StigNygaard committed Mar 24, 2024
1 parent fb2be5e commit fae4a79
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion WebExtension/backgroundscript.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ browser.runtime.onInstalled.addListener(
const onboardUrl = new URL(browser.runtime.getURL('boarding/onboard.html'));
switch (reason) {
case "update": // "upboarding"
if (versionnumber.compare(previousVersion, '2.15.0') < 0) { // Only show "upboarding" if previous version LESS than 2.15.0
if (versionnumber.compare(previousVersion, '2.20.0') < 0) { // Only show "upboarding" if previous version LESS than 2.20.0
if (temporary) upboardUrl.searchParams.set('temporary', temporary);
upboardUrl.searchParams.set('previousVersion', previousVersion);
browser.tabs.create({url: upboardUrl.pathname + upboardUrl.search});
Expand Down
8 changes: 8 additions & 0 deletions WebExtension/boarding/boarding.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,14 @@ img.settings {
text-align: center;
margin-bottom: 2em;
}
.circlebadge {
display: inline-block;
height: calc(1lh - 2px);
border-radius: 50%;
margin: 0;
padding: 0;
vertical-align: middle;
}
table {
border: none;
}
Expand Down
9 changes: 2 additions & 7 deletions WebExtension/boarding/upboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,8 @@ <h1>Congratulations!</h1>
<img src="../icons/wheel-48.png" class="settings" alt="" /> in the metadata popup to access the options. My
personal favorite settings are "Dark Theme" and the "Snap right" popup positioning.</p>

<p>In a number of frequent recent updates, xIFr have brought several <strong>improvements to the <em>Deep Search</em>
functionality</strong>. On some pages where xIFr had trouble finding images before, it has become much better now.</p>

<p><strong>Trouble with xIFr?</strong> If xIFr generally doesn't work, it might be a conflict with settings in
an ad-blocker or privacy extension you have installed in the browser. Lately a couple of users solved conflicts
with uBlock Origin filters using
<a href="https://github.com/StigNygaard/xIFr/issues/17#issuecomment-1636860473" target="_blank" rel="noopener" title="Issue-tracker on GitHub">fix described here</a>.</p>
<p><img src="../icons/flickr-dots-128.png" alt="Flickr" class="circlebadge" /> <strong>New from version 2.20 of xIFr</strong> is detection of images from Flickr and the opportunity to search for the
originating photopage on Flickr. An example to try, has been added to the above linked "xIFr - Getting started" page.</p>

<p>I hope you are happy with and enjoy using xIFr. If you have questions or comments, there are
<a href="https://www.rockland.dk/xIFr/" target="_blank" rel="noopener">various ways you can provide feedback</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion WebExtension/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "xIFr",
"version": "2.19.0",
"version": "2.20.0",
"default_locale": "en",

"description": "__MSG_extensionDescription__",
Expand Down

0 comments on commit fae4a79

Please sign in to comment.