Skip to content

Commit

Permalink
v2.0 released
Browse files Browse the repository at this point in the history
  • Loading branch information
lxieyang committed Oct 20, 2021
1 parent 82811e1 commit db4a981
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 6 deletions.
20 changes: 18 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,29 @@

All notable changes to this project will be documented in this file.

# v1.x (official releases)

Please provide valuable feedback by:

- Creating a [new issue](https://github.com/lxieyang/vertical-tabs-chrome-extension/issues/new)
- Email: xieyangl@cs.cmu.edu

---

# v2.x (official releases)

### [2.0.0](https://github.com/lxieyang/vertical-tabs-chrome-extension/releases/tag/v2.0.0) (2021-10-21)

#### New Features

- Tab Preview

<img src="preview/repo/tab-preview-light.png" width="600"/>
<br/>
<img src="preview/repo/tab-preview-dark.png" width="600"/>

---

# v1.x (official releases)

### [1.10.0](https://github.com/lxieyang/vertical-tabs-chrome-extension/releases/tag/v1.10.0) (2021-10-18)

#### New Features
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ Please provide valuable feedback by:
- Email: xieyangl@cs.cmu.edu
<!-- - Filling out this [Google form](https://forms.gle/YiUg8xeEUD6f1JqM6) -->

**Tab preview support is here 🕶️🕶️🕶️**

<img src="preview/repo/tab-preview-light.png" width="600"/>

---

**Dark theme support is here 🕶️🕶️🕶️**
Expand Down
4 changes: 2 additions & 2 deletions 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": "vertical-tabs-chrome-extension",
"version": "1.11.0",
"version": "2.0.0",
"description": "A chrome extension that presents your tabs vertically.",
"license": "MIT",
"repository": {
Expand Down
Binary file added preview/repo/tab-preview-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added preview/repo/tab-preview-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/pages/Background/modules/installationHelper.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ chrome.runtime.onInstalled.addListener((details) => {
if (details.reason === 'install' || details.reason === 'update') {
console.log('go to release log page');
chrome.tabs.create({
url: `https://github.com/lxieyang/vertical-tabs-chrome-extension/blob/master/CHANGELOG.md#v1x-official-releases`,
url: `https://github.com/lxieyang/vertical-tabs-chrome-extension/blob/master/CHANGELOG.md#v2x-official-releases`,
});
}
});
Expand Down

0 comments on commit db4a981

Please sign in to comment.