A modern web client for Jellyfin based on Vue
Go to file
2021-01-23 12:02:43 +01:00
.ci build(docker): add docker image files for deployment 2021-01-23 12:02:43 +01:00
.devcontainer fix(devcontainer): move to suggested extensions, switch default shell to zsh 2020-09-03 18:13:14 +00:00
.docker build(docker): add docker image files for deployment 2021-01-23 12:02:43 +01:00
.github ci(github): remove codecov fail if error 2020-12-25 23:54:06 +01:00
.run feat(.run): add WebStorm run configurations 2020-09-02 22:30:42 +02:00
.vscode fix(settings): make everything translatable 2020-12-17 12:21:32 +01:00
assets fix: reset playback before starting a new one and transitions to logs & activity 2021-01-17 19:19:33 +01:00
components fix(player-manager): fix SSR issue with supported features 2021-01-19 03:11:35 +01:00
layouts feat(music): create full screen music player 2021-01-14 13:20:33 +01:00
locales Translated using Weblate (French) 2021-01-17 15:51:57 -05:00
middleware style(lint): add JSDoc rule for requiring hyphen before params 2021-01-05 19:57:39 +00:00
mixins test(formshelper): add tests for forms helper 2021-01-14 16:35:18 +00:00
pages fix: reset playback before starting a new one and transitions to logs & activity 2021-01-17 19:19:33 +01:00
plugins fix(nuxt): set appInitPlugin to client-side to fix server select in SSR 2021-01-19 06:04:43 +01:00
schemes feat(jellyfinscheme): clear all stores at logout 2021-01-14 16:44:20 +01:00
static feat: add initial Nuxt template 2020-09-02 20:48:53 +02:00
store fix(playbackmanager): remove hack for keeping status as playing 2021-01-18 11:47:35 +01:00
utils fix(video profiles): fix sending a webM file containing h264 (fixes #586) 2021-01-17 15:41:11 +00:00
.babelrc feat: add initial Nuxt template 2020-09-02 20:48:53 +02:00
.dockerignore build(dockerfile): use SSR version in dockerfile 2021-01-19 04:34:04 +01:00
.editorconfig feat: add initial Nuxt template 2020-09-02 20:48:53 +02:00
.eslintignore build(eslint): add more files to eslintignore 2020-09-04 17:23:18 +02:00
.eslintrc.js style(lint): add JSDoc rule for requiring hyphen before params 2021-01-05 19:57:39 +00:00
.gitattributes chore(git): add merge attributes for locale files 2020-11-17 19:11:40 +01:00
.gitignore feat: add initial Nuxt template 2020-09-02 20:48:53 +02:00
.prettierrc feat: add initial Nuxt template 2020-09-02 20:48:53 +02:00
.yarnclean chore(yarnclean): fix aggressive resource removal breaking Nuxt loading page 2021-01-19 05:39:07 +01:00
commitlint.config.js feat: add initial Nuxt template 2020-09-02 20:48:53 +02:00
CONTRIBUTING.md chore: improve readme and add contributing guide 2020-10-20 19:57:43 +02:00
Dockerfile build(docker): add docker image files for deployment 2021-01-23 12:02:43 +01:00
Dockerfile.static build(docker): add docker image files for deployment 2021-01-23 12:02:43 +01:00
jest.config.js test(settings page): add tests for settings page 2021-01-13 00:01:06 +00:00
jest.setup.ts test(settings page): add tests for settings page 2021-01-13 00:01:06 +00:00
LICENSE feat: add initial Nuxt template 2020-09-02 20:48:53 +02:00
nuxt-i18n.d.ts refactor: override typings for $t and remove string casting 2021-01-02 15:55:37 +01:00
nuxt.config.ts fix(nuxt): set appInitPlugin to client-side to fix server select in SSR 2021-01-19 06:04:43 +01:00
package.json build: add SSR production build command 2021-01-19 03:04:48 +01:00
README.md docs(readme): correct start:ssr command 2021-01-19 03:27:14 +01:00
stylelint.config.js feat(dark-theme): add dark theme colors 2021-01-09 11:36:43 +01:00
tsconfig.json build(tsconfig): add MediaSession API typings 2021-01-17 06:21:16 +01:00
vue-shims.d.ts refactor(login): move requests from login and server form to vuex 2020-11-29 20:59:10 +01:00
yarn.lock Merge pull request #594 from jellyfin/dependabot/npm_and_yarn/eslint-plugin-jsdoc-31.0.6 2021-01-18 08:25:46 +01:00

Jellyfin Vue

Part of the Jellyfin Project


Logo Banner

GPL 3.0 License Current Release Commitizen friendly
Donate Feature Requests Discuss on our Forum Chat on Matrix Join our Subreddit

This is an experimental web client for Jellyfin based on Vue.js. 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.

Requirements

This project uses Yarn as a package manager.

Contributing

We provide a devcontainer to help you setup your environment.

The project also contains recommended extensions for Visual Studio Code, which will help you with syntax style and development.

Finally, we provide useful pre-commit hooks via Husky, as well as Comitizen integration, in order to help you respect the style and naming conventions used throughout this project.

For more information about how to contribute to this project, see CONTRIBUTING.md

Pre-requirements

Jellyfin >=10.7.0

Build Process

# install dependencies
$ yarn install

# serve with hot reload at localhost:3000
$ yarn dev

# server with hot reload and server-side rendering at localhost:3000
$ yarn dev:ssr

# build for production and launch server
# you will need a web server to host the client
$ yarn build

# build for production with server-side rendering and launch server
$ yarn build:ssr
$ yarn start:ssr