Skip to content

Commit 9138855

Browse files
committed
0.0.2
1 parent a773226 commit 9138855

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -71,25 +71,25 @@ Prebuilt binaries are available for [LuaJIT 2.1](https://luajit.org/) and [Lua 5
7171
This will install suitable prebuilt binaries if found, otherwise will build from the source rock
7272

7373
```sh
74-
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.1 opencv_lua
74+
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.2 opencv_lua
7575
```
7676

7777
### Install the source rock
7878

7979
```sh
80-
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.1 opencv_lua 4.8.0
80+
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.2 opencv_lua 4.8.0
8181
```
8282

8383
### Install the prebuilt binaries for lua 5.4
8484

8585
```sh
86-
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.1 opencv_lua 4.8.0lua5.4
86+
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.2 opencv_lua 4.8.0lua5.4
8787
```
8888

8989
### Install the prebuilt binaries for LuaJIT 2.1
9090

9191
```sh
92-
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.1 opencv_lua 4.8.0luajit2.1
92+
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.2 opencv_lua 4.8.0luajit2.1
9393
```
9494

9595
## Examples
@@ -265,11 +265,11 @@ cv.destroyAllWindows()
265265

266266
```cmd
267267
git clone --depth 1 --branch 4.8.0 https://github.com/opencv/opencv.git
268-
git clone --depth 1 --branch v0.0.1 https://github.com/smbape/lua-opencv.git
268+
git clone --depth 1 --branch v0.0.2 https://github.com/smbape/lua-opencv.git
269269
cd lua-opencv
270270
build.bat --target lua "-DLua_VERSION=5.4" --install
271271
build.bat --target luarocks
272-
luarocks\luarocks.bat install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.1 opencv_lua
272+
luarocks\luarocks.bat install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.2 opencv_lua
273273
npm ci
274274
node scripts\test.js --Release
275275
```
@@ -278,11 +278,11 @@ node scripts\test.js --Release
278278

279279
```cmd
280280
git clone --depth 1 --branch 4.8.0 https://github.com/opencv/opencv.git
281-
git clone --depth 1 --branch v0.0.1 https://github.com/smbape/lua-opencv.git
281+
git clone --depth 1 --branch v0.0.2 https://github.com/smbape/lua-opencv.git
282282
cd lua-opencv
283283
./build.sh --target lua "-DLua_VERSION=5.4" --install
284284
./build.sh --target luarocks
285-
./luarocks/luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.1 opencv_lua
285+
./luarocks/luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.2 opencv_lua
286286
npm ci
287287
node scripts/test.js --Release
288288
```
@@ -295,7 +295,7 @@ Therefore, it is not practical to repeat that process again.
295295
To avoid that long install time, you can host your own prebuilt binary rocks.
296296

297297
```sh
298-
git clone --depth 1 --branch v0.0.1 https://github.com/smbape/lua-opencv.git
298+
git clone --depth 1 --branch v0.0.2 https://github.com/smbape/lua-opencv.git
299299
cd lua-opencv/luarocks
300300
luarocks --lua-version <Which Lua version to use> --lua-dir "<Which Lua installation to use>" init --lua-versions "5.1,5.2,5.3,5.4"
301301
luarocks --lua-version <Which Lua version to use> config --scope project cmake_generator Ninja

luarocks/opencv_lua-scm-1.rockspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ description = {
1111
1212
Linux/Windows users:
1313
I recommend you to try installing the prebuilt binary with
14-
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.1 opencv_lua
14+
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.2 opencv_lua
1515
1616
If the prebuilt binary does not work, then I recommend to host your own binary rocks by following the instructions at
17-
https://github.com/smbape/lua-opencv/tree/v0.0.1#hosting-you-own-binary-rocks
17+
https://github.com/smbape/lua-opencv/tree/v0.0.2#hosting-you-own-binary-rocks
1818
19-
Otherwise, follow the instructions at https://github.com/smbape/lua-opencv/tree/v0.0.1#prerequisites-to-source-rock-install
19+
Otherwise, follow the instructions at https://github.com/smbape/lua-opencv/tree/v0.0.2#prerequisites-to-source-rock-install
2020
before attempting to install the source rock.
2121
]],
2222
homepage = "https://github.com/smbape/lua-opencv",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "opencv_lua",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"private": true,
55
"description": "",
66
"scripts": {

0 commit comments

Comments
 (0)