Skip to content

Commit

Permalink
Changed YouSCope version for new release
Browse files Browse the repository at this point in the history
Changed position numbering in file names to be one based, consistent with the rest.
  • Loading branch information
langmo committed Jul 29, 2016
1 parent 9d6ca8a commit dbed311
Show file tree
Hide file tree
Showing 23 changed files with 4 additions and 23 deletions.

This file was deleted.

1 change: 0 additions & 1 deletion youscope-cell-detection/bin/.gitignore

This file was deleted.

Binary file modified youscope-common/bin/org/youscope/common/YouScopeVersion.class
Binary file not shown.
Expand Up @@ -52,7 +52,7 @@ public YouScopeVersion(String applicationName)
{
this.applicationName = applicationName;
String extractedMajorVersion = "2.0";
String extractedVersion = "R2016-04";
String extractedVersion = "R2016-05";
String extractedRevision = UNKNOWN;
boolean extractedCleanFlag = false;
final InputStream stream = YouScopeVersion.class.getResourceAsStream("/BUILD-" + applicationName + ".INFO");
Expand Down
Expand Up @@ -388,10 +388,10 @@ else if(loopNumbers[i] <= 9)
int[] positions = positionInformation.getPositions();
for(int i = 0; i < positions.length; i++)
{
if(positions[i] < 10)
string += "0" + Integer.toString(positions[i]);
if(positions[i] < 9)
string += "0" + Integer.toString(positions[i]+1);
else
string += Integer.toString(positions[i]);
string += Integer.toString(positions[i]+1);
}
info.add(new ReplaceInformation(PATTERN_IMAGE_POSITION, string, string.length()));

Expand Down
1 change: 0 additions & 1 deletion youscope-custom-microplates/bin/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion youscope-device-setting-manager/bin/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion youscope-documentation-converter/bin/.gitignore

This file was deleted.

File renamed without changes.
1 change: 0 additions & 1 deletion youscope-livestream/bin/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion youscope-measurement-viewer/bin/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion youscope-multi-camera-and-color-stream/bin/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion youscope-multi-color-stream/bin/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion youscope-nemesys/bin/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion youscope-open-house/bin/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion youscope-open-measurement-folder/bin/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion youscope-openbis/bin/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion youscope-position-control/bin/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion youscope-repeat-job/bin/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion youscope-scripting/bin/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion youscope-server/bin/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion youscope-starter/bin/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion youscope-youpong/bin/.gitignore

This file was deleted.

0 comments on commit dbed311

Please sign in to comment.