-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
101 changed files
with
8,483 additions
and
4,982 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ Dockerfile* | |
.editorconfig | ||
.gitignore | ||
README.md | ||
CHANGELOG.md | ||
node_modules/ | ||
.yarn/cache | ||
.eslintcache | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,24 @@ | ||
{ | ||
"catalogs": [{ | ||
"path": "src/locales/{locale}/messages", | ||
"include": ["src/"], | ||
"exclude": ["**/node_modules/**"] | ||
}], | ||
"catalogs": [ | ||
{ | ||
"path": "src/locales/{locale}/messages", | ||
"include": [ | ||
"src/" | ||
], | ||
"exclude": [ | ||
"**/node_modules/**" | ||
] | ||
} | ||
], | ||
"format": "po", | ||
"sourceLocale": "en", | ||
"locales": ["en", "de", "fr", "it", "pt", "es"] | ||
} | ||
"locales": [ | ||
"en", | ||
"de", | ||
"fr", | ||
"it", | ||
"pt", | ||
"es", | ||
"ru" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Restreamer-UI | ||
|
||
#### v1.0.0 > v1.1.0 | ||
|
||
- Add "HLS cleanup" as an optional function ([Philipp Trenz](https://github.com/philipptrenz)) | ||
- Add /ui info to / ([#326](https://github.com/datarhei/restreamer/issues/326)) | ||
- Add Russian translation (thx Inthegamelp) | ||
- Add missed VAAPI encoder | ||
- Add missed V4L2_M2M encoder | ||
- Add missed Raspberry Pi 64bit Docker image | ||
- Mod updates VideoJS | ||
- Add option to disable playersites share-button (thx Anders Mellgren) | ||
- Fix hides unset content license on playersite (thx Anders Mellgren) | ||
- Fix updates V4L2 device-list on select | ||
- Fix snapshot interval ([#341](https://github.com/datarhei/restreamer/issues/340)) | ||
- Fix reverse proxy issue ([#340](https://github.com/datarhei/restreamer/issues/340)) | ||
- Fix double escape failer ([#336](https://github.com/datarhei/restreamer/issues/336)) | ||
- Fix type in player plugin ([#336](https://github.com/datarhei/restreamer/issues/336)) | ||
- Fix deletes processes with dependencies (thx Patron Ramakrishna Chillara) | ||
- Fix datarhei Core publication service | ||
- Fix dependabot alerts | ||
- Fix code scanning alerts | ||
- Merge security pr | ||
|
||
Preparation for FFmpeg v5.0 (migration will not work) | ||
|
||
- Add FFmpeg v5.0 commands (preparation) | ||
- Mod allows FFmpeg v5.0 (preparation) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,23 @@ | ||
FROM node:17-alpine3.15 | ||
FROM node:17.9.0-alpine3.15 | ||
|
||
WORKDIR /ui | ||
ARG NODE_SPACE_SIZE=10240 | ||
ENV NODE_OPTIONS="--openssl-legacy-provider --max-old-space-size=$NODE_SPACE_SIZE" | ||
|
||
ENV PUBLIC_URL "/" | ||
|
||
COPY . /ui | ||
|
||
RUN yarn install && \ | ||
WORKDIR /ui | ||
|
||
RUN cd /ui && \ | ||
npm config set fetch-retries 10 && \ | ||
npm config set fetch-retry-mintimeout 100000 && \ | ||
npm config set fetch-retry-maxtimeout 600000 && \ | ||
npm config set cache-min 3600 && \ | ||
npm config ls -l && \ | ||
npm install && \ | ||
npm run build | ||
|
||
EXPOSE 3000 | ||
|
||
CMD [ "npm", "run", "start" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.