diff --git a/Dockerfile b/Dockerfile index 6e35b352..722a0134 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,11 +18,11 @@ RUN apt-get update && apt-get install -y --no-install-recommends aria2 ca-certif ## サードパーティーライブラリは変更が少ないので、先にダウンロード処理を実行してビルドキャッシュを効かせる WORKDIR / ## リリース版用 -RUN aria2c -x10 https://github.com/tsukumijima/KonomiTV/releases/download/v0.9.0/thirdparty-linux.tar.xz -RUN tar xvf thirdparty-linux.tar.xz +# RUN aria2c -x10 https://github.com/tsukumijima/KonomiTV/releases/download/v0.9.0/thirdparty-linux.tar.xz +# RUN tar xvf thirdparty-linux.tar.xz ## 開発版 (0.x.x-dev) 用 -# RUN aria2c -x10 https://nightly.link/tsukumijima/KonomiTV/actions/runs/6864782131/thirdparty-linux.tar.xz.zip -# RUN unzip thirdparty-linux.tar.xz.zip && tar xvf thirdparty-linux.tar.xz +RUN aria2c -x10 https://nightly.link/tsukumijima/KonomiTV/actions/runs/6868200670/thirdparty-linux.tar.xz.zip +RUN unzip thirdparty-linux.tar.xz.zip && tar xvf thirdparty-linux.tar.xz # -------------------------------------------------------------------------------------------------------------- # クライアントをビルドするステージ diff --git a/client/package.json b/client/package.json index 70f1e35c..71e40a49 100644 --- a/client/package.json +++ b/client/package.json @@ -1,6 +1,6 @@ { "name": "KonomiTV", - "version": "0.9.0", + "version": "0.10.0-dev", "private": true, "scripts": { "dev": "concurrently --raw \"npm:dev-https\" \"vue-cli-service serve\"", diff --git a/server/app/constants.py b/server/app/constants.py index d46e5e0e..653101f9 100644 --- a/server/app/constants.py +++ b/server/app/constants.py @@ -8,7 +8,7 @@ # バージョン -VERSION = '0.9.0' +VERSION = '0.10.0-dev' # ベースディレクトリ BASE_DIR = Path(__file__).resolve().parent.parent diff --git a/server/pyproject.toml b/server/pyproject.toml index 9086d7f7..54d04a86 100644 --- a/server/pyproject.toml +++ b/server/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "KonomiTV" -version = "0.9.0" +version = "0.10.0-dev" description = "KonomiTV: Kept Organized, Notably Optimized, Modern Interface TV media server" authors = ["tsukumi "] # ref: https://github.com/python-poetry/poetry/issues/1537#issuecomment-1154642727