Skip to content

Commit

Permalink
Release 13.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Alfagun74 authored Jan 12, 2025
2 parents c80852c + 5f2d075 commit 1c8be84
Show file tree
Hide file tree
Showing 5 changed files with 151 additions and 140 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@

### Changes

- Fixed file path validation crashing the server in certain circumstances.
- Added Symlink Following to the filewatcher

## 13.1.2

### Changes

- Added Game Backgrounds into the results object of the game search for preloading purposes.
- Fixed a bug where provider metadata was unmapped before new metadata was added.

Expand Down
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,16 @@ ENV PATH=$PATH:/home/node/.npm-global/bin
ENV PNPM_HOME=/pnpm
ENV PATH=$PNPM_HOME:$PATH
ENV SERVER_PORT=8080
ENV YES=yes

RUN mkdir -p /files /media /logs /db /plugins \
&& chown -R node:node /files /media /logs /db /plugins \
&& chmod -R 777 /files /media /logs /db /plugins \
&& sed -i -e's/ main/ main non-free non-free-firmware contrib/g' /etc/apt/sources.list.d/debian.sources \
&& apt update \
&& apt install -y curl p7zip-full p7zip-rar postgresql-client sudo \
&& apt install -y curl p7zip-full p7zip-rar postgresql-common sudo \
&& /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh \
&& apt install -y postgresql-client \
&& apt clean \
&& npm i -g pnpm@^9.15.0

Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gamevault-backend",
"version": "13.1.2",
"version": "13.1.3",
"description": "the self-hosted gaming platform for drm-free games",
"author": "Alkan Alper, Schäfer Philip GbR / Phalcode",
"private": true,
Expand Down Expand Up @@ -86,19 +86,19 @@
"@types/cookie-parser": "^1.4.8",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@types/lodash": "^4.17.14",
"@types/mime": "^3.0.4",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.12",
"@types/node": "^22.10.2",
"@types/node": "^22.10.5",
"@types/node-7z": "^2.1.10",
"@types/passport-http": "^0.3.11",
"@types/pg": "^8.11.10",
"@types/stream-throttle": "^0.1.4",
"@types/string-similarity": "^4.0.2",
"@types/unidecode": "^0.1.3",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
Expand All @@ -108,7 +108,7 @@
"jest": "^29.7.0",
"logform": "2.6.1",
"prettier": "^3.4.2",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-jsdoc": "^1.3.2",
"prettier-plugin-organize-imports": "^4.1.0",
"simple-git-hooks": "^2.11.1",
"ts-jest": "^29.2.5",
Expand Down
Loading

0 comments on commit 1c8be84

Please sign in to comment.