Skip to content

Commit

Permalink
Merge pull request #277 from cxw42/0.2.2-rc
Browse files Browse the repository at this point in the history
Version 0.2.2
  • Loading branch information
cxw42 authored Dec 23, 2021
2 parents 0673736 + bdd9559 commit cc2f6c4
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 13 deletions.
2 changes: 1 addition & 1 deletion app/common/setting-definitions.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// setting-definitions.js: The TabFern settings, and setting-access functions

// Fixed configuration
let ISSUE35 = true; // Set to true to enable #35 functions, false to disable
let ISSUE35 = false; // Set to true to enable #35 functions, false to disable

// Names of settings, and their defaults // {{{1

Expand Down
32 changes: 22 additions & 10 deletions app/settings/manifest.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function brplain(text){return `<br/><span class="plain">${text}</span>`;}

function future_i18n(x) { return x; }

let ham = icon('fa fa-bars');
let ham = icon('fa fa-bars'); // hamburger-menu icon (three bars)
let gt = icon('fa fa-lg fa-caret-right');
var editImg = icon('fff-pencil tf-action-button');
var delImg = icon('fff-cross tf-action-button');
Expand Down Expand Up @@ -222,7 +222,7 @@ setting_definitions.push(
"tab": future_i18n("Appearance"),
"group": '',
"type": "description",
"text": future_i18n("Refresh the TabFern window to apply changes to these options. To refresh, click TabFern's title bar and hit F5."),
"text": future_i18n("Refresh the TabFern window to apply changes to these options. To refresh, click TabFern's title bar and hit F5 or Cmd+R."),
},
{
"tab": future_i18n("Appearance"),
Expand Down Expand Up @@ -401,7 +401,7 @@ setting_definitions.push(
"tab": future_i18n("Advanced"),
"group": '',
"type": "description",
"text": future_i18n("Refresh the TabFern window to apply changes to these options. To refresh, click TabFern's title bar and hit F5."),
"text": future_i18n("Refresh the TabFern window to apply changes to these options. To refresh, click TabFern's title bar and hit F5 or Cmd+R."),
},
{
"tab": future_i18n("Advanced"),
Expand All @@ -427,8 +427,8 @@ setting_definitions.push(
`TabFern is by Chris White (<a href="https://devwrench.wordpress.com">blog</a>,
<a href="https://github.com/cxw42/">GitHub</a>). I greatly appreciate
the following contributors! If I have accidentally missed you, please let
me know so I can correct the omission. All names below are in asciibetical
order within each category.`
me know so I can correct the omission. All names below are in case-insensitive
alphabetical order within each category.`
},

{
Expand Down Expand Up @@ -474,6 +474,7 @@ order within each category.`
"type": "description",
"text":
`<ul>
<li><a href="https://github.com/bluikko/">bluikko</a></li>
<li><a href="https://github.com/devinrhode2/">Devin Rhode</a></li>
<li><a href="https://github.com/philiprhoades/">Phil Rhoades</a></li>
</ul>`
Expand All @@ -484,16 +485,22 @@ order within each category.`
setting_definitions.push(
{
"tab": future_i18n("What's new?"),
"group": `Version 0.2.2${brplain('2020-xx-xx')}`,
"group": `Version 0.2.2${brplain('2021-12-22')}`,
'group_html':true,
"type": "description",
"text": (
`<ul>
`<h1>Please back up!</h1>
<p>The next version of TabFern will introduce tab-at-a-time ${issue(35)}.
Please back up now (${ham} ${gt} Backup now) just in case of unexpected bugs!
Remember, TabFern carries <b>no warranty</b>.
</p>
<ul>
<li>Fixed a regression in the settings: it is now possible to set the
window action-button order again. ${issue(208)}</li>
<li>When running a development version of TF, the commit hash will be
listed in the title bar. This will make it easier to reference the
commit in bug reports. ${issue(210)}</li>` +

(!S.ISSUE35 ? '' :
`<li class="gold-star">Opening one tab at a time! Yes, the wait is over! ${issue(35)}
<ul>
Expand All @@ -507,8 +514,13 @@ commit in bug reports. ${issue(210)}</li>` +
<p>Please note that if Chrome crashes while you have only some tabs open, the
recovered window will show up in TabFern as a separate, unsaved window
(related to ${issue(41, true)}).</p>
</li></ul>`) +
'</ul>'
</li>`) +

`<li>Icons of other extensions should now appear in the TF window. ${issue(202)}</li>
<li>Other fixes: ${issue(196,true)}, ${issue(224,true)} (thanks to bluikko),
${issue(233,true)}, ${issue(236,true)}, ${issue(237,true)}</li>
<li>Known issues: ${issue(276,true)}</li>
</ul>`
),

},
Expand Down Expand Up @@ -547,7 +559,7 @@ recovered window will show up in TabFern as a separate, unsaved window
<a href="https://forum.vivaldi.net/topic/35531/chrome-extension-apis-intermittently-unavailable-on-2-3-1440-61-x86">bug</a>
that sometimes causes
TabFern not to load properly. If this happens, close the TF window and
click the TF toolbar button to reload, or hit F5. That will probably work!
click the TF toolbar button to reload, or hit F5 or Cmd+R. That will probably work!
${issue(171)}</p>
<ul>
<li>TabFern now opens in a small window in the upper-left corner of the
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tabfern",
"version": "0.2.2-pre.1",
"version": "0.2.2",
"description": "Google Chrome extension for displaying, saving, and managing tabs",
"main": "src/view/main.js",
"directories": {
Expand Down

0 comments on commit cc2f6c4

Please sign in to comment.