Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
vitreo12 committed Mar 29, 2024
1 parent 1e9cfcc commit 7db9b36
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 27 deletions.
25 changes: 2 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,28 +9,7 @@ Compile [omni](https://github.com/vitreo12/omni) code into [Max](https://cycling
3) [cmake](https://cmake.org/)
4) [gcc](https://gcc.gnu.org/) (`Windows`) / [clang](https://clang.llvm.org/) (`MacOS`)

### **MacOS**

To install dependencies on MacOS it is suggested to use a package manager like [brew](https://brew.sh/).

After `brew` has been installed, run the following command in the `Terminal` app to install `nim` and `cmake`:

brew install nim cmake

Then, make sure that the `~/.nimble/bin` directory is set in your shell `$PATH`.
If using bash (the default shell in MacOS), you can simply run this command:

echo 'export PATH=$PATH:~/.nimble/bin' >> ~/.bash_profile

### **Windows:**

On Windows, the [MinGW](http://mingw.org/)'s `gcc` compiler needs also to be installed.

To install dependencies on Windows it is suggested to use a package manager like [chocolatey](https://community.chocolatey.org/).

After `chocolatey` has been installed, open `PowerShell` as administrator and run this command to install `nim`, `git`, `cmake`, `make` and `mingw`:

choco install nim git cmake make mingw -y
Note that omni only supports nim version 1.6.0. It is recommended to install it via [choosenim](https://github.com/dom96/choosenim).

## **Installation**

Expand All @@ -40,7 +19,7 @@ To install `omnimax`, simply use the `nimble` package manager (it comes bundled

## **Usage**

omnimax ~/.nimble/pkgs/omni-0.4.1/examples/OmniSaw.omni
omnimax ~/.nimble/pkgs/omni-0.4.2/examples/OmniSaw.omni

## **Max object interface**

Expand Down
4 changes: 2 additions & 2 deletions omnimax.nimble
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

version = "0.4.1"
version = "0.4.2"
author = "Francesco Cameli"
description = "Max wrapper for omni."
license = "MIT"

requires "nim >= 1.4.0"
requires "cligen >= 1.5.0"
requires "omni == 0.4.1"
requires "omni == 0.4.2"

#Ignore omnimax_lang
skipDirs = @["omnimax_lang"]
Expand Down
4 changes: 2 additions & 2 deletions omnimax_lang/omnimax_lang.nimble
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

version = "0.4.1"
version = "0.4.2"
author = "Francesco Cameli"
description = "omnimax_lang"
license = "MIT"

requires "nim >= 1.0.0"
requires "omni == 0.4.1"
requires "omni == 0.4.2"

installDirs = @["omnimax_lang"]

0 comments on commit 7db9b36

Please sign in to comment.