diff --git a/config/config.properties b/config/config.properties index ac85d48..46e2543 100644 --- a/config/config.properties +++ b/config/config.properties @@ -1,4 +1,4 @@ -#Wed Jul 30 15:53:51 CEST 2025 +#Wed Aug 13 10:30:52 CEST 2025 autoSaveScanData=true dataDepthDimension=0 dataFormat=h5 @@ -65,7 +65,7 @@ terminalPort=3579 userAuthenticator= userManagement=false versionTrackingEnabled=true -versionTrackingLogin={context}/pshell_user +versionTrackingLogin=auto versionTrackingManual=true versionTrackingRemote=https\://gitea.psi.ch/pshell_config/tst.git xscanAppendSuffix=true diff --git a/config/variables.properties b/config/variables.properties index 93c96a4..dde5e87 100644 --- a/config/variables.properties +++ b/config/variables.properties @@ -1,4 +1,4 @@ -#Fri Jul 18 09:21:13 CEST 2025 -DaySequentialNumber=2 -FileSequentialNumber=468 -LastRunDate=250718 +#Mon Aug 04 10:16:18 CEST 2025 +DaySequentialNumber=1 +FileSequentialNumber=472 +LastRunDate=250804 diff --git a/plugins/GGG.form b/plugins/GGG.form new file mode 100644 index 0000000..ff9cfab --- /dev/null +++ b/plugins/GGG.form @@ -0,0 +1,28 @@ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
diff --git a/plugins/GGG.java b/plugins/GGG.java new file mode 100644 index 0000000..4c58d41 --- /dev/null +++ b/plugins/GGG.java @@ -0,0 +1,65 @@ +import ch.psi.pshell.framework.Panel; +import ch.psi.pshell.utils.State; + +/** + * + */ +public class GGG extends Panel { + + public GGG() { + initComponents(); + } + + //Overridable callbacks + @Override + public void onInitialize(int runCount) { + + } + + @Override + public void onStateChange(State state, State former) { + + } + + @Override + public void onExecutedFile(String fileName, Object result) { + } + + @Override + protected void onTimer() { + } + + @Override + protected void onLoaded() { + + } + + @Override + protected void onUnloaded() { + + } + + //Invoked by 'update()' to update components in the event thread + @Override + protected void doUpdate() { + } + + @SuppressWarnings("unchecked") + // //GEN-BEGIN:initComponents + private void initComponents() { + + javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this); + this.setLayout(layout); + layout.setHorizontalGroup( + layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addGap(0, 449, Short.MAX_VALUE) + ); + layout.setVerticalGroup( + layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addGap(0, 137, Short.MAX_VALUE) + ); + }// //GEN-END:initComponents + + // Variables declaration - do not modify//GEN-BEGIN:variables + // End of variables declaration//GEN-END:variables +}