Modify ↓
Opened 7 years ago
Closed 7 years ago
#3727 closed Bug (Fixed)
$VERSION not increased in compiled script with #AutoIt3Wrapper_Run_Au3Stripper=y
| Reported by: | Van0 | Owned by: | Jos |
|---|---|---|---|
| Milestone: | Component: | SciTE4AutoIt | |
| Version: | Severity: | None | |
| Keywords: | Cc: |
Description
#AutoIt3Wrapper_Res_Fileversion_AutoIncrement=y #AutoIt3Wrapper_Res_Fileversion_First_Increment=y
With this two lines $VERSION variable automatically updated with current file version. However when Au3Stripper is activated, the $VERSION in compiled script is not updated.
Example:
#AutoIt3Wrapper_Res_Fileversion=1.0.0.0 #AutoIt3Wrapper_Res_Fileversion_AutoIncrement=y #AutoIt3Wrapper_Res_Fileversion_First_Increment=y #AutoIt3Wrapper_Run_Au3Stripper=y Global Const $VERSION = "1.0.0.0" MsgBox(0, "Version", $VERSION)
After compilation the .exe file itself will have version 1.0.0.1, but when executed it will show 1.0.0.0 in the message box.
Attachments (0)
Change History (3)
comment:1 by , 7 years ago
| Component: | AutoIt → SciTE4AutoIt |
|---|---|
| Owner: | set to |
comment:2 by , 7 years ago
comment:3 by , 7 years ago
| Resolution: | → Fixed |
|---|---|
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.

New version available in beta that runs de version update before au3stripper.
Please try and let me know whether that solves the issue.
Jos