Skip to content

Commit

Permalink
Add arm64 for skiko
Browse files Browse the repository at this point in the history
  • Loading branch information
serivesmejia committed Oct 19, 2024
1 parent 199cecc commit 5ca693d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ class EOCVSim(val params: Parameters = Parameters()) {
* Checks if the simulator is currently recording
* @return true if the simulator is currently recording, false otherwise
*/
fun isCurrentlyRecording() = currentRecordingSession?.isRecording ?: false
fun isCurrentlyRecording() = currentRecordingSession?.isRecording == true

/**
* Updates the visualizer title message
Expand Down
1 change: 1 addition & 0 deletions Vision/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ dependencies {

implementation("org.jetbrains.skiko:skiko-awt-runtime-windows-x64:$skiko_version")
implementation("org.jetbrains.skiko:skiko-awt-runtime-linux-x64:$skiko_version")
implementation("org.jetbrains.skiko:skiko-awt-runtime-linux-arm64:$skiko_version")
implementation("org.jetbrains.skiko:skiko-awt-runtime-macos-x64:$skiko_version")
implementation("org.jetbrains.skiko:skiko-awt-runtime-macos-arm64:$skiko_version")
}
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ plugins {

allprojects {
group 'com.github.deltacv'
version '3.7.1'
version '4.0.0'

apply plugin: 'java'

Expand Down

0 comments on commit 5ca693d

Please sign in to comment.