diff --git a/package-lock.json b/package-lock.json index 8bd1a245..d8bde93d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "photon-reddit", - "version": "1.2.0", + "version": "1.3.0", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index c417fe2e..a784e9d9 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/src/serverScripts/version.ts b/src/serverScripts/version.ts index aeb7702e..5b4ba937 100644 --- a/src/serverScripts/version.ts +++ b/src/serverScripts/version.ts @@ -1,6 +1,16 @@ -export const photonVersion = "1.2.0"; /// +export const photonVersion = "1.3.0"; /// 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)", diff --git a/src/static/scripts/utils/version.ts b/src/static/scripts/utils/version.ts index d1e0a2f5..65a9f952 100644 --- a/src/static/scripts/utils/version.ts +++ b/src/static/scripts/utils/version.ts @@ -1 +1 @@ -export const photonWebVersion = "1.2.0"; /// +export const photonWebVersion = "1.3.0"; /// diff --git a/src/static/serviceWorker.ts b/src/static/serviceWorker.ts index adcc21ff..9b83ac18 100644 --- a/src/static/serviceWorker.ts +++ b/src/static/serviceWorker.ts @@ -1,7 +1,7 @@ /** * This service worker is responsible for updating & caching files, if there are more recent versions */ -const version = "1.2.0"; /// +const version = "1.3.0"; /// const CACHE_NAME = `photon-cache-${version}`; interface CacheDescription { hostname: "/" | string,