Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
ShirasawaSama committed Dec 13, 2023
1 parent 8cecb31 commit 7c985d0
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: daw/build/libs/daw.jar
asset_name: EchoInMirror-win64.jar
tag: ${{ github.ref }}
tag: ${{ github.event.release.tag_name }}

- name: Copy files
shell: bash
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: EchoInMirror.zip
asset_name: EchoInMirror-win64.zip
tag: ${{ github.ref }}
tag: ${{ github.event.release.tag_name }}

- name: Stop gradle
shell: bash
Expand Down
12 changes: 11 additions & 1 deletion native/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,17 @@ kotlin {
implementation("org.apache.commons:commons-lang3:${extra["eim.dependencies.commons.lang"]}")
implementation("org.slf4j:slf4j-api:${extra["eim.dependencies.slf4j"]}")
implementation("com.github.ShirasawaSama:JavaSharedMemory:0.2.0")
implementation("com.github.EchoInMirror:EIMTimeStretchers:0.1.3")
implementation("com.github.EchoInMirror.EIMTimeStretchers:common:0.2.0")

val os = org.gradle.nativeplatform.platform.internal.DefaultNativePlatform.getCurrentOperatingSystem()
implementation("com.github.EchoInMirror.EIMTimeStretchers:${
when {
os.isWindows -> "windows"
os.isLinux -> "linux"
os.isMacOsX -> "macos"
else -> "common" // Fall back to common
}
}:0.2.0")

compileOnly(compose.material3)
compileOnly(compose.materialIconsExtended)
Expand Down

0 comments on commit 7c985d0

Please sign in to comment.