Skip to content

Commit

Permalink
bumped version to 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurHeitmann committed Dec 9, 2023
1 parent 4ba7167 commit 11b91d8
Show file tree
Hide file tree
Showing 5 changed files with 11 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.3.0",
"version": "1.3.1",
"description": "A fast and modern Reddit web client",
"type": "module",
"scripts": {
Expand Down
8 changes: 7 additions & 1 deletion src/serverScripts/version.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
export const photonVersion = "1.3.0"; /// <change version script>
export const photonVersion = "1.3.1"; /// <change version script>

export const photonChangelog = {
"1.3.1": {
"Fixed": [
"Fixed display of several image and video links",
"Removed gilded sort option (since awards have been removed)",
]
},
"1.3.0": {
"New": [
"Added light theme (Settings > UI > Theme)",
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.3.0"; /// <change version script>
export const photonWebVersion = "1.3.1"; /// <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.3.0"; /// <change version script>
const version = "1.3.1"; /// <change version script>
const CACHE_NAME = `photon-cache-${version}`;
interface CacheDescription {
hostname: "/" | string,
Expand Down

0 comments on commit 11b91d8

Please sign in to comment.