Jump to content

Recommended Posts

Posted

Thanks. I will have a look towards the end of next week.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted (edited)

  On 7/4/2013 at 10:33 AM, ricky03 said:

Hello,

 

in french : TIP_SETTINGS_17=Désactiver l'actualisation sur les changements de fichiers

 

It's a problem in french, some translations are difficult to be shorter... :sweating:

Fixed in the next version.

If anyone has any suggestions then now is the time to suggest. I will be updating SciTE Jump towards the end of July.

Edited by guinness

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted

This update includes small bug fixes that I came across whilst testing the latest beta of AutoIt. The application is still compiled with AutoIt v3.3.8.1.

I've also included a ZIP file on the download page for those who are a little reluctant to use the Portable installer.

It should be noted that I haven't updated the language strings from the previous version, please check your language of choice and feel free to send an updated version if not done so already. Download is available in the original post.

Language Changes:

  Quote

None

Changelog:

  Quote

- ADDED: html and htm to automatically search in with find in files.

- FIXED: Finding in files was using $STR_NOCASESENSEBASIC when case-insensitive was checked, but would fail on certain occasions.

- FIXED: French translation. (Thanks ricky03)

- IMPROVED: Monitor.a3x to version 18. This will automatically update if you have an older version.

- IMPROVED: Syntax is compatible with AutoIt v3.3.9.6+ beta.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted

Thanks burnell.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted (edited)

Warning: This is compiled with v3.3.9.21 and is beta. Use with caution and for testing only.

This is the next version of SciTE Jump compiled with the current beta of AutoIt v3.3.9.21. For a while now I have been using the beta UDFs (which we the DevMVP group manage) with the stable version of AutoIt (not recommended for normal users) and so far there have been zero problems. So it's now time to merge the beta UDFs with the AutoIt beta exe. Enjoy!

SciTE Jump v2.10.103.211.zip

Note: New version coming at a later stage.

Edited by guinness

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted

its be a pelasure to test it

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 (edited)

Thanks.

I will upload a new version with a couple of bug fixes. Give me 30 minutes or so.

Edited by guinness

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted (edited)

ok

I start testing tomorrow

now I'am busy

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

Posted (edited)

No rush. I'm only doing this so I can test the beta in "real world" code and daily use.

Edited by guinness

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted

hello guinness,

following this thread: '?do=embed' frameborder='0' data-embedContent>>

the issue: Jump tries to search & replace, then briefly shows red background, no replacement is performed, and no error message is apparent.

attached is an archive with 2 scripts and a screenshot of Jump UI configured for replace.

the screenshot shows the folder where the scripts are located on my pc. when you extract them for reproduction, mind to change the folder in the Jump UI accordingly.

 

Jump issue.rar

Signature - my forum contributions:

  Reveal hidden contents

 

Posted

The flash should be green OK, but it does work. Turn on the preview and you will see it replaces the text.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted

Updated >>  now includes both 32-bit and 64-bit versions.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted (edited)

  On 7/19/2013 at 4:22 PM, wraithdu said:

Did you work around the FileInstall problem?

Yes, I used the native pragma directives instead.

 

Went from this:

#AutoIt3Wrapper_Icon=Bin\ICON_1.ico
#AutoIt3Wrapper_Outfile=SciTE Jump.exe
#AutoIt3Wrapper_UseUpx=N
#AutoIt3Wrapper_Res_Description=Quickly navigate between functions and regions in an AutoIt script.
#AutoIt3Wrapper_Res_Fileversion=2.10.102.209
#AutoIt3Wrapper_Res_LegalCopyright=guinness (C) 2011-2013
#AutoIt3Wrapper_Res_Language=2057
#AutoIt3Wrapper_Res_Field=Website
#AutoIt3Wrapper_Res_Field=E-Mailcomment at the website
#AutoIt3Wrapper_UseX64=Y
#AutoIt3Wrapper_Run_Obfuscator=Y
#Obfuscator_Parameters=/SF /SV /OM /CS=0 /CN=0
#AutoIt3Wrapper_res_requestedExecutionLevel=asInvoker
#AutoIt3Wrapper_Outfile_Type=exe
#AutoIt3Wrapper_Compile_Both=Y
#AutoIt3Wrapper_Run_After=del "%SCRIPTDIR%\%SCRIPTFILE%_Obfuscated.au3"
to this...

#pragma compile(Icon, Bin\ICON_1.ico)
; #pragma compile(Out, SciTE Jump.exe) - I wish to compile both.
#pragma compile(UPX, False)
#pragma compile(FileDescription, Quickly navigate between functions and regions in an AutoIt script.)
#pragma compile(FileVersion, 2.10.102.209)
#pragma compile(LegalCopyright, guinness (C) 2011-2013)
#pragma compile(Comments, 'Comment at the website')
#pragma compile(ExecLevel, asInvoker)

; Required to compile both.
#AutoIt3Wrapper_Outfile=SciTE Jump.exe
#AutoIt3Wrapper_Outfile_Type=exe
#AutoIt3Wrapper_Compile_Both=Y
#AutoIt3Wrapper_Run_After=del "%SCRIPTDIR%\%SCRIPTFILE%_Obfuscated.au3"

#AutoIt3Wrapper_Run_Obfuscator=Y
#Obfuscator_Parameters=/SF /SV /OM /CS=0 /CN=0
Edited by guinness

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted (edited)

Hmm, didn't see that in your source file. Anyway... there's another issue I thought of. SciTE Jump gets installed to the AutoIt3 program directory, which is protected by UAC on most systems. So FileInstall is gonna fail again :/

That also includes any settings.ini updates.

Edited by wraithdu
Posted
  On 7/19/2013 at 4:28 PM, wraithdu said:

Hmm, didn't see that in your source file. Anyway... there's another issue I thought of. SciTE Jump gets installed to the AutoIt3 program directory, which is protected by UAC on most systems. So FileInstall is gonna fail again :/

That also includes any settings.ini updates.

I forgot about the source code, fixed that.

You're right actually, but then doesn't this affect Obfuscator, Tidy etc... 

I suppose I could move writing to %APPDATA% (not in Portable mode) but then would need to discuss in the SciTE thread about this. Cheers wraithdu.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted
  On 7/19/2013 at 4:35 PM, guinness said:

I forgot about the source code, fixed that.

You're right actually, but then doesn't this affect Obfuscator, Tidy etc... 

I suppose I could move writing to %APPDATA% (not in Portable mode) but then would need to discuss in the SciTE thread about this. Cheers wraithdu.

 

Obfuscator and Tidy all write to either the script dir or temp dirs, not the program dirs. And they don't update their own ini files either, the user has to do that manually (and they're optional anyway). I would suggest using maybe the HKCU registry to store settings and ditching the FileInstall idea altogether in non-portable mode, or using APPDATA for both the a3x and ini.

Posted

Cool. I will do this for the next release. Cheers.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted (edited)

OK. I updated post #466 with wraithdu's suggestion.

 

  Quote

- ADDED: #pragma directive not being retained in the stripping comments function.

- ADDED: Settings and Monitor.a3x have now been moved to the application data directory. This doesn't affect you if you're using the Portable version of SciTE Jump.

- IMPROVED: Monitor.a3x to version 19. This will automatically update if you have an older version.

Edited by guinness

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

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