This commit is contained in:
2025-08-14 15:24:13 +02:00
parent c2bb4007ae
commit 78fcef565e
5 changed files with 107 additions and 2 deletions
+2
View File
@@ -1,5 +1,7 @@
description = 'screenpanel-sls'
ext.mainClass = hasProperty('mainClass') ? mainClass : 'ScreenPanelSLS'
ext.title = 'ScreenPanel'
ext.desc = 'ScreenPanel customization for SLS cameras'
dependencies {
implementation 'ch.psi:workbench:' + version
+2
View File
@@ -1 +1,3 @@
action.custom-1=rpm
action.custom-1.args=--configure-on-demand -w -x check -x test rpm
action.debug.args=debug --args="-b -d -l -k -n -q -console_log=SEVERE -buffer_size=10 -size=1000x800 -p ScreenPanelSLS -laf=dark -pipeline_server localhost:8889 -camera_server localhost:8888"
+7
View File
@@ -0,0 +1,7 @@
#!/bin/sh
APP_ARGS_NAME=\$(echo "APP_${app_name}" | tr '[:lower:]' '[:upper:]')_ARGS
APP_ARGS_NAME=\${APP_ARGS_NAME//-/_}
# Run the JAR with all passed arguments
#exec pshell-workbench -b -d -l -k -n -q -console_log=SEVERE -buffer_size=10 -size=1000x800 -p ${java_file} \${!APP_ARGS_NAME} "\$@"
exec pshell-workbench -b -d -l -k -n -q -console_log=SEVERE -size=1000x800 -p ${java_file} \${!APP_ARGS_NAME} "\$@"