Skip to content

Commit

Permalink
Update: [Client/Server] 開発バージョンを 0.10.0-dev に変更
Browse files Browse the repository at this point in the history
  • Loading branch information
tsukumijima committed Nov 15, 2023
1 parent 76d3dd4 commit 35daafb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

# --------------------------------------------------------------------------------------------------------------
# クライアントをビルドするステージ
Expand Down
2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
@@ -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\"",
Expand Down
2 changes: 1 addition & 1 deletion server/app/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


# バージョン
VERSION = '0.9.0'
VERSION = '0.10.0-dev'

# ベースディレクトリ
BASE_DIR = Path(__file__).resolve().parent.parent
Expand Down
2 changes: 1 addition & 1 deletion server/pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
# ref: https://github.com/python-poetry/poetry/issues/1537#issuecomment-1154642727
Expand Down

0 comments on commit 35daafb

Please sign in to comment.