Skip to content

Commit

Permalink
Bumped to version 20.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
victrme committed Nov 17, 2024
1 parent e169918 commit 6d05f46
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 20.2.2

- Fix weather cache using old timestamp convention

## 20.2.1

- Fixes:
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bonjourr",
"version": "20.2.1",
"version": "20.2.2",
"description": "Improve your web browsing experience with Bonjourr, a beautiful, customizable and lightweight homepage.",
"author": "Victor Azevedo (https://victr.me)",
"license": "ISC",
Expand Down Expand Up @@ -29,11 +29,11 @@
"@victr/deepmerge": "^1.3.2",
"clickdown": "^1.2.2",
"idb-keyval": "^6.2.1",
"pocket-editor": "^2.3.0",
"pocket-editor": "^2.4.0",
"prism-code-editor": "3.4.0"
},
"devDependencies": {
"@types/chrome": "^0.0.272",
"@types/chrome": "^0.0.283",
"esbuild": "^0.24.0",
"user-agent-data-types": "^0.4.2",
"web-ext-types": "^3.2.1"
Expand Down
2 changes: 1 addition & 1 deletion src/manifests/chrome.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "__MSG_extensionName__",
"short_name": "Bonjourr",
"version": "20.2.1",
"version": "20.2.2",
"description": "__MSG_extensionDesc__",
"author": "Victor Azevedo and Tahoe Beetschen",
"default_locale": "en",
Expand Down
2 changes: 1 addition & 1 deletion src/manifests/edge.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "__MSG_extensionName__",
"short_name": "Bonjourr",
"version": "20.2.1",
"version": "20.2.2",
"description": "__MSG_extensionDesc__",
"author": "Victor Azevedo and Tahoe Beetschen",
"default_locale": "en",
Expand Down
2 changes: 1 addition & 1 deletion src/manifests/firefox.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "__MSG_extensionName__",
"short_name": "Bonjourr",
"version": "20.2.1",
"version": "20.2.2",
"description": "__MSG_extensionDesc__",
"author": "Victor Azevedo and Tahoe Beetschen",
"homepage_url": "https://bonjourr.fr",
Expand Down
2 changes: 1 addition & 1 deletion src/manifests/safari.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "__MSG_extensionName__",
"short_name": "Bonjourr",
"version": "20.2.1",
"version": "20.2.2",
"description": "__MSG_extensionDesc__",
"author": "Victor Azevedo and Tahoe Beetschen",
"default_locale": "en",
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/defaults.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import langList from './langs'

export const CURRENT_VERSION = '20.2.1'
export const CURRENT_VERSION = '20.2.2'

export const MAIN_API = 'https://api.bonjourr.fr'

Expand Down
2 changes: 1 addition & 1 deletion src/scripts/services/service-worker.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const CACHE_KEY = '20.2.1'
const CACHE_KEY = '20.2.2'
const API_URLS = ['unsplash.com', 'jsdelivr.net', 'api.bonjourr']

//
Expand Down

0 comments on commit 6d05f46

Please sign in to comment.