Skip to content

Commit

Permalink
Update to v1.0.4;
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasSchaub committed Oct 4, 2022
1 parent 36096ad commit 030000f
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 10 deletions.
5 changes: 2 additions & 3 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cff-version: 1.2.0
title: MORTAR
version: 1.0.3.0
version: 1.0.4.0
message: "If you use this software, please cite it as below."
type: software
authors:
Expand All @@ -25,7 +25,6 @@ authors:
- family-names: "Zielesny"
given-names: "Achim"
orcid: "https://orcid.org/0000-0003-0722-4229"
doi: "https://doi.org/10.5281/zenodo.7035389"
date-released: 2022-08-30
date-released: 2022-10-04
url: "https://github.com/FelixBaensch/MORTAR"
license: GPL-3.0
2 changes: 1 addition & 1 deletion Distributions/distributions.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## MORTAR distributions
Due to the file size limit of GitHub, we could not deposit the distribution files of MORTAR in this folder as well,
as we originally planned. You can find the distributions of MORTAR's latest version attached to the release marked here
on GitHub: [https://github.com/FelixBaensch/MORTAR/releases/tag/v1.0.3.0](https://github.com/FelixBaensch/MORTAR/releases/tag/v1.0.3.0)
on GitHub: [https://github.com/FelixBaensch/MORTAR/releases/tag/v1.0.4.0](https://github.com/FelixBaensch/MORTAR/releases/tag/v1.0.4.0)
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ also attached to the marked releases.<br>
executable, start, and follow the instructions to install MORTAR. Note that the installation includes a full
Java Runtime Environment (JRE). After installation, create a shortcut to an appropriate MORTAR start batch file on your
Windows desktop. E.g. for MORTAR to use up to 4 gigabyte of RAM, copy a shortcut to batch file "MORTAR.bat" which is
located in the MORTAR program folder (default "C:\Program Files\MORTAR\MORTARv1.0.3.0\bin" or the path specified at
located in the MORTAR program folder (default "C:\Program Files\MORTAR\MORTARv1.0.4.0\bin" or the path specified at
installation). To start MORTAR, double click the created shortcut. MORTAR can be uninstalled by the provided
Uninstall.exe executable in the MORTAR program folder or standard Windows functions.
<br>As an alternative to "MORTAR.bat", there is also the "MORTAR_20GB.bat" batch file available that allocates up to
Expand All @@ -62,17 +62,17 @@ with your chosen initially allocated memory (-Xms) and maximum value (-Xmx) acco
described below. As an alternative way, they should also work on Windows.
</p>

<p><b>Linux and macOS:</b> The "distribution" folder contains the executable Java ARchive (JAR) "MORTAR-fat-1.0.3.0.jar"
<p><b>Linux and macOS:</b> The "distribution" folder contains the executable Java ARchive (JAR) "MORTAR-fat-1.0.4.0.jar"
which contains the packaged MORTAR code together with all dependencies. To run MORTAR (with up to 4 GB of RAM available, e.g.),
execute the JAR from the command-line using</p>

<p><code>java -jar -Xms512m -Xmx4g [path to]MORTAR-fat-1.0.3.0.jar</code></p>
<p><code>java -jar -Xms512m -Xmx4g [path to]MORTAR-fat-1.0.4.0.jar</code></p>

A JDK or JRE of version 17.0.4 or higher needs to be installed on your system and linked to the "java" command.
Otherwise, replace "java" with the path to the java command of your JDK or JRE.<br>

<p>Please note that MORTAR only supports x64 (on all three platforms) and AArch64 (on macOS and Linux) architectures in general.
For the latter, a special "fat JAR" named "MORTAR-fat-aarch64-1.0.3.0.jar" is available from the distributions and must be used.</p>
For the latter, a special "fat JAR" named "MORTAR-fat-aarch64-1.0.4.0.jar" is available from the distributions and must be used.</p>
Also note that using the Windows Subsystem for Linux (WSL) is not recommended, since a lot of additional configurations
have to be made there to run Java GUI applications.

Expand Down
Binary file modified Tutorial/MORTAR_Tutorial.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group 'de.unijena.cheminf'
version '1.0.3.0'
version '1.0.4.0'

sourceCompatibility = 1.17

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public final class BasicDefinitions {
/**
* Version of application
*/
public static final String MORTAR_VERSION = "1.0.3.0";
public static final String MORTAR_VERSION = "1.0.4.0";
//</editor-fold>
//
//<editor-fold desc="GitHub repository url">
Expand Down

0 comments on commit 030000f

Please sign in to comment.