Skip to content

Commit

Permalink
Roll 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ten0s committed Jul 1, 2022
1 parent 6a2f682 commit e4ca4db
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ AutoLISP programs outside of AutoCAD.

#### Download and unarchive

1. Download https://github.com/ten0s/velisp/releases/download/0.7.0-4/velisp-0.7.0-4-win-x64.zip
1. Download https://github.com/ten0s/velisp/releases/download/0.7.0/velisp-0.7.0-win-x64.zip
2. Open Downloads folder
3. Select velisp-0.7.0-4-win-x64.zip
3. Select velisp-0.7.0-win-x64.zip
4. Press the right mouse button
5. Click 'Extract All...'
6. Enter C:\
7. Click 'Extract'

The steps below assume the archive was extracted to C:\velisp-0.7.0-4-win-x64
The steps below assume the archive was extracted to C:\velisp-0.7.0-win-x64
according to the steps above.

#### Add the folder to PATH
Expand All @@ -47,7 +47,7 @@ according to the steps above.
4. Select 'Path' inside the User variables block
5. Click 'Edit...'
6. Click 'New...'
7. Enter C:\velisp-0.7.0-4-win-x64
7. Enter C:\velisp-0.7.0-win-x64
8. Click 'OK'
9. Click 'OK'

Expand All @@ -56,14 +56,14 @@ according to the steps above.
Run Command Prompt (cmd.exe)

```
> cd C:\velisp-0.7.0-4-win-x64
> cd C:\velisp-0.7.0-win-x64
```

#### Run REPL (Read–Eval–Print Loop)

```
> velisp
VeLisp 0.7.0-4 on win32
VeLisp 0.7.0 on win32
Type ".license" or ".help" for more information
> (+ 1 2)
3
Expand Down Expand Up @@ -152,27 +152,27 @@ $ echo (alert (strcat "Hello from " (argv 1) "!")) | velisp -- Arg
#### Download and unarchive

```
$ wget https://github.com/ten0s/velisp/releases/download/0.7.0-4/velisp-0.7.0-4-linux-x64.tar.gz
$ tar xfz velisp-0.7.0-4-linux-x64.tar.gz
$ wget https://github.com/ten0s/velisp/releases/download/0.7.0/velisp-0.7.0-linux-x64.tar.gz
$ tar xfz velisp-0.7.0-linux-x64.tar.gz
```

#### Add to .bashrc

```
export PATH=<PATH_TO>/velisp-0.7.0-4-linux-x64:$PATH
export PATH=<PATH_TO>/velisp-0.7.0-linux-x64:$PATH
```

### Usage

```
$ cd velisp-0.7.0-4-linux-x64
$ cd velisp-0.7.0-linux-x64
```

#### Run REPL (Read–Eval–Print Loop)

```
$ velisp
VeLisp 0.7.0-4 on linux
VeLisp 0.7.0 on linux
Type ".license" or ".help" for more information
> (+ 1 2)
3
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "VeLisp",
"version": "0.7.0-4",
"version": "0.7.0",
"description": "AutoLISP / DCL compatible interpreter to run AutoCAD agnostic code",
"main": "src/main.js",
"type": "module",
Expand Down

0 comments on commit e4ca4db

Please sign in to comment.