Skip to content

Commit 9905cbd

Browse files
committed
2.4
BioConsole now works on Mac.
1 parent af9a908 commit 9905cbd

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

BioGTK.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@
44
<TargetFramework>net6.0</TargetFramework>
55
<OutputType>Library</OutputType>
66
<RuntimeIdentifiers>osx-x64;linux-x64;win7-x64;linux-arm64</RuntimeIdentifiers>
7-
<AssemblyVersion>2.3.0</AssemblyVersion>
8-
<FileVersion>2.3.0</FileVersion>
7+
<AssemblyVersion>2.4.0</AssemblyVersion>
8+
<FileVersion>2.4.0</FileVersion>
99
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
1010
<PackageId>BioGTK</PackageId>
1111
<Title>BioGTK</Title>
1212
<PackageProjectUrl>https://github.com/BiologyTools/BioGTK</PackageProjectUrl>
1313
<PackageIcon>banner.jpg</PackageIcon>
1414
<PackageReadmeFile>README.md</PackageReadmeFile>
15-
<PackageVersion>2.3.0</PackageVersion>
15+
<PackageVersion>2.4.0</PackageVersion>
1616
<RepositoryUrl>https://github.com/BiologyTools/BioGTK</RepositoryUrl>
1717
<PackageTags>Biology; GTK; ImageJ; Bio-Formats; Image-Stacks; Microscopy;</PackageTags>
1818
<PackageLicenseExpression> GPL-3.0-only</PackageLicenseExpression>
1919
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
2020
<Description>A .NET application &amp; library for editing &amp; annotating various microscopy image formats. Supports all bioformats supported images. Integrates with ImageJ, running ImageJ filters &amp; macro functions. Supports Windows, Linux and Mac.</Description>
21-
<Version>2.3.0</Version>
21+
<Version>2.4.0</Version>
2222
<Platforms>AnyCPU;x64;ARM64</Platforms>
2323
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
2424
<PlatformTarget>x64</PlatformTarget>

Source/ImageJ.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ public static void RunOnImage(string con, int index, bool headless, bool onTab,
143143
RunString(st, dir + "/" + ImageView.SelectedImage.ID, headless);
144144
if (!File.Exists(file))
145145
return;
146-
//If not in images we add it to a new tab.
146+
147147
string s = filename;
148148
if (bioformats)
149149
s += "-temp.ome.tif";
@@ -154,7 +154,7 @@ public static void RunOnImage(string con, int index, bool headless, bool onTab,
154154
string fn = filename + ".tif";
155155
if (bioformats)
156156
fn = filename + ".ome.tif";
157-
157+
//If not in images we add it to a new tab.
158158
if (Images.GetImage(fn) == null)
159159
{
160160
BioImage bm = BioImage.OpenFile(f, index, false, false);
@@ -175,7 +175,7 @@ public static void RunOnImage(string con, int index, bool headless, bool onTab,
175175
//If using bioformats we delete the temp file.
176176
if(bioformats)
177177
File.Delete(f);
178-
// update progress bar on main UI thread
178+
// update image on main UI thread
179179
Application.Invoke(delegate
180180
{
181181
App.viewer.UpdateImage();

0 commit comments

Comments
 (0)