Skip to content

Commit

Permalink
omero/websocket support, image provider illegal argument exception fi…
Browse files Browse the repository at this point in the history
…x, class admin scrollbars
  • Loading branch information
mstritt committed Jun 9, 2020
1 parent 3f99b3c commit 53e25de
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 14 deletions.
20 changes: 11 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,8 @@ configurations {

dependencies {
implementation 'com.actelion.research:lib-orbit-common:1.2.12'
implementation ('com.actelion.research:image-provider-omero:1.7.2') {
because('Version 1.7.1 supports Omero 5.6.x')
implementation ('com.actelion.research:image-provider-omero:1.7.3') {
because('Version 1.7.3 supports Omero 5.6.x with Websockets')
// exclude (group:'com.amazonaws', module: 'aws-java-sdk-core')
// exclude (group:'com.amazonaws', module: 'aws-java-sdk-s3')
// exclude (group:'com.amazonaws', module: 'aws-java-sdk-kms')
Expand Down Expand Up @@ -287,12 +287,14 @@ dependencies {
* parameters like inputDirectory were initialized at the wrong time.
*/
task generateIcons {
ignite {
inputDirectory = file('src/main/resources/resource/svg')
outputDirectory = file('src/main/java/com/actelion/research/orbit/imageAnalysis/components/icons')
outputLanguage = 'java'
outputPackageName = 'com.actelion.research.orbit.imageAnalysis.components.icons'
useResizableTemplate = true
transcode()
doLast {
ignite {
inputDirectory = file('src/main/resources/resource/svg')
outputDirectory = file('src/main/java/com/actelion/research/orbit/imageAnalysis/components/icons')
outputLanguage = 'java'
outputPackageName = 'com.actelion.research.orbit.imageAnalysis.components.icons'
useResizableTemplate = true
transcode()
}
}
}
1 change: 1 addition & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
### A versatile image analysis software for biological image-based quantification.

##### News:
* 3.64: "illegal argument" constructor initialization bugfix, support for Omero/websockets, added scrollbars for class admin frame
* 3.63: bugfix for Orbit not starting up if OmeroOrbit.properties.template was not existing in home directory
* 3.62: using image-provider-omero:1.7.2 for Omero 5.6.x, new keyboard shortcuts, bugfixes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ private void initialize() {
}
setResizable(false);
setSize(new Dimension(frameWidth, frameHeight));
setLayout(new GridLayout(1, 3, 10, 10));
//setLayout(new GridLayout(1, 3, 10, 10));

// class attributes panel
JPanel p = getPanelClassAttributes();
Expand Down Expand Up @@ -132,11 +132,18 @@ private void initialize() {
btnOK.setBounds(10, 500, (int) btnOK.getBounds().getWidth(), (int) btnOK.getBounds().getHeight());
JPanel spacer = new JPanel();
setCompBounds(spacer, 500);
p.add(spacer);
//p.add(spacer);
p.add(btnOK);

add(getClassScrollPane());
add(p);
JPanel panel = new JPanel();
panel.setPreferredSize(new Dimension(frameWidth, frameHeight*2));

panel.setLayout(new GridLayout(1, 3, 10, 10));
panel.add(getClassScrollPane());
panel.add(p);

JScrollPane scrollPane = new JScrollPane(panel,ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED, ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
add(scrollPane);

addActionListeners();

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.63
3.64

0 comments on commit 53e25de

Please sign in to comment.