Skip to content

Commit 206d191

Browse files
committed
2.6.1
1 parent 59306da commit 206d191

File tree

6 files changed

+21
-21
lines changed

6 files changed

+21
-21
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ In fact, the dll being a [Component Object Model (COM)](https://docs.microsoft.c
4545
## Prerequisites
4646

4747
- Download and extract [opencv-4.10.0-windows.exe](https://github.com/opencv/opencv/releases/) into a folder
48-
- Download and extract [autoit-opencv-4.10.0-com-v2.6.0.7z](https://github.com/smbape/node-autoit-opencv-com/releases/download/v2.6.0/autoit-opencv-4.10.0-com-v2.6.0.7z) into a folder
48+
- Download and extract [autoit-opencv-4.10.0-com-v2.6.1.7z](https://github.com/smbape/node-autoit-opencv-com/releases/download/v2.6.1/autoit-opencv-4.10.0-com-v2.6.1.7z) into a folder
4949

5050
## Usage
5151

@@ -247,25 +247,25 @@ Then, in [Git Bash](https://gitforwindows.org/), execute the following commands
247247
# go to the folder of your choice
248248
# cd ...
249249

250-
# download autoit-opencv-4.10.0-com-v2.6.0.7z
251-
curl -L 'https://github.com/smbape/node-autoit-opencv-com/releases/download/v2.6.0/autoit-opencv-4.10.0-com-v2.6.0.7z' -o autoit-opencv-4.10.0-com-v2.6.0.7z
250+
# download autoit-opencv-4.10.0-com-v2.6.1.7z
251+
curl -L 'https://github.com/smbape/node-autoit-opencv-com/releases/download/v2.6.1/autoit-opencv-4.10.0-com-v2.6.1.7z' -o autoit-opencv-4.10.0-com-v2.6.1.7z
252252

253-
# extract the content of autoit-opencv-4.10.0-com-v2.6.0.7z into a folder named autoit-opencv-com
254-
7z x autoit-opencv-4.10.0-com-v2.6.0.7z -aoa -oautoit-opencv-com
253+
# extract the content of autoit-opencv-4.10.0-com-v2.6.1.7z into a folder named autoit-opencv-com
254+
7z x autoit-opencv-4.10.0-com-v2.6.1.7z -aoa -oautoit-opencv-com
255255

256256
# download opencv-4.10.0-windows.exe
257257
curl -L 'https://github.com/opencv/opencv/releases/download/4.10.0/opencv-4.10.0-windows.exe' -o opencv-4.10.0-windows.exe
258258

259259
# extract the content of opencv-4.10.0-windows.exe into a folder named opencv-4.10.0-windows
260260
./opencv-4.10.0-windows.exe -oopencv-4.10.0-windows -y
261261

262-
# download autoit-opencv-4.10.0-com-v2.6.0-src.zip
263-
curl -L 'https://github.com/smbape/node-autoit-opencv-com/archive/refs/tags/v2.6.0.zip' -o autoit-opencv-4.10.0-com-v2.6.0-src.zip
262+
# download autoit-opencv-4.10.0-com-v2.6.1-src.zip
263+
curl -L 'https://github.com/smbape/node-autoit-opencv-com/archive/refs/tags/v2.6.1.zip' -o autoit-opencv-4.10.0-com-v2.6.1-src.zip
264264

265-
# extract the autoit-addon and samples folders of autoit-opencv-4.10.0-com-v2.6.0-src.zip
266-
7z x autoit-opencv-4.10.0-com-v2.6.0-src.zip -aoa 'node-autoit-opencv-com-2.6.0\autoit-addon\*' 'node-autoit-opencv-com-2.6.0\samples\*'
267-
cp -rf node-autoit-opencv-com-2.6.0/* ./
268-
rm -rf node-autoit-opencv-com-2.6.0
265+
# extract the autoit-addon and samples folders of autoit-opencv-4.10.0-com-v2.6.1-src.zip
266+
7z x autoit-opencv-4.10.0-com-v2.6.1-src.zip -aoa 'node-autoit-opencv-com-2.6.1\autoit-addon\*' 'node-autoit-opencv-com-2.6.1\samples\*'
267+
cp -rf node-autoit-opencv-com-2.6.1/* ./
268+
rm -rf node-autoit-opencv-com-2.6.1
269269
```
270270

271271
### autoit

autoit-opencv-com/dotnet/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@
4040
// You can specify all the values or you can default the Build and Revision Numbers
4141
// by using the '*' as shown below:
4242
// [assembly: AssemblyVersion("1.0.*")]
43-
[assembly: AssemblyVersion("2.6.0.0")]
44-
[assembly: AssemblyFileVersion("2.6.0.0")]
43+
[assembly: AssemblyVersion("2.6.1.0")]
44+
[assembly: AssemblyFileVersion("2.6.1.0")]

autoit-opencv-com/install.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
@TITLE AutoIt OpenCV COM
5555
@ECHO. AutoIt OpenCV COM
5656
@ECHO.
57-
@ECHO. VERSION: 2.6.0
57+
@ECHO. VERSION: 2.6.1
5858
@ECHO. DLLNAME: %DLLNAME%
5959
@ECHO.
6060
@ECHO.

autoit-opencv-com/src/cvLib.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ END
6060
//
6161

6262
VS_VERSION_INFO VERSIONINFO
63-
FILEVERSION 2,6,0
64-
PRODUCTVERSION 2,6,0
63+
FILEVERSION 2,6,1
64+
PRODUCTVERSION 2,6,1
6565
FILEFLAGSMASK 0x3fL
6666
#ifdef _DEBUG
6767
FILEFLAGS 0x1L
@@ -78,7 +78,7 @@ BEGIN
7878
BEGIN
7979
// VALUE "CompanyName", "TODO: <Nom de la société>"
8080
VALUE "FileDescription", "COM+ for OpenCV"
81-
VALUE "FileVersion", "2.6.0"
81+
VALUE "FileVersion", "2.6.1"
8282
// VALUE "LegalCopyright", "TODO: (c) <Nom de la société>. Tous droits réservés."
8383
#ifdef _DEBUG
8484
VALUE "InternalName", "autoit_opencv_com4100d.dll"
@@ -88,7 +88,7 @@ BEGIN
8888
VALUE "OriginalFilename", "autoit_opencv_com4100.dll"
8989
#endif
9090
VALUE "ProductName", "AutoIt OpenCV COM"
91-
VALUE "ProductVersion", "2.6.0"
91+
VALUE "ProductVersion", "2.6.1"
9292
END
9393
END
9494
BLOCK "VarFileInfo"

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": "node-autoit-opencv-com",
3-
"version": "2.6.0",
3+
"version": "2.6.1",
44
"private": true,
55
"scripts": {
66
"build": "node scripts/build.js",

0 commit comments

Comments
 (0)