Web Client for Jellyfin
Go to file
Vasily c23e301e32
Merge pull request #1146 from JustAMan/webos2-play
Fix some issues blocking WebOS 1.2 / 2.0
2020-04-30 12:13:42 +03:00
.ci remove indentation from ci file 2020-04-13 01:02:19 +09:00
.copr Add COPR makefile link 2020-03-24 01:45:32 -04:00
.github Add CODEOWNERS for GitHub 2020-03-24 01:22:43 -04:00
debian update links 2020-04-19 20:29:30 +09:00
deployment Update deployment/Dockerfile.fedora.all 2020-04-29 14:14:49 -04:00
fedora update links 2020-04-19 20:29:30 +09:00
scripts add a folder for useful scripts 2020-01-20 10:38:53 +09:00
src Merge pull request #1146 from JustAMan/webos2-play 2020-04-30 12:13:42 +03:00
.editorconfig Add JSON to EditorConfig 2020-04-25 14:05:29 +02:00
.eslintignore Update eslintignore 2020-04-25 14:05:01 +02:00
.eslintrc.js Add Autoprefixer 2020-04-25 14:47:20 +02:00
.gitattributes Add more filetypes to gitattributes 2020-04-25 15:02:42 +02:00
.gitignore Merge branch 'master' into improve-builds 2020-04-09 12:17:51 -04:00
.npmignore Azure pipelines (#470) 2019-09-19 14:35:30 -04:00
.stylelintrc Add missing final newlines 2020-02-22 11:47:03 -05:00
babel.config.json Babel query-string 2020-04-04 19:40:40 +03:00
build.sh Remove copy-pasta comments 2020-04-09 12:14:21 -04:00
build.yaml Add CentOS to build.yaml 2020-03-24 01:13:10 -04:00
bump_version Update bump_version 2020-04-25 22:15:38 -04:00
CONTRIBUTORS.md Fix details page ribbon position in TV layout 2020-02-15 22:34:10 +01:00
gulpfile.js restore gulpfile 2020-04-27 18:51:04 +03:00
LICENSE First separation commit. 2019-01-09 12:36:54 +01:00
package.json Merge pull request #1146 from JustAMan/webos2-play 2020-04-30 12:13:42 +03:00
postcss.config.js Add Autoprefixer 2020-04-25 14:47:20 +02:00
README.md update build process in readme 2020-03-17 01:27:14 +09:00
webpack.common.js Use development mode for dev server 2020-04-09 20:09:51 +02:00
webpack.dev.js Merge pull request #1146 from JustAMan/webos2-play 2020-04-30 12:13:42 +03:00
webpack.prod.js Merge pull request #1146 from JustAMan/webos2-play 2020-04-30 12:13:42 +03:00
yarn.lock Add Autoprefixer 2020-04-25 14:47:20 +02:00

Jellyfin Web

Part of the Jellyfin Project


Logo Banner

GPL 2.0 License Current Release Translation Status
Donate Feature Requests Discuss on our Forum Chat on Matrix Join our Subreddit

Jellyfin Web is the frontend used for most of the clients available for end users, such as desktop browsers, Android, and iOS. We welcome all contributions and pull requests! If you have a larger feature in mind please open an issue so we can discuss the implementation before you start. Translations can be improved very easily from our Weblate instance. Look through the following graphic to see if your native language could use some work!

Detailed Translation Status

Build Process

Dependencies

  • Yarn
  • Gulp-cli

Getting Started

  1. Clone or download this repository.

    git clone https://github.com/jellyfin/jellyfin-web.git
    cd jellyfin-web
    
  2. Install build dependencies in the project directory.

    yarn install
    
  3. Run the web client with webpack for local development.

    yarn serve
    
  4. Build the client with sourcemaps.

    yarn build:development
    

    You can build a nginx compatible version as well.

    yarn build:standalone