Skip to content

Commit

Permalink
v. 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Buerki committed Sep 29, 2021
1 parent 2c74c34 commit 7311d0e
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
9 changes: 8 additions & 1 deletion README.md
Expand Up @@ -36,7 +36,14 @@ The WADP is cross-platform and tested under macOS (v. 11), Ubuntu Linux (v. 20.0
*******
INSTALLATION

**macOS:** use the double-clickable `macOS_installer` provided (give macOS the necessary permissions if prompted), or drop the `install.sh` script into a Terminal window to run it. An installation tutorial for macOS is available [on vimeo](https://vimeo.com/603176910).
**macOS:** use the double-clickable `macOS_installer` provided (give macOS the necessary permissions if prompted). If a message appears saying that it cannot be opened because it is from an unidentified developer, click OK and ctrl-click/right-click on the script `macOS_installer`, then choose 'open' from the menu that appears, then click 'Open'. A Terminal window will pop up. If it complains about 'permission denied', follow these steps:

- open a new tab in the Terminal window (press 'command-T' or choose Shell > New Tab)
- type `chmod +a ` followed by a space into the Terminal window
- drop the `install.sh` script (not `macOS_installer.command`) into the same Terminal window and press ENTER.
- now double-click on the `macOS_installer.command` script again and follow the instructions displayed.

An installation tutorial for macOS is available [on vimeo](https://vimeo.com/603176910).


**Windows:** The Windows Subsystem for Linux must be installed first (instructions [here](https://ubuntu.com/wsl)). Then use the double-clickable installer `Windows installer (WSL required)` provided. An WADP installation video tutorial for Windows is available [on vimeo](https://vimeo.com/603102292).
Expand Down
Binary file modified README.pdf
Binary file not shown.
6 changes: 3 additions & 3 deletions install.sh
Expand Up @@ -5,7 +5,7 @@ export PATH="$PATH:/usr/local/bin:/usr/bin:/bin" # needed for Cygwin
copyright='(c) 2015-2021 Cardiff University'
# licensed under the EUPL v1.2 or later.
# written by Andreas Buerki
version="0.7.6"
version="1.0.1"
####
## set installation variables
export title="WADP"
Expand Down Expand Up @@ -261,8 +261,8 @@ StartupNotify=false" > "$HOME/Desktop/WADP.desktop"
# create app on MacOS
#####################
elif [ "$DARWIN" ]; then
cp -r "$sourcedir/$osx_only" /Applications || sudo cp -r "$sourcedir/$osx_only" /Applications/WADP.command
cp -r "$sourcedir/$osx_only" "$(dirname "$sourcedir")/WADP.command"
cp -r "$sourcedir/$osx_only" /Applications/WADP.command || sudo cp -r "$sourcedir/$osx_only" /Applications/WADP.command
#cp -r "$sourcedir/$osx_only" "$(dirname "$sourcedir")/WADP.command"
echo "The application WADP was placed in your Applications folder."
read -t 10 -p 'Create icon on the desktop? (Y/n) ' d < /dev/tty
if [ "$d" == "y" ] || [ "$d" == "Y" ] || [ -z "$d" ]; then
Expand Down
Binary file modified manual_1.0.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion release_notes.txt
@@ -1,7 +1,7 @@
release notes v. 1.0.1
**********************

Added description of how to test installation to the README file and added goldstandard files to test_data directory.
Added description of how to test installation to the README file and added gold-standard files to test_data directory. A slight adjustment was made to the installation instructions and installer.sh relating to installation under macOS.


release notes v. 1.0
Expand Down

0 comments on commit 7311d0e

Please sign in to comment.