Skip to content

Commit

Permalink
Moving to v1.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
sjcross committed Oct 27, 2021
1 parent 4be0626 commit 0b03ab3
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 15 deletions.
12 changes: 6 additions & 6 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>VideoHandler</artifactId>
<groupId>wbif.sjx</groupId>
<version>1.0.9</version>
<version>1.0.10</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down Expand Up @@ -46,7 +46,7 @@
</dependency>

<!-- The following two dependencies are for debugging only (remove when packaging)-->
<!-- <dependency>
<dependency>
<groupId>org.bytedeco.javacpp-presets</groupId>
<artifactId>opencv</artifactId>
<version>4.0.1-1.4.4</version>
Expand All @@ -58,15 +58,15 @@
<artifactId>ffmpeg</artifactId>
<version>4.1-1.4.4</version>
<classifier>windows-x86_64</classifier>
</dependency> -->
</dependency>

<dependency>
<!-- <groupId>wbif.sjx</groupId>
<artifactId>MIA_</artifactId>
<version>0.18.0</version> -->
<groupId>com.github.SJCross</groupId>
<artifactId>ModularImageAnalysis</artifactId>
<version>0.18.0</version>
<groupId>com.github.mianalysis</groupId>
<artifactId>mia</artifactId>
<version>v0.18.15</version>
<scope>${scp}</scope>
</dependency>
</dependencies>
Expand Down
3 changes: 2 additions & 1 deletion core/src/main/java/wbif/sjx/VideoHandler/VideoLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
import wbif.sjx.MIA.Object.References.Collections.ParentChildRefCollection;
import wbif.sjx.MIA.Object.References.Collections.PartnerRefCollection;
import wbif.sjx.MIA.Object.Units.SpatialUnit;
import wbif.sjx.common.Object.Metadata;
import wbif.sjx.common.MetadataExtractors.Metadata;


public class VideoLoader extends Module {
public static final String LOADER_SEPARATOR = "Core video loading controls";
Expand Down
4 changes: 2 additions & 2 deletions core/src/main/java/wbif/sjx/VideoHandler/Video_Loader.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ public void run(String path) {
GenericDialog genericDialog = new GenericDialog("SVG dimensions");
genericDialog.addStringField("Frame range","1-end");
genericDialog.addStringField("Channel range","1-end");
genericDialog.addNumericField("X-axis scaling", 1.0);
genericDialog.addNumericField("Y-axis scaling", 1.0);
genericDialog.addNumericField("X-axis scaling", 1.0, 4);
genericDialog.addNumericField("Y-axis scaling", 1.0, 4);
genericDialog.showDialog();

if (genericDialog.wasCanceled()) return;
Expand Down
2 changes: 1 addition & 1 deletion linux32/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>VideoHandler</artifactId>
<groupId>wbif.sjx</groupId>
<version>1.0.9</version>
<version>1.0.10</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion linux64/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>VideoHandler</artifactId>
<groupId>wbif.sjx</groupId>
<version>1.0.9</version>
<version>1.0.10</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion mac64/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>VideoHandler</artifactId>
<groupId>wbif.sjx</groupId>
<version>1.0.9</version>
<version>1.0.10</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>wbif.sjx</groupId>
<artifactId>VideoHandler</artifactId>
<packaging>pom</packaging>
<version>1.0.9</version>
<version>1.0.10</version>
<name>VideoHandler</name>
<url>https://github.com/SJCross/VideoHandler</url>
<inceptionYear>2019</inceptionYear>
Expand Down
2 changes: 1 addition & 1 deletion win32/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>VideoHandler</artifactId>
<groupId>wbif.sjx</groupId>
<version>1.0.9</version>
<version>1.0.10</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion win64/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>VideoHandler</artifactId>
<groupId>wbif.sjx</groupId>
<version>1.0.9</version>
<version>1.0.10</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down

0 comments on commit 0b03ab3

Please sign in to comment.