Compare commits

...

11 commits

Author SHA1 Message Date
Jarek Sacha
d6d8daca7b Update dependencies 2024-09-17 18:42:27 -04:00
Jarek Sacha
bbff825c9b Merge branch 'local/scala-native-0.5.0' 2023-09-26 21:53:31 -04:00
Jarek Sacha
6998af7cec Bump scalatest to 3.2.17 2023-09-26 21:29:04 -04:00
Jarek Sacha
1e3797fe19 Bump Scala to 3.3.1 2023-09-26 21:28:32 -04:00
Jarek Sacha
1003fd308d Bump ScalaFMT to 3.7.14 2023-09-26 21:27:45 -04:00
Jarek Sacha
e07360ec65 Update scala-native to 0.4.15 2023-09-26 21:27:14 -04:00
Jarek Sacha
abcc138ea0 Bump SBT to 1.9.6 2023-09-26 21:26:26 -04:00
Jarek Sacha
0ca11d6645
Add troubleshooting hints for macOS 2023-09-25 23:27:02 -04:00
Jarek Sacha
c8dec57570
Bump SBT to 1.9.4 2023-08-25 23:12:12 -04:00
Jarek Sacha
79ecae6091 Mark next development version: 0.2.0.1-SNAPSHOT 2023-08-20 22:05:35 -04:00
Jarek Sacha
c2043dc24c Merge branch 'release' 2023-08-20 22:03:21 -04:00
7 changed files with 23 additions and 8 deletions

View file

@ -1,4 +1,4 @@
version = 3.7.12
version = 3.8.3
runner.dialect = scala3

View file

@ -130,6 +130,20 @@ Copy `ImageJ-macosx` to the `Contents/MacOS` folder, replacing `ImageJ-macosx` t
At this point you can move the `Fiji.app` folder to the Applications folder and use is as a regular msOS application.
**9. Troubleshooting**
When you attempt to run Fiji with the new Launcher you may get a warning dialog
![macOS_warning_dialog_01.png](assets%2FmacOS_warning_dialog_01.png)
Possible work-around
1. Delete `Fuji.app` folder
2. Uncompressed `fiji-nojre.zip` to recreate `Fuji.app` folder, but do not make any changes to it yet. You may need to do it is different folder than before.
3. Control-clock on `Fuji.app` and select "Open". You will see dialog saying
"macOS cannot verify the developer of “Fiji”. Are you sure you want to open it?"
4. Click on "Open". You will see Fiji logo, but the application will close since it is not setup yet
5. Now you can repeat steps "3. Create place for Java (JRE)" to "7. Add to Fiji.app" above
If you have problems installing, please report in [Discussions] or [Image.sc Forum]
### Installing Fiji on Windows x64

Binary file not shown.

After

Width:  |  Height:  |  Size: 215 KiB

View file

@ -1,6 +1,6 @@
scalaVersion := "3.3.0"
scalaVersion := "3.3.3"
//name := "IJP-ImageJ-Launcher"
version := "0.2.0"
version := "0.2.0.1-SNAPSHOT"
versionScheme := Some("early-semver")
organization := "net.sf.ij-plugins"
homepage := Some(new URI("https://github.com/ij-plugins/ijp-imagej-launcher").toURL)
@ -17,8 +17,8 @@ logLevel := Level.Info
libraryDependencies ++= Seq(
"com.github.scopt" %%% "scopt" % "4.1.0",
"com.lihaoyi" %%% "os-lib" % "0.9.1",
"org.scalatest" %%% "scalatest" % "3.2.16" % Test
"com.lihaoyi" %%% "os-lib" % "0.9.3",
"org.scalatest" %%% "scalatest" % "3.2.18" % Test
)
scalacOptions ++= Seq(

View file

@ -3,4 +3,4 @@
# Author's e-mail: jpsacha at gmail.com
#
sbt.version = 1.9.3
sbt.version = 1.10.2

View file

@ -1,2 +1,2 @@
// https://github.com/sbt/sbt-buildinfo
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.12.0")

View file

@ -1,2 +1,3 @@
// https://github.com/scala-native/scala-native
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.14")
resolvers ++= Resolver.sonatypeOssRepos("snapshots")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.17")