Jump to content

Recommended Posts

  • Developers
Posted (edited)

I am Planning to release a new SciTE4AutoIt3 installer soon and will start using the same version for all utilities I maintain:

  • Nsis installer
  • AutoIt3wrapper
  • Au3Stripper
  • Tidy
  • SciTEConfig
  • UpdateDefs
  • findstr

Version number will have the format: YY.(M)MDD.(H)HMM.0 and any Beta's following will just be an increment of the last number.

This way it is much easier to know to which released installer the version belongs and it makes it easier for me to maintain.

Installer and ZIP file available in the Beta directory for testing.

7/27/2014
*** Merged the SciTE v 3.4.4 by Neil Hodgson with our own version of SciTE. (Jos)
    - Added Options:
        #~ highlight.current.word.stopatspace=0        // 1 is the default behaviour.
    - Added Ctrl+E shortcut which will open Explorer in the ScriptDir and select the filename being edited.
    - Added Shift+F7 to just compile the script for testing without running any other utility. Similar to #AutoIt3Wrapper_Testing=y
    - Added logic to better determine the current CallTip parameter being edited by testing for the delimiter style define with:
        calltip.au3.delimiter.style=8
*** Updated SciTE4AutoIt3 installer v14.727.1229.0 (Jos)
    - Changed code to update the SCITE_USERHOME enviroment variable.
    - Added Restore option for SciTE-Lite when uninstalling this Full version.
*** Updated SciTE4AutoIt3 helpfile (Jos)
    - Added Directive sections to the index.
    - Updated AutoIt3Help.exe to automatically open this helpfile when the keyword contains #autoit3wrapper_ , #au3stripper or #tidy_.
*** Updated Au3Stripper v14.727.1229.0 (Jos)
    - Fixed lexing typo with /RenameMinimum commandline parameter.
    - Fixed to be able to handle more levels of Include files and avoid a stackspace crash .
*** Updated AutoIt3Wrapper v14.727.1229.0 (Jos)
    - Changed the re-start shortcut to Ctrl+Alt+Break.
    - Added /test parameter to allow shortcut to compile script in test without running anything else than AUT2XE.
    - Added UPX support for x64 scripts since it is now supported.
    - Added ShowProgress INI option and #AutoIt3Wrapper_ShowProgress directive to allow disable of Progress Window.
    - Added directives to allow forcing the #RequireAdmin for Run_Before or Run_After statements:
        #AutoIt3Wrapper_Run_Before_Admin=               ;(Y/N) Run subsequent Run_Before statements with #RequireAdmin. Default=N
        #AutoIt3Wrapper_Run_After_Admin=                ;(Y/N) Run subsequent Run_After statements with #RequireAdmin. Default=N
*** Updated SciTEConfig v14.727.1229.0 (Jos)
    - Fixed several small bugs. (Jos)
*** Updated Tidy v14.727.1229.0 (Jos)
    - Fixed regression when the FUNC keyword is on a #region line
*** Updated CodeWizard v1.5.3.1 (Jos)
    - Fixed to make use of the new SCITE_USERHOME env variable and several other syntax updates.

Jos

Edited by Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Posted (edited)

  On 7/27/2014 at 8:24 AM, Jos said:

I don't get that error when I download and run it.

Do you get this when doing a double click on the program as well or just from SciTE?

Now I see what happend.

I am using this kind of function to download beta version:

Func _INET_GetUpdate($hFileToDownlad)
    Local $hLocalDestination = @TempDir & "\" & $hFileToDownlad
    Local $hDownload = InetGet($URL_Scite & $hFileToDownlad, $hLocalDestination, 1, 1)
    Do
        Sleep(250)
    Until InetGetInfo($hDownload, 2) ; Check if the download is complete.
    If @error Then _DebugOut('@error')
;~  Local $nBytes = InetGetInfo($hDownload, 0)
    InetClose($hDownload) ; Close the handle to release resources.
    $sRaport &= $hFileToDownlad & @CRLF
    Return $hLocalDestination
EndFunc   ;==>_INET_GetUpdate

So far there was no problem with that. Now, the function also reports no @error, but the file does not download properly.

I tried to download manually - "Failed - network error". It turns out that a few days ago fetch the first amendment of the file and it was OK, but now my AV software (ESET Smart Security 7), blocks the download of this file.

So the file is downloaded but it is not complete - it lacks the 24 bytes.

btw.

the feature to open  AutoIt.chm and SciTE4AutoIt3.chm with relation to "$(CurrentWord)" now works properly in production and beta, but one had not contemplated the possibility.

try to Open AutoIt.chm from production using F1 now do not close it and try open AutoIt.chm for Beta using ALT+F1 

this activate production help instead opening the second instance of help - from beta.

and vice versa

first attempt to open AutoIt.chm Beta then attempt to open AutoIt.chm Production and it activates the previously open AutoIt.chm Beta.

Edited by mLipok

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

  • Developers
Posted

Glad to hear things are working as designed.

  On 7/27/2014 at 11:47 AM, mLipok said:
try to Open AutoIt.chm from production using F1 now do not close it and try open AutoIt.chm for Beta using ALT+F1 

this activate production help instead opening the second instance of help - from beta.

and vice versa
first attempt to open AutoIt.chm Beta then attempt to open AutoIt.chm Production and it activates the previously open AutoIt.chm Beta.

 

That is correct as autoit3help wrapper is designed to remain running to keep the helpfile open and it checks for the relative helpfile already opened to avoid opening multiple occurrences..

It has been like this since day one and don't think we should even add more logic to cope with these kind of exception... just close the AutoIt3 helpfile as it only will cause confusion when you have multiple helpfile open in my mind.

Agree?

Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Posted
  On 7/27/2014 at 11:53 AM, Jos said:

Agree?

Given your opinion, I have to say that I agree with her.

mLipok

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted
  On 7/27/2014 at 12:06 PM, Jos said:

Her ?  :)

Language/wording problems. I mean "I agree with your opinion."

ps. In Polish, the word "Opinia" is a kind / origin female.

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

Herr Jos !

  Reveal hidden contents

This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.
Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe here
RegExp tutorial: enough to get started
PCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.

SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.
SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.
An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.
SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)
A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!
SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)

Posted

I know but couldn't resist just adding a single R

  Reveal hidden contents

This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.
Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe here
RegExp tutorial: enough to get started
PCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.

SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.
SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.
An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.
SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)
A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!
SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)

Posted
  On 8/1/2014 at 12:58 PM, Manadar said:

Goeiesmorgens meneer Jos!

I can't open more than 20 files simultaneously in SciTE. Any idea?

Add buffers=<int value> to SciTEUser.Properties.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...