Skip to content

Commit 1dd95a6

Browse files
committed
2.6.2
1 parent 0d194ed commit 1dd95a6

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
@@ -44,7 +44,7 @@ In fact, the dll being a [Component Object Model (COM)](https://docs.microsoft.c
4444
## Prerequisites
4545

4646
- Download and extract [opencv-4.10.0-windows.exe](https://github.com/opencv/opencv/releases/) into a folder
47-
- 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
47+
- Download and extract [autoit-opencv-4.10.0-com-v2.6.2.7z](https://github.com/smbape/node-autoit-opencv-com/releases/download/v2.6.2/autoit-opencv-4.10.0-com-v2.6.2.7z) into a folder
4848

4949
## Usage
5050

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

249-
# download autoit-opencv-4.10.0-com-v2.6.1.7z
250-
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
249+
# download autoit-opencv-4.10.0-com-v2.6.2.7z
250+
curl -L 'https://github.com/smbape/node-autoit-opencv-com/releases/download/v2.6.2/autoit-opencv-4.10.0-com-v2.6.2.7z' -o autoit-opencv-4.10.0-com-v2.6.2.7z
251251

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

255255
# download opencv-4.10.0-windows.exe
256256
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
257257

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

261-
# download autoit-opencv-4.10.0-com-v2.6.1-src.zip
262-
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
261+
# download autoit-opencv-4.10.0-com-v2.6.2-src.zip
262+
curl -L 'https://github.com/smbape/node-autoit-opencv-com/archive/refs/tags/v2.6.2.zip' -o autoit-opencv-4.10.0-com-v2.6.2-src.zip
263263

264-
# extract the autoit-addon and samples folders of autoit-opencv-4.10.0-com-v2.6.1-src.zip
265-
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\*'
266-
cp -rf node-autoit-opencv-com-2.6.1/* ./
267-
rm -rf node-autoit-opencv-com-2.6.1
264+
# extract the autoit-addon and samples folders of autoit-opencv-4.10.0-com-v2.6.2-src.zip
265+
7z x autoit-opencv-4.10.0-com-v2.6.2-src.zip -aoa 'node-autoit-opencv-com-2.6.2\autoit-addon\*' 'node-autoit-opencv-com-2.6.2\samples\*'
266+
cp -rf node-autoit-opencv-com-2.6.2/* ./
267+
rm -rf node-autoit-opencv-com-2.6.2
268268
```
269269

270270
### 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.1.0")]
44-
[assembly: AssemblyFileVersion("2.6.1.0")]
43+
[assembly: AssemblyVersion("2.6.2.0")]
44+
[assembly: AssemblyFileVersion("2.6.2.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.1
57+
@ECHO. VERSION: 2.6.2
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,1
64-
PRODUCTVERSION 2,6,1
63+
FILEVERSION 2,6,2
64+
PRODUCTVERSION 2,6,2
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.1"
81+
VALUE "FileVersion", "2.6.2"
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.1"
91+
VALUE "ProductVersion", "2.6.2"
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.1",
3+
"version": "2.6.2",
44
"private": true,
55
"scripts": {
66
"build": "node scripts/build.js",

0 commit comments

Comments
 (0)