Skip to content

Commit 850e274

Browse files
committed
2.4.0
1 parent 8ccfde0 commit 850e274

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

4848
- Download and extract [opencv-4.7.0-windows.exe](https://opencv.org/releases/) into a folder
49-
- Download and extract [autoit-opencv-4.7.0-com-v2.3.1.7z](https://github.com/smbape/node-autoit-opencv-com/releases/download/v2.3.1/autoit-opencv-4.7.0-com-v2.3.1.7z) into a folder
49+
- Download and extract [autoit-opencv-4.7.0-com-v2.4.0.7z](https://github.com/smbape/node-autoit-opencv-com/releases/download/v2.4.0/autoit-opencv-4.7.0-com-v2.4.0.7z) into a folder
5050

5151
## Usage
5252

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

251-
# download autoit-opencv-4.7.0-com-v2.3.1.7z
252-
curl -L 'https://github.com/smbape/node-autoit-opencv-com/releases/download/v2.3.1/autoit-opencv-4.7.0-com-v2.3.1.7z' -o autoit-opencv-4.7.0-com-v2.3.1.7z
251+
# download autoit-opencv-4.7.0-com-v2.4.0.7z
252+
curl -L 'https://github.com/smbape/node-autoit-opencv-com/releases/download/v2.4.0/autoit-opencv-4.7.0-com-v2.4.0.7z' -o autoit-opencv-4.7.0-com-v2.4.0.7z
253253

254-
# extract the content of autoit-opencv-4.7.0-com-v2.3.1.7z into a folder named autoit-opencv-com
255-
7z x autoit-opencv-4.7.0-com-v2.3.1.7z -aoa -oautoit-opencv-com
254+
# extract the content of autoit-opencv-4.7.0-com-v2.4.0.7z into a folder named autoit-opencv-com
255+
7z x autoit-opencv-4.7.0-com-v2.4.0.7z -aoa -oautoit-opencv-com
256256

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

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

263-
# download autoit-opencv-4.7.0-com-v2.3.1-src.zip
264-
curl -L 'https://github.com/smbape/node-autoit-opencv-com/archive/refs/tags/v2.3.1.zip' -o autoit-opencv-4.7.0-com-v2.3.1-src.zip
263+
# download autoit-opencv-4.7.0-com-v2.4.0-src.zip
264+
curl -L 'https://github.com/smbape/node-autoit-opencv-com/archive/refs/tags/v2.4.0.zip' -o autoit-opencv-4.7.0-com-v2.4.0-src.zip
265265

266-
# extract the autoit-addon and samples folders of autoit-opencv-4.7.0-com-v2.3.1-src.zip
267-
7z x autoit-opencv-4.7.0-com-v2.3.1-src.zip -aoa 'node-autoit-opencv-com-2.3.1\autoit-addon\*' 'node-autoit-opencv-com-2.3.1\samples\*'
268-
cp -rf node-autoit-opencv-com-2.3.1/* ./
269-
rm -rf node-autoit-opencv-com-2.3.1
266+
# extract the autoit-addon and samples folders of autoit-opencv-4.7.0-com-v2.4.0-src.zip
267+
7z x autoit-opencv-4.7.0-com-v2.4.0-src.zip -aoa 'node-autoit-opencv-com-2.4.0\autoit-addon\*' 'node-autoit-opencv-com-2.4.0\samples\*'
268+
cp -rf node-autoit-opencv-com-2.4.0/* ./
269+
rm -rf node-autoit-opencv-com-2.4.0
270270
```
271271

272272
### 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.3.1.0")]
44-
[assembly: AssemblyFileVersion("2.3.1.0")]
43+
[assembly: AssemblyVersion("2.4.0.0")]
44+
[assembly: AssemblyFileVersion("2.4.0.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.3.1
57+
@ECHO. VERSION: 2.4.0
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,3,1
64-
PRODUCTVERSION 2,3,1
63+
FILEVERSION 2,4,0
64+
PRODUCTVERSION 2,4,0
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.3.1"
81+
VALUE "FileVersion", "2.4.0"
8282
// VALUE "LegalCopyright", "TODO: (c) <Nom de la société>. Tous droits réservés."
8383
#ifdef _DEBUG
8484
VALUE "InternalName", "autoit_opencv_com470d.dll"
@@ -88,7 +88,7 @@ BEGIN
8888
VALUE "OriginalFilename", "autoit_opencv_com470.dll"
8989
#endif
9090
VALUE "ProductName", "AutoIt OpenCV COM"
91-
VALUE "ProductVersion", "2.3.1"
91+
VALUE "ProductVersion", "2.4.0"
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.3.1",
3+
"version": "2.4.0",
44
"private": true,
55
"scripts": {
66
"build": "node scripts/build.js",

0 commit comments

Comments
 (0)