Skip to content

Commit

Permalink
bumped version to 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurHeitmann committed Oct 21, 2023
1 parent ddb9e2a commit 103e7fb
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion 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": "photon-reddit",
"version": "1.2.0",
"version": "1.3.0",
"description": "A fast and modern Reddit web client",
"type": "module",
"scripts": {
Expand Down
12 changes: 11 additions & 1 deletion src/serverScripts/version.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
export const photonVersion = "1.2.0"; /// <change version script>
export const photonVersion = "1.3.0"; /// <change version script>

export const photonChangelog = {
"1.3.0": {
"New": [
"Added light theme (Settings > UI > Theme)",
"Restored functionality of \"Load archived version\" button (hopefully)",
"From the ⫶ menu you can load the archived version of a post or comment",
],
"Fixed": [
"Scroll jumping when collapsing comments (maybe)",
]
},
"1.2.0": {
"New": [
"When revisiting a post, new comments will be highlighted (can be disabled in the settings)",
Expand Down
2 changes: 1 addition & 1 deletion src/static/scripts/utils/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const photonWebVersion = "1.2.0"; /// <change version script>
export const photonWebVersion = "1.3.0"; /// <change version script>
2 changes: 1 addition & 1 deletion src/static/serviceWorker.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* This service worker is responsible for updating & caching files, if there are more recent versions
*/
const version = "1.2.0"; /// <change version script>
const version = "1.3.0"; /// <change version script>
const CACHE_NAME = `photon-cache-${version}`;
interface CacheDescription {
hostname: "/" | string,
Expand Down

0 comments on commit 103e7fb

Please sign in to comment.