Skip to content

Commit ec0355a

Browse files
author
sheepzh
committed
v2.2.0
1 parent 83ea968 commit ec0355a

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to Time Tracker will be documented in this file.
44

55
It is worth mentioning that the release time of each change refers to the time when the installation package is submitted to the webstore. It is about one week for Edge to moderate packages, while only 1-2 days for Chrome and Firefox.
66

7+
## [2.1.20] - 2024-03-17
8+
9+
- Optimized all charts
10+
- Supported calendar charts for site analysis
11+
- Removed unnecessary menu items
12+
- Added about page
13+
714
## [2.1.10] - 2024-03-14
815

916
- Fixed bugs for auto syncing (#265)

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "timer",
3-
"version": "2.1.10",
3+
"version": "2.2.0",
44
"description": "Time tracker",
55
"homepage": "https://www.wfhg.cc",
66
"scripts": {
@@ -73,4 +73,4 @@
7373
"engines": {
7474
"node": ">=18"
7575
}
76-
}
76+
}

src/app/components/About/Description.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { t } from "@app/locale"
2-
import { CHROME_HOMEPAGE, EDGE_HOMEPAGE, FEEDBACK_QUESTIONNAIRE, getHomepageWithLocale, GITHUB_ISSUE_ADD, HOMEPAGE, SOURCE_CODE_PAGE, WEBSTORE_PAGE } from "@util/constant/url"
2+
import { CHROME_HOMEPAGE, EDGE_HOMEPAGE, FEEDBACK_QUESTIONNAIRE, FIREFOX_HOMEPAGE, getHomepageWithLocale, GITHUB_ISSUE_ADD, HOMEPAGE, SOURCE_CODE_PAGE, WEBSTORE_PAGE } from "@util/constant/url"
33
import { ElCard, ElDescriptions, ElDescriptionsItem, ElDivider, ElLink, ElSpace, ElText } from "element-plus"
44
import { defineComponent, StyleValue } from "vue"
55
import InstallationLink from "./InstallationLink"
@@ -43,7 +43,7 @@ const _default = defineComponent(() => {
4343
<ElSpace />
4444
<InstallationLink href={EDGE_HOMEPAGE} name="Edge" source="edge" />
4545
<ElSpace />
46-
<InstallationLink href={EDGE_HOMEPAGE} name="Firefox" source="firefox" />
46+
<InstallationLink href={FIREFOX_HOMEPAGE} name="Firefox" source="firefox" />
4747
</div>
4848
</ElDescriptionsItem>
4949
<ElDescriptionsItem label={t(msg => msg.about.label.thanks)} labelAlign="right">

0 commit comments

Comments
 (0)