Skip to content

Commit

Permalink
v5.5.0
Browse files Browse the repository at this point in the history
Changelog:
    - Working on the new library types, "Others"
    - You can rescan all libraries from settings or the lib page
    - Filter added, you can select the movies genre, and order by alphabetic, rate, date in ascendant, or descendant way
  • Loading branch information
Impre-visible committed Jan 10, 2023
1 parent a35a705 commit 0172a7d
Show file tree
Hide file tree
Showing 33 changed files with 2,775 additions and 381 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ static/bios/*
!static/bios/readme.txt
.vscode/tasks.json
static/img/*
.venv
.venv
database.db-journal
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM python:3.10-slim-buster

RUN apt-get update && apt-get install -y ffmpeg && apt-get install -y git

COPY requirements.txt .
RUN pip install -r requirements.txt

COPY . /app

CMD ["python", "/app/app.py"]
25 changes: 17 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ This is what you have to do to get started with Chocolate :
* Go here: [https://www.myqnap.org/product/chocolate81/](https://www.myqnap.org/product/chocolate81/)
* Enjoy !

#### For Docker
* Clone the repository
* Execute `docker build -t chocolate .`
* When the build is finished, execute `docker run chocolate`
* Enjoy !

### Files organizations

#### For Movies :
Expand Down Expand Up @@ -167,6 +173,7 @@ Don't forget to give the project a star! Thanks again!
- [ ] Add support to trakt
- [ ] Use the GPU to encode videos if possible
- [ ] Change season with the buttons
- [ ] Add logs

### Work in progress
- [ ] Detect series intro and skip them
Expand Down Expand Up @@ -196,6 +203,8 @@ Don't forget to give the project a star! Thanks again!
- [X] Edit movie metadata directly on the website
- [X] Add a download button
- [X] Add TV with M3U playlist
- [X] Added new type of library, "other", for files that are not movies, series, games, tv
- [X] Add 2 buttons, one rescan the library, and the other one in the settings to rescan all the libraries

<!--LANGUAGES TO TRANSLATE -->
## Languages to translate
Expand All @@ -212,16 +221,16 @@ Don't forget to give the project a star! Thanks again!
- [X] BS: Bosnian
- [X] BG: Bulgarian
- [X] CA: Catalan
- [ ] NY: Chichewa
- [X] NY: Chichewa
- [X] CO: Corsican
- [X] HR: Croatian
- [ ] CS: Czech
- [ ] DA: Danish
- [ ] NL: Dutch
- [X] CS: Czech
- [X] DA: Danish
- [X] NL: Dutch
- [X] EN: English
- [ ] EO: Esperanto
- [ ] ET: Estonian
- [ ] FI: Finnish
- [X] EO: Esperanto
- [X] ET: Estonian
- [X] FI: Finnish
- [X] FR: French
- [ ] FY: Frisian
- [ ] GL: Galician
Expand Down Expand Up @@ -256,7 +265,7 @@ Don't forget to give the project a star! Thanks again!
- [ ] MS: Malay
- [ ] ML: Malayalam
- [ ] MT: Maltese
- [ ] ZH: Mandarin
- [X] ZH: Mandarin
- [ ] MI: Maori
- [ ] MR: Marathi
- [ ] MN: Mongolian
Expand Down
Loading

0 comments on commit 0172a7d

Please sign in to comment.