Skip to content

Commit

Permalink
v.0.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
ekatrukha committed Nov 19, 2020
1 parent f7cd49b commit 695e659
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 6 deletions.
Binary file removed PTU_Reader_0.0.8_.jar
Binary file not shown.
Binary file added PTU_Reader_0.0.9_.jar
Binary file not shown.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ You can restrict the interval of loaded data by selecting "*Load only frame rang
Send me example of your file by email, describe the problem and I'll try to incorporate it to the plugin.

## Updates history
v.0.0.9 (2020.11) Thanks to Robert Hauschild feedback, corrected PT3 file format reading issues (actually it was diabled before). Added version number to the plugin menu, next to its name.

v.0.0.8 (2020.09) Thanks to Emma Wilson feedback, corrected some HydraHarp/TimeHarp260 T3 file format issues. Corrected channel names in the exported stack.

v.0.0.7 (2019.02) Thanks to Marco Dalla Vecchia feedback, now HydraHarp/TimeHarp260 T3 file format is supported. Plus plugin works correctly with multi-channel FLIM data. The error of dtime=0 is fixed. Added progress bar for initial data assessment.
Expand Down
Binary file modified bin/PTU_Reader_.class
Binary file not shown.
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<property name="src" location="src" />
<property name="build" location="bin" />
<property name="dist" location="dist" />
<property name="version" value="0.0.8" />
<property name="version" value="0.0.9" />
<property name="pluginsDir" location="$basedir/../../IJ/plugins/" />

<property name="user.name" value="Yevhen Katrukha" />
Expand Down
11 changes: 6 additions & 5 deletions src/PTU_Reader_.java
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@ public void run(String arg) {
System.out.println("Buffer limit: " + bBuff.limit());

//READING HEADER
IJ.log("PTU_Reader v.0.0.8");
stringInfo.append("PTU_Reader v.0.0.8\n");
IJ.log("PTU_Reader v.0.0.9");
stringInfo.append("PTU_Reader v.0.0.9\n");

IJ.showStatus("Reading header info...");
//ptu format
Expand All @@ -218,6 +218,7 @@ public void run(String arg) {
{
if (!readPT3Header())
return;
nRecordType=rtPicoHarpT3;
}

//store info
Expand Down Expand Up @@ -340,8 +341,8 @@ public void run(String arg) {
syncCountPerLine/=nLines; // Get the average sync signals per line in the recorded data
if(!bFrameMarkerPresent)
frameNb=(int)Math.ceil((double)nLines/(double)PixY)+1;
else
frameNb++;
//else
//frameNb++;



Expand Down Expand Up @@ -1114,7 +1115,7 @@ boolean readPTUHeader()
}
else
{
IJ.error("So far in v.0.0.7 only PicoHarp and HydraHarp are supported (and your file has different record type).\n Send example of PTU file to katpyxa@gmail.com");
IJ.error("So far in v.0.0.9 only PicoHarp and HydraHarp are supported (and your file has different record type).\n Send example of PTU file to katpyxa@gmail.com");
return false;
}
}
Expand Down
1 change: 1 addition & 0 deletions src/plugins.config
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Plugins, "PTU Reader v0.0.9", PTU_Reader_

0 comments on commit 695e659

Please sign in to comment.