Skip to content

Commit

Permalink
fix update notice and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
bluecaret committed Jul 22, 2023
1 parent f27b104 commit 1d38dd7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions manifest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ const getManifestSettings = (env) => {
short_name: 'CaretTab',
name: env.mode === 'beta' ? 'CaretTab BETA' : '__MSG_appName__',
description: env.mode === 'beta' ? 'Beta version of the New Tab extension, CaretTab' : '__MSG_appDesc__',
version: `4.0.0`,
version_name: `4.0.0`,
version: `4.0.1`,
version_name: `4.0.1`,
default_locale: 'en',
icons: {
16: 'img/icon16.png',
Expand Down
2 changes: 1 addition & 1 deletion src/components/settings/DashboardSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ onMounted(async () => {
store.status = 'existing'
}
if ((!store.clearWhatsNewBox, store.updatedTimestamp)) {
let updated = DateTime.fromFormat(store.updatedTimestamp, 'F')
let updated = DateTime.fromFormat(store.updatedTimestamp, 'F').plus({ days: 7 })
let now = DateTime.now()
if (updated <= now) {
handleClearWhatsNew()
Expand Down

0 comments on commit 1d38dd7

Please sign in to comment.