A modern web client for Jellyfin based on Vue
Go to file
2020-12-16 19:46:06 +01:00
.ci build(actions): move lint to Github Actions 2020-11-27 12:23:06 +01:00
.devcontainer fix(devcontainer): move to suggested extensions, switch default shell to zsh 2020-09-03 18:13:14 +00:00
.docker fix(dockerfile): switch to nuxt build, nginx: enable compression, define MIME types, fix routing 2020-10-08 15:59:10 +00:00
.github fix(deps): bump actions/setup-node from v2.1.2 to v2.1.3 2020-12-11 00:11:09 +00:00
.run feat(.run): add WebStorm run configurations 2020-09-02 22:30:42 +02:00
.vscode fix(vscode): prevent i18n ally from inserting empty keys 2020-12-01 06:33:14 +01:00
assets feat(transitions): add nuxt transitions 2020-12-07 11:37:01 +01:00
components refactor(imagehelper): address review comments 2020-12-15 11:14:08 +01:00
layouts fix(default layout): fix duplicate keys in default layout 2020-12-05 20:45:26 +00:00
locales Translated using Weblate (Spanish) 2020-12-14 16:46:06 -05:00
middleware feat(login): add public users 2020-12-01 20:40:48 +01:00
mixins refactor(imagehelper): fix jsdoc 2020-12-16 19:46:06 +01:00
pages Merge 'master' into 'refactor-img-mixin' 2020-12-15 00:53:41 +01:00
plugins Merge branch 'master' into blurhash-workers 2020-12-10 22:20:13 +00:00
schemes refactor: fix imports for the API 2020-12-09 19:37:25 +01:00
static feat: add initial Nuxt template 2020-09-02 20:48:53 +02:00
store docs(tvshows store): add comments 2020-12-13 15:12:22 +00:00
utils refactor: fix imports for the API 2020-12-09 19:37:25 +01:00
.babelrc feat: add initial Nuxt template 2020-09-02 20:48:53 +02:00
.dockerignore ci(fix): use build artifacts to speed up image generation 2020-10-15 18:41:24 +00: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(all): fix issues with updated linting config 2020-11-14 19:44:35 +01: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
auth-fix.d.ts fix(tests): fix the tests failing 2020-11-09 16:56:03 +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 ci(fix): use build artifacts to speed up image generation 2020-10-15 18:41:24 +00:00
Dockerfile.dev ci(fix): use build artifacts to speed up image generation 2020-10-15 18:41:24 +00:00
jest.config.js ci: add tests and coverage reporting 2020-10-01 10:39:03 +02:00
LICENSE feat: add initial Nuxt template 2020-09-02 20:48:53 +02:00
nuxt.config.ts Merge pull request #344 from bbogdanov/move/home-section-vuex 2020-12-12 16:58:36 +01:00
package.json Merge pull request #384 from jellyfin/dependabot/npm_and_yarn/husky-4.3.6 2020-12-14 21:54:57 +01:00
README.md fix(login): show correct error message 2020-11-27 23:44:55 +02:00
stylelint.config.js perf(blurhash): move worker code to comlink and address review suggestions 2020-12-09 17:25:17 +01:00
tsconfig.json refactor(login): use custom nuxt auth scheme to handle login 2020-11-09 16:56:03 +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 #384 from jellyfin/dependabot/npm_and_yarn/husky-4.3.6 2020-12-14 21:54:57 +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

# build for production and launch server
$ yarn build
$ yarn start

# generate static project
$ yarn generate