Skip to content

Commit d151ec2

Browse files
at
1 parent f6ad8fb commit d151ec2

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ for safe evaluation of Lua code.
77
## Releases
88
| Item | Description |
99
|------|-------------|
10-
|[LuaCEmbedOne.c](https://github.com/OUIsolutions/LuaCEmbed/releases/download/0.8.1/LuaCEmbedOne.c) |One File|
11-
|[LuaCEmbed.c](https://github.com/OUIsolutions/LuaCEmbed/releases/download/0.8.1/LuaCEmbed.c)| Definition|
12-
|[LuaCEmbed.h](https://github.com/OUIsolutions/LuaCEmbed/releases/download/0.8.1/LuaCEmbed.h)| Header|
13-
|[LuaCEmbed.zip](https://github.com/OUIsolutions/LuaCEmbed/releases/download/0.8.1/LuaCEmbed.zip)| Zip Mode|
10+
|[LuaCEmbedOne.c](https://github.com/OUIsolutions/LuaCEmbed/releases/download/0.8.2/LuaCEmbedOne.c) |One File|
11+
|[LuaCEmbed.c](https://github.com/OUIsolutions/LuaCEmbed/releases/download/0.8.2/LuaCEmbed.c)| Definition|
12+
|[LuaCEmbed.h](https://github.com/OUIsolutions/LuaCEmbed/releases/download/0.8.2/LuaCEmbed.h)| Header|
13+
|[LuaCEmbed.zip](https://github.com/OUIsolutions/LuaCEmbed/releases/download/0.8.2/LuaCEmbed.zip)| Zip Mode|
1414

1515
### Most Basic Example
16-
Like all OUI librarys, the LuaCEmbed addopt the ideia of single file lib, so you just need to copy the [LuaCEmbedOne.c](https://github.com/OUIsolutions/LuaCEmbed/releases/download/0.8.1/LuaCEmbedOne.c) file
16+
Like all OUI librarys, the LuaCEmbed addopt the ideia of single file lib, so you just need to copy the [LuaCEmbedOne.c](https://github.com/OUIsolutions/LuaCEmbed/releases/download/0.8.2/LuaCEmbedOne.c) file
1717
into your project, and compile with gcc/clang
1818
```c
1919
#include "LuaCEmbedOne.c"

docs/build_and_install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
## Install
44

5-
To install the lib just copy the [Amalgamation](https://github.com/OUIsolutions/LuaCEmbed/releases/download/0.8.1/LuaCEmbedOne.c) into your project and include it in your code:
5+
To install the lib just copy the [Amalgamation](https://github.com/OUIsolutions/LuaCEmbed/releases/download/0.8.2/LuaCEmbedOne.c) into your project and include it in your code:
66
```c
77
#include "LuaCEmbedOne.c"
88
```
99

1010

1111
If you are on Linux, you can download the lib with:
1212
```bash
13-
curl -L https://github.com/OUIsolutions/LuaCEmbed/releases/download/0.8.1/LuaCEmbedOne.c -o LuaCEmbedOne.c
13+
curl -L https://github.com/OUIsolutions/LuaCEmbed/releases/download/0.8.2/LuaCEmbedOne.c -o LuaCEmbedOne.c
1414
```
1515

1616
## Compile on Linux

0 commit comments

Comments
 (0)