Skip to content

Commit 3525fea

Browse files
committed
0.0.5
1 parent 702c674 commit 3525fea

File tree

6 files changed

+27
-27
lines changed

6 files changed

+27
-27
lines changed

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -124,17 +124,17 @@ sudo dnf install -y libavcodec-free-devel libavformat-free-devel libdc1394-devel
124124
I recommend you to try installing the prebuilt binary with
125125

126126
```sh
127-
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.4 opencv_lua
127+
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.5 opencv_lua
128128
```
129129

130130
Or to specify the target lua version with one of the following commands
131131

132132
```sh
133-
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.4 opencv_lua 4.10.0luajit2.1
134-
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.4 opencv_lua 4.10.0lua5.4
135-
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.4 opencv_lua 4.10.0lua5.3
136-
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.4 opencv_lua 4.10.0lua5.2
137-
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.4 opencv_lua 4.10.0lua5.1
133+
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.5 opencv_lua 4.10.0luajit2.1
134+
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.5 opencv_lua 4.10.0lua5.4
135+
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.5 opencv_lua 4.10.0lua5.3
136+
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.5 opencv_lua 4.10.0lua5.2
137+
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.5 opencv_lua 4.10.0lua5.1
138138
```
139139

140140
Those prebuilt binaries should work on Windows and many linux distributions and have been tested on:
@@ -154,7 +154,7 @@ Those prebuilt binaries should work on Windows and many linux distributions and
154154
If none of the above works for you, then install the source rock with
155155

156156
```sh
157-
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.4 opencv_lua 4.10.0
157+
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.5 opencv_lua 4.10.0
158158
```
159159

160160
## Examples
@@ -340,14 +340,14 @@ All the examples in the samples directory can be run by folling theses instructi
340340

341341
```cmd
342342
git clone --depth 1 --branch 4.10.0 https://github.com/opencv/opencv.git
343-
git clone --depth 1 --branch v0.0.4 https://github.com/smbape/lua-opencv.git
343+
git clone --depth 1 --branch v0.0.5 https://github.com/smbape/lua-opencv.git
344344
cd lua-opencv
345345
@REM build.bat "-DLua_VERSION=luajit-2.1" --target luajit --install
346346
@REM available versions are 5.1, 5.2, 5.3, 5.4
347347
build.bat "-DLua_VERSION=5.4" --target lua --install
348348
build.bat "-DLua_VERSION=5.4" --target luarocks
349-
@REM luarocks\luarocks.bat install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.4 opencv_lua 4.10.0luajit2.1
350-
luarocks\luarocks.bat install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.4 opencv_lua
349+
@REM luarocks\luarocks.bat install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.5 opencv_lua 4.10.0luajit2.1
350+
luarocks\luarocks.bat install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.5 opencv_lua
351351
luarocks\luarocks.bat install --deps-only samples\samples-scm-1.rockspec
352352
npm ci
353353
node scripts\test.js --Release
@@ -357,14 +357,14 @@ node scripts\test.js --Release
357357

358358
```sh
359359
git clone --depth 1 --branch 4.10.0 https://github.com/opencv/opencv.git
360-
git clone --depth 1 --branch v0.0.4 https://github.com/smbape/lua-opencv.git
360+
git clone --depth 1 --branch v0.0.5 https://github.com/smbape/lua-opencv.git
361361
cd lua-opencv
362362
# ./build.sh "-DLua_VERSION=luajit-2.1" --target luajit --install
363363
# available versions are 5.1, 5.2, 5.3, 5.4
364364
./build.sh "-DLua_VERSION=5.4" --target lua --install
365365
./build.sh "-DLua_VERSION=5.4" --target luarocks
366-
# ./luarocks/luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.4 opencv_lua 4.10.0luajit2.1
367-
./luarocks/luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.4 opencv_lua
366+
# ./luarocks/luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.5 opencv_lua 4.10.0luajit2.1
367+
./luarocks/luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.5 opencv_lua
368368
./luarocks/luarocks install --deps-only samples/samples-scm-1.rockspec
369369
npm ci
370370
node scripts/test.js --Release

docs/hosting-you-own-binary-rocks-Linux.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ sudo apt install -y freetype-devel harfbuzz-devel
110110
## Download the source code
111111

112112
```sh
113-
git clone --depth 1 --branch v0.0.4 https://github.com/smbape/lua-opencv.git /io/opencv-lua-custom/build && \
113+
git clone --depth 1 --branch v0.0.5 https://github.com/smbape/lua-opencv.git /io/opencv-lua-custom/build && \
114114
cd /io/opencv-lua-custom/build && \
115115
npm ci
116116
```

docs/hosting-you-own-binary-rocks-Windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ cd /d "D:\opencv-lua-custom"
8080
## Download the source code
8181

8282
```sh
83-
git clone --depth 1 --branch v0.0.4 https://github.com/smbape/lua-opencv.git build && \
83+
git clone --depth 1 --branch v0.0.5 https://github.com/smbape/lua-opencv.git build && \
8484
cd build && \
8585
npm ci
8686
```

luarocks/opencv_lua-scm-1.rockspec

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ 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.4 opencv_lua
14+
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.5 opencv_lua
1515
1616
Or to specify the target lua version with one of the following commands
17-
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.4 opencv_lua 4.10.0luajit2.1
18-
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.4 opencv_lua 4.10.0lua5.4
19-
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.4 opencv_lua 4.10.0lua5.3
20-
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.4 opencv_lua 4.10.0lua5.2
21-
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.4 opencv_lua 4.10.0lua5.1
17+
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.5 opencv_lua 4.10.0luajit2.1
18+
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.5 opencv_lua 4.10.0lua5.4
19+
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.5 opencv_lua 4.10.0lua5.3
20+
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.5 opencv_lua 4.10.0lua5.2
21+
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.5 opencv_lua 4.10.0lua5.1
2222
2323
Those prebuilt binaries should work on windows and many linux distributions and have been tested on:
2424
- Windows 11
@@ -35,12 +35,12 @@ description = {
3535
- Almalinux 9
3636
3737
If the prebuilt binary does not work or you want a custom build, then I recommend you to host your own binary rocks by following the instructions at
38-
https://github.com/smbape/lua-opencv/tree/v0.0.4#hosting-you-own-binary-rocks
38+
https://github.com/smbape/lua-opencv/tree/v0.0.5#hosting-you-own-binary-rocks
3939
40-
Otherwise, follow the instructions at https://github.com/smbape/lua-opencv/tree/v0.0.4#prerequisites-to-source-rock-install
40+
Otherwise, follow the instructions at https://github.com/smbape/lua-opencv/tree/v0.0.5#prerequisites-to-source-rock-install
4141
before attempting to install the source rock with
4242
43-
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.4 opencv_lua 4.10.0
43+
luarocks install --server=https://github.com/smbape/lua-opencv/releases/download/v0.0.5 opencv_lua 4.10.0
4444
]],
4545
homepage = "https://github.com/smbape/lua-opencv",
4646
issues_url = "git+https://github.com/smbape/lua-opencv.git",

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.4",
3+
"version": "0.0.5",
44
"private": true,
55
"description": "",
66
"scripts": {

0 commit comments

Comments
 (0)