Showing with 11 additions and 12 deletions.
  1. +1 −2 LICENSE
  2. +5 −5 README.md
  3. +5 −5 messages/install.md
3 changes: 1 addition & 2 deletions LICENSE
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2014-2015 GSD Lab, University of Waterloo, Canada, http://gsd.uwaterloo.ca
Copyright (c) 2014-2016 GSD Lab, University of Waterloo, Canada, http://gsd.uwaterloo.ca

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -19,4 +19,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

10 changes: 5 additions & 5 deletions README.md
@@ -1,11 +1,11 @@
Clafer Tools
=============

v0.4.3
v0.4.4

Integration of [Clafer Compiler and Instance Generators](http://clafer.org) into [Sublime Text 2/3](http://www.sublimetext.com/).

See release notes for [Clafer 0.4.3](http://www.clafer.org/2015/10/clafer-tools-042-released.html).
See release notes for [Clafer 0.4.4](http://www.clafer.org/2016/09/clafer-tools-044-released.html).

Contributors
------------
Expand Down Expand Up @@ -40,8 +40,8 @@ Installation
* on Mac, use the `merge` option not `replace`
3. Download the latest binary distribution of Clafer Tools
* [Clafer Tools](http://gsd.uwaterloo.ca/clafer-tools-binary-distributions)
* Unzip the contents of the folder `clafer-tools-0.4.3` into `Packages/Clafer-Bin`
* Make sure the folder structure is NOT `Packages/Clafer-Bin/clafer-tools-0.4.3`, that is, the contents of the folder `clafer-tools-0.4.3` are directly inside `Clafer-Bin`
* Unzip the contents of the folder `clafer-tools-0.4.4` into `Packages/Clafer-Bin`
* Make sure the folder structure is NOT `Packages/Clafer-Bin/clafer-tools-0.4.4`, that is, the contents of the folder `clafer-tools-0.4.4` are directly inside `Clafer-Bin`
* add `Clafer-Bin` to the variable `PATH`.
4. On Windows only
* Alloy-based instance generator only works with 32bit Java on Windows and if you only have 64bit Java installation, you will see an error: `Exception in thread "main" java.lang.UnsatisfiedLinkError: no minisatproverx1 in java.library.path`.
Expand All @@ -52,7 +52,7 @@ Installation
* install [32bit JDK](http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html) but do not modify the PATH to point to it (there's no 32bit JRE anymore)
* in Sublime Text
* `Preferences->Package Settings->SublimeREPL->Settings - Default`
* set `default_extended_env` as `"default_extend_env": {"PATH": "C:/Program Files (x86)/Java/jdk1.8.0_66/bin;{PATH}"},`
* set `default_extended_env` as `"default_extend_env": {"PATH": "C:/Program Files (x86)/Java/jdk1.8.0_102/bin;{PATH}"},`

* On Linux and Mac
* the Python 3 executable is called `python3` and the best solution is to create a symlink called `python` pointing to `/usr/bin/python3`
Expand Down
10 changes: 5 additions & 5 deletions messages/install.md
Expand Up @@ -7,8 +7,8 @@ To finish the installation
* copy the folder `SublimeREPL` from `Clafer Tools` to `Packages`
2. Download the latest binary distribution of Clafer Tools
* [Clafer Tools](http://gsd.uwaterloo.ca/clafer-tools-binary-distributions)
* Unzip the contents of the folder `clafer-tools-0.4.2.1` into `Packages/Clafer-Bin`
* Make sure the folder structure is NOT `Packages/Clafer-Bin/clafer-tools-0.4.2.1`, that is, the contents of the folder `clafer-tools-0.4.2.1` are directly inside `Clafer-Bin`
* Unzip the contents of the folder `clafer-tools-0.4.4` into `Packages/Clafer-Bin`
* Make sure the folder structure is NOT `Packages/Clafer-Bin/clafer-tools-0.4.4`, that is, the contents of the folder `clafer-tools-0.4.4` are directly inside `Clafer-Bin`
* add `Clafer-Bin` to the variable `PATH`.
4. On Windows only
* Alloy-based instance generator only works with 32bit Java on Windows and if you only have 64bit Java installation, you will see an error: `Exception in thread "main" java.lang.UnsatisfiedLinkError: no minisatproverx1 in java.library.path`.
Expand All @@ -19,11 +19,11 @@ To finish the installation
* install [32bit JDK](http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html) but do not modify the PATH to point to it (there's no 32bit JRE anymore)
* in Sublime Text
* `Preferences->Package Settings->SublimeREPL->Settings - Default`
* set `default_extended_env` as `"default_extend_env": {"PATH": "C:/Program Files (x86)/Java/jdk1.8.0_66/bin;{PATH}"},`
* set `default_extended_env` as `"default_extend_env": {"PATH": "C:/Program Files (x86)/Java/jdk1.8.0_102/bin;{PATH}"},`

*. ClaferSMT in Clafer Tools 0.3.6.1 binary depends on the python package `bintrees`, to install execute `pip install bintrees` on Windows or `pip3 install bintrees` on Linux and Mac.
* ClaferSMT in Clafer Tools 0.3.6.1 binary depends on the python package `bintrees`, to install execute `pip install bintrees` on Windows or `pip3 install bintrees` on Linux and Mac.

*. On Linux and Mac
* On Linux and Mac
* the Python 3 executable is called `python3` and the best solution is to create a symlink called `python` pointing to `/usr/bin/python3`
* in `Packages/Clafer Tools` execute `ln -s /usr/bin/python3 python`.
* it's also needed to add the current directory `.` to the `PATH`, so that the executables are found. Add the following line at the end of your `.profile` or `.bashrc`
Expand Down