Skip to content

Commit

Permalink
release: v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Greatwallcorner committed Jul 7, 2024
1 parent aee71ed commit ff47467
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 5 deletions.
21 changes: 20 additions & 1 deletion .github/workflows/github-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,23 @@ jobs:
**/*.msi
tag_name: ${{env.tag}}
permissions:
contents: write
contents: write
sendMsg:
name: sendMsg
runs-on: ubuntu-latest
needs:
- release
steps:
- uses: colutius/Telegram-Msg@main
with:
token: ${{ secrets.TG_TOKEN }}
chatid: ${{ secrets.TG_GROUP_ID }}
message: |
👇新的版本👇
📦仓库: ${{ github.repository }}
button: true
button_name: 👀下载👀
button_url: https://github.com/${{ github.repository }}/releases/tag/${{env.tag}}
is_notify: true
is_preview: true
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# v1.2.0
- 新的内部播放器基于vlcj
- 细节优化/bug修复
- 修复图片加载卡顿的问题
- 设置页面优化
- 新增预发布渠道
# v1.1.22
- 标题tooltip/加载指示优
- fix bug #6
Expand Down
5 changes: 1 addition & 4 deletions composeApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ kotlin {
implementation(compose.materialIconsExtended)

api("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.3")
// api("org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion")

// // tool
api("com.google.guava:guava:31.1-jre")
Expand Down Expand Up @@ -67,7 +66,6 @@ kotlin {
implementation("io.ktor:ktor-server-swagger:$ktorVer")
implementation("io.ktor:ktor-client-core:$ktorVer")
implementation("io.ktor:ktor-client-okhttp:$ktorVer")
// implementation("io.ktor:ktor-server-call-logging:$ktorVer")

// log
implementation("ch.qos.logback:logback-classic:$logbackVer")
Expand All @@ -94,7 +92,6 @@ kotlin {
desktopMain.dependencies {
implementation(compose.desktop.currentOs)
implementation("app.cash.sqldelight:sqlite-driver:2.0.1")
// implementation("org.nanohttpd:nanohttpd:2.3.1")
// Player
implementation("uk.co.caprica:vlcj:4.8.2")
}
Expand All @@ -117,7 +114,7 @@ compose.desktop {
nativeDistributions {
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
packageName = "TV"
packageVersion = "1.1.22"
packageVersion = "1.2.1"
vendor = "TV Multiplatform"

modules(
Expand Down

0 comments on commit ff47467

Please sign in to comment.