Skip to content

Commit

Permalink
v0.1.15 - removed "alpha" status
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris White committed Feb 9, 2018
1 parent 234914e commit d0a0748
Show file tree
Hide file tree
Showing 11 changed files with 42 additions and 15 deletions.
8 changes: 7 additions & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,17 @@

TabFern is Copyright (c) 2017–2018 Chris White and contributors.

Contributors:

- [Jasmine Hegman](https://github.com/r4j4h)


Unless otherwise specified by individual files or groups of files,
the contents of TabFern are licensed as follows. Thanks to
[idleberg](https://github.com/idleberg/Creative-Commons-Markdown/blob/master/4.0/by-nc-sa.markdown)
for the Markdown text.

More information about TabFern is available at
More information about TabFern is available at
[https://cxw42.github.io/TabFern/](https://cxw42.github.io/TabFern/).

## Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License
Expand Down Expand Up @@ -168,3 +173,4 @@ c. No term or condition of this Public License will be waived and no failure to

d. Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority.

[]( vi: set ts=4 sts=4 sw=4 et ai ft=markdown: )
21 changes: 16 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

![screenshot](https://raw.githubusercontent.com/cxw42/TabFern/gh-pages/screenshot.png)

Very basic extension for vertical, grouped tabs. Inspired by
[Tabs Outliner](https://chrome.google.com/webstore/detail/tabs-outliner/eggkanocgddhmamlbiijnphhppkpkmkl)
by Vladyslav Volovyk. However, TabFern is not derived from or in any way
affiliated with Vladyslav or his (excellent!) work.
A [Google Chrome extension](https://chrome.google.com/webstore/detail/tabfern-tab-manager-and-b/hbajjpcdbninabigakflkhiogmmjaakm) that:

- Gives you a vertical list of all your open tabs
- Groups your tabs by window
- Saves sets of tabs so you can close them and resume later
- Backs up and restores sets of tabs

See [INTERNALS.md](INTERNALS.md) for details of how the code is structured.

Expand Down Expand Up @@ -56,9 +58,18 @@ See [INTERNALS.md](INTERNALS.md) for details of how the code is structured.

# Legal

Copyright (c) 2017 Chris White, Jasmine Hegman. CC-BY-SA 4.0 International.
Copyright (c) 2017 Chris White and contributors. CC-BY-SA 4.0 International.
See [LICENSE.md](LICENSE.md) for details, which are controlling in case of any
difference between that file and this section.

Contributors:

- [Jasmine Hegman](https://github.com/r4j4h)

Originally inspired by
[Tabs Outliner](https://chrome.google.com/webstore/detail/tabs-outliner/eggkanocgddhmamlbiijnphhppkpkmkl)
by Vladyslav Volovyk. However, TabFern is not derived from Tabs Outliner.
TabFern is not affiliated in any way with Vladyslav or Tabs Outliner.

![logo](https://raw.githubusercontent.com/cxw42/TabFern/master/webstore/assets/fern128.png)

2 changes: 1 addition & 1 deletion tabfern/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "TabFern tab manager and backup tool",
"short_name": "TabFern",
"version": "0.1.15.1337",
"version_name": "0.1.15 ALPHA - YMMV",
"version_name": "0.1.15",
"offline_enabled": true,
"manifest_version": 2,
"minimum_chrome_version": "54",
Expand Down
2 changes: 1 addition & 1 deletion tabfern/src/common/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ console.log('TabFern common.js loading');

/// The TabFern extension friendly version number. Displayed in the
/// title bar of the popup window, so lowercase (no shouting!).
const TABFERN_VERSION='0.1.15 alpha \u26a0'
const TABFERN_VERSION='0.1.15' //' alpha \u26a0'
// When you change this, also update:
// - manifest.json: both the version and version_name
// - package.json
Expand Down
4 changes: 3 additions & 1 deletion tabfern/src/settings/manifest.js
Original file line number Diff line number Diff line change
Expand Up @@ -261,13 +261,15 @@ bar (it will start with "file://")</li>
// Changelog {{{1
{
"tab": i18n.get("What's new?"),
"group": `Version 0.1.15${brplain('2018-02-xx')}`,
"group": `Version 0.1.15${brplain('2018-02-09')}`,
'group_html':true,
"type": "description",
"text":
`<ul>
<li>TabFern now has a basic understanding of pinned tabs. ${issue(106)} ${issue(107)}</li>
<li>Better handling of crashes, recovery, and reopening tabs. ${issue(41)} ${issue(55)} ${issue(96)}</li>
<li>We have enough experience with TabFern that I have removed the "alpha"
status! One step closer to <a href="https://github.com/cxw42/TabFern/issues?q=is%3Aopen+is%3Aissue+milestone%3Av1.0">version 1.0</a>.</li>
</ul>`
},
{
Expand Down
2 changes: 1 addition & 1 deletion tabfern/src/view/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ function initMain()
W = window.frames[0];
// Thanks to https://stackoverflow.com/a/13913943/2877364 by
// https://stackoverflow.com/users/1105384/shank
document.title = 'TabFern ' + TABFERN_VERSION;
document.title = `TabFern (v${TABFERN_VERSION})`;
} //initMain

//////////////////////////////////////////////////////////////////////////
Expand Down
8 changes: 7 additions & 1 deletion webstore/LICENSE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,17 @@

TabFern is Copyright (c) 2017&ndash;2018 Chris White and contributors.

Contributors:

- [Jasmine Hegman](https://github.com/r4j4h)


Unless otherwise specified by individual files or groups of files,
the contents of TabFern are licensed as follows. Thanks to
[idleberg](https://github.com/idleberg/Creative-Commons-Markdown/blob/master/4.0/by-nc-sa.markdown)
for the Markdown text.

More information about TabFern is available at
More information about TabFern is available at
[https://cxw42.github.io/TabFern/](https://cxw42.github.io/TabFern/).

## Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License
Expand Down Expand Up @@ -168,3 +173,4 @@ c. No term or condition of this Public License will be waived and no failure to

d. Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority.

[]( vi: set ts=4 sts=4 sw=4 et ai ft=markdown: )
2 changes: 1 addition & 1 deletion webstore/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "TabFern tab manager and backup tool",
"short_name": "TabFern",
"version": "0.1.15.1337",
"version_name": "0.1.15 ALPHA - YMMV",
"version_name": "0.1.15",
"offline_enabled": true,
"manifest_version": 2,
"minimum_chrome_version": "54",
Expand Down
2 changes: 1 addition & 1 deletion webstore/src/common/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ console.log('TabFern common.js loading');

/// The TabFern extension friendly version number. Displayed in the
/// title bar of the popup window, so lowercase (no shouting!).
const TABFERN_VERSION='0.1.15 alpha \u26a0'
const TABFERN_VERSION='0.1.15' //' alpha \u26a0'
// When you change this, also update:
// - manifest.json: both the version and version_name
// - package.json
Expand Down
4 changes: 3 additions & 1 deletion webstore/src/settings/manifest.js
Original file line number Diff line number Diff line change
Expand Up @@ -261,13 +261,15 @@ bar (it will start with "file://")</li>
// Changelog {{{1
{
"tab": i18n.get("What's new?"),
"group": `Version 0.1.15${brplain('2018-02-xx')}`,
"group": `Version 0.1.15${brplain('2018-02-09')}`,
'group_html':true,
"type": "description",
"text":
`<ul>
<li>TabFern now has a basic understanding of pinned tabs. ${issue(106)} ${issue(107)}</li>
<li>Better handling of crashes, recovery, and reopening tabs. ${issue(41)} ${issue(55)} ${issue(96)}</li>
<li>We have enough experience with TabFern that I have removed the "alpha"
status! One step closer to <a href="https://github.com/cxw42/TabFern/issues?q=is%3Aopen+is%3Aissue+milestone%3Av1.0">version 1.0</a>.</li>
</ul>`
},
{
Expand Down
2 changes: 1 addition & 1 deletion webstore/src/view/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ function initMain()
W = window.frames[0];
// Thanks to https://stackoverflow.com/a/13913943/2877364 by
// https://stackoverflow.com/users/1105384/shank
document.title = 'TabFern ' + TABFERN_VERSION;
document.title = `TabFern (v${TABFERN_VERSION})`;
} //initMain

//////////////////////////////////////////////////////////////////////////
Expand Down

0 comments on commit d0a0748

Please sign in to comment.