Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Readme correction #322

Merged
merged 3 commits into from
Dec 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ _Also look [Wiki](https://github.com/jellyfin/jellyfin-tizen/wiki)._
> It is recommended that the web version match the server version.

```sh
git clone -b release-10.9.z https://github.com/jellyfin/jellyfin-web.git
git clone -b release-10.10.z https://github.com/jellyfin/jellyfin-web.git
```
> Replace `release-10.9.z` with the name of the branch you want to build.
> Replace `release-10.10.z` with the name of the branch you want to build.

> You can also use `git checkout` to switch branches.
5. Clone or download Jellyfin Tizen (this) repository.
Expand All @@ -40,14 +40,12 @@ _Also look [Wiki](https://github.com/jellyfin/jellyfin-tizen/wiki)._

```sh
cd jellyfin-web
SKIP_PREPARE=1 npm ci --no-audit
npm ci --no-audit
USE_SYSTEM_FONTS=1 npm run build:production
```

> You should get `jellyfin-web/dist/` directory.

> `SKIP_PREPARE=1` can be omitted for 10.9+.

> `USE_SYSTEM_FONTS=1` is required to discard unused fonts and to reduce the size of the app. (Since Jellyfin Web 10.9)

> Use `npm run build:development` if you want to debug the app.
Expand Down Expand Up @@ -75,7 +73,7 @@ If any changes are made to `jellyfin-web/dist/`, the `jellyfin-tizen/www/` direc
> Make sure you select the appropriate Certificate Profile in Tizen Certificate Manager. This determines which devices you can install the widget on.

```sh
tizen build-web -e ".*" -e gulpfile.js -e README.md -e "node_modules/*" -e "package*.json" -e "yarn.lock"
tizen build-web -e ".*" -e gulpfile.babel.js -e README.md -e "node_modules/*" -e "package*.json" -e "yarn.lock"
tizen package -t wgt -o . -- .buildResult
```

Expand Down