Jump to content

Recommended Posts

Posted

If there are option enabled:
Project Settings => Change logs => Always use the author of project as editor
If open window:
Project => Change logs
And press Button:
New
Field Editor will autofilled with Author name. But This name is Wrong, it is not Author of the project but current windows user :(

image.png.c70cfabd4ab63cb86440bb945c8f6cdb.png

On the screen expected author "Belfigor", not "Администратор", because Belfigor is an author of the current project and "Администратор" is currently active windows user. Fix please :(

 

And how to fix:

1) Open file: Includes/ISN_Studio_Addons.au3

2) Find line 9807:
 

IniWrite($Pfad_zur_Project_ISN, $Changelog_Section, "editor[" & $NewitemID & "]", @UserName)

3) Delete line 9807, add new lines:
 

If _ProjectISN_Config_Read("changelog_use_author_from_project", "false") = "true" Then
        IniWrite($Pfad_zur_Project_ISN, $Changelog_Section, "editor[" & $NewitemID & "]", _ProjectISN_Config_Read("author", ""))
    Else
        IniWrite($Pfad_zur_Project_ISN, $Changelog_Section, "editor[" & $NewitemID & "]", @UserName)
    EndIf

Done. Now field Author will use correct source for Author name

 

p.s.

github variation of bugreport: https://github.com/Belfi/ISN-Autoit-Studio/issues/1

github variation of fix: https://github.com/Belfi/ISN-Autoit-Studio/commit/eba6527cd7d455d2ca6ac540569df34ce3c9bac2

p.s.s. create official ISN repo 😍

[size="1"]My bear is so cute asleep in the closet, not even drinking vodka. My nuclear bomb name is Natasha.[/size]

Posted (edited)

Thanks for the info. It will be fixed in the next update.
I´am suprised, that no one else has noticed this bug yet.

Edited by ISI360
  • 4 weeks later...
Posted

I tried downloading ISN Autoit Studio Setup.exe a few times.

Everytime Windows 10 tells me it's corrupted.  I have turned off all antivirus before trying to install it.

Is there another URL to download it?

Posted

Also try disabling your antivir before even downloading. Some AV-Solution block even the conneciton.
And the next update (1.09) is comming very soon...so there will be new executables to download.

Posted

In a fresh windows 10, I tried to Dl the studio with that edge thingi MS is so proud of and got this.

R7dhfbI.png

So it seems that MS don't see the studio as a virus.

Cheers
/Rex

Posted

so you can still run and install it. they are just informing you that they can't verify the publisher, and if you want to trust them.

My resources are limited. You must ask the right questions

 

Posted

@Docfxit Good to hear that it worked for you, though it's the same exe file as on the official Studio site - so there shouldn't had been any differences in downloading and running the file 🤔, and as I wrote the only "error" I got when dl in a clean win10, was that the publisher couldn't be verified.

 

Cheers
/Rex

Posted (edited)

Hi guys!

It´s update time again! ISN AutoIt Studio version 1.09 is online!

A special thanks for beta testing this time goes to the user @Rex ! 😎

Happy testing, and as always: Feedback desired 👍

Changelog (translated with google):

  Reveal hidden contents

 

Edited by ISI360
Posted

Thanks for the update!  I just donated another $20 and change (USD), so I hope that helps...

I'm struggling with a problem though: I need a lot of help using DBUG from within ISN Autoit Studio, even v1.09.  In the past, somehow or other I could enable a mode that showed a set of GUI controls that allowed me to set breakpoints and inspect variables and the like, but I simply cannot do it now. The DBUG option is Activated. I've tried both #include <_Dbug.au3> and "_DBug.au3", but neither works.  There's nothing I can find that will let me set a breakpoint.  If I just press F5, it just exists.

I'm asking you instead of the author of DBUG because I think the GUI aspects of DBUG were supplied by yourself and not him. Is this true?  If not, I'll ask him...

 

Thanks!

Posted (edited)

Thanks for your donation 😘😎

For DBUG: You simply need to activate the advanced debugging under Tools -> Debugging -> Advanced Debugging with DBUG -> Enable.
You do NOT need to add the _DBug.au3 to your includes. (The ISN does this for you in the background 😅)

Then, every time you start your script/project the DEBUG GUI should appear and setting breakpoints and so on should work.

  On 4/29/2019 at 1:50 AM, Mbee said:

I think the GUI aspects of DBUG were supplied by yourself and not him.

Expand  

Nope, the GUI Elements are not supplied from the ISN AutoIt Studio. They all come from the DBUG tool itselfe.

Edited by ISI360
Posted

I thought I'd try it out.  I'm getting an error when I try to run a script saying:

"Cannot start script, AutoIt3.exe not found! Please check program paths!"

When I check the program paths in settings I don't see which path should be pointing to AutoIt3.exe.

I have AutoIt3.exe in C:\Programs\AutoIt3\Aut2Exe\Aut2exe.exe

And in the script folder.

 

Posted (edited)

If you have a AutoIt3.exe in your C:\Programs\AutoIt3\Aut2Exe directory, then something is clearly wrong with your AutoIt installation :P
(Also you don´t need the exe in the script folder)

Normally (if autoit is installed properly) the path to autoit3.exe is "C:\Program Files (x86)\AutoIt3\AutoIt3.exe" OR "C:\Program Files\AutoIt3\AutoIt3.exe".
Check your paths in the ISN AutoIt Studio settings: File -> Program Settings -> File paths -> AutoIt paths.
There is also a button to find the needed paths automatically.

Hope it helps you.

Edited by ISI360

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
×
×
  • Create New...