-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NEW New docker container. Containing all the tools. More info in the wiki page Better file manager for linux New GUI for tool selector New Settings file so specify library path and covers path (file selector opens in that location by default) Added Clear Queue button for WebpConverter Optimizations if no comicinfo is present it will be added and not backed up (faster) Skip restore if no Old_ComicInfo.xml.bak is present Changed All tests were reworked Centered Epub2cbz ui Reworked Cover Manager ui Fixed Metadata Manager was completely broken. WebpConverter Lot's of fixes
- Loading branch information
Showing
56 changed files
with
2,288 additions
and
2,796 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
name: Build Docker | ||
|
||
on: | ||
schedule: | ||
- cron: '41 11 * * 3' | ||
push: | ||
branches: [ main, develop, test ] | ||
env: | ||
IMAGE_NAME: "thepromidius/manga-manager" | ||
jobs: | ||
docker_dev: | ||
name: Nightly Build | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/develop' }} | ||
steps: | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
- name: Login to DockerHub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Build and push | ||
uses: docker/build-push-action@v3 | ||
with: | ||
push: true | ||
tags: ${{ env.IMAGE_NAME }}:nightly | ||
docker_stable: | ||
name: Stable Build | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} | ||
steps: | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
- name: Login to DockerHub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Build and push | ||
uses: docker/build-push-action@v3 | ||
with: | ||
push: true | ||
tags: ${{ env.IMAGE_NAME }}:latest | ||
docker_test: | ||
name: Test Build | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/test' }} | ||
steps: | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
- name: Login to DockerHub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Build and push | ||
uses: docker/build-push-action@v3 | ||
with: | ||
push: true | ||
tags: ${{ env.IMAGE_NAME }}:test | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,9 @@ | |
|
||
name: Python tests | ||
|
||
on: push | ||
|
||
on: | ||
- push | ||
- pull_request | ||
|
||
jobs: | ||
build: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,3 +20,4 @@ undo.json | |
/testing/ | ||
.pytest_cache | ||
*.log* | ||
/.idea/webResources.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
FROM ghcr.io/linuxserver/baseimage-rdesktop-web:jammy | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
ENV UID=1000 | ||
ENV GID=1000 | ||
ENV NO_UPDATE_NOTIFIER=true | ||
ENV GUIAUTOSTART=true | ||
|
||
WORKDIR /tmp | ||
COPY requirements.txt /tmp/ | ||
|
||
# Copy App | ||
COPY --chown=$UID:$GID [ "/MangaManager", "/app" ] | ||
|
||
# Setup Dependencies | ||
RUN apt-get update && \ | ||
apt-get install -y --no-install-recommends \ | ||
# Desktop Environment | ||
mousepad \ | ||
xfce4-terminal \ | ||
xfce4 \ | ||
xubuntu-default-settings \ | ||
xubuntu-icon-theme \ | ||
# Python | ||
python3-tk \ | ||
python3-pip && \ | ||
# Manga Manager Dependencies | ||
pip install -r requirements.txt && \ | ||
# Cleanup | ||
apt-get autoclean && \ | ||
rm -rf \ | ||
/var/lib/apt/lists/* \ | ||
/var/tmp/* \ | ||
/tmp/* && \ | ||
# Try making python3 callable by just running "python" on Ubuntu :) (optional) | ||
ln -s /usr/bin/python3 /usr/bin/python || true && \ | ||
chmod -R +x /app | ||
|
||
# Setup environment & branding/customization | ||
COPY /docker-root / | ||
RUN \ | ||
chmod -R +x /config/Desktop && \ | ||
chmod -R +x /config/.config/xfce4/panel | ||
|
||
|
||
WORKDIR /app | ||
|
||
EXPOSE 3000 | ||
VOLUME /manga | ||
VOLUME /covers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.