Skip to content

Commit

Permalink
1.005.29:
Browse files Browse the repository at this point in the history
Fixed: Reported by mattcrf
-DebugWindow: Wasn't handling UTF-8 characters
  • Loading branch information
maestrith committed Jul 3, 2020
1 parent d315dbc commit 6b8662a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
10 changes: 6 additions & 4 deletions AHK-Studio.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE
OR PERFORMANCE OF THIS SOFTWARE.
)
Setup(11),Hotkeys(11,{"Esc":"11Close"}), Version:= Version:=1.005.28
Setup(11),Hotkeys(11,{"Esc":"11Close"}), Version:= Version:=1.005.29
Gui,Margin,0,0
sc:=new s(11,{pos:"x0 y0 w700 h500"}),CSC({hwnd:sc})
Gui,Add,Button,gdonate,Donate
Expand Down Expand Up @@ -2456,7 +2456,7 @@ Class MainWindowClass{
sc:=new ExtraScintilla(1,{pos:"x" ea.x " y" ea.y " w" ea.w " h" ea.h}),hwnd:=sc.sc+0,v.debug:=sc,Color(sc)
Loop,4
sc.2242(A_Index-1,0)
sc.2403(0x08,0)
sc.2403(0x08,0),sc.2268(1)
}else if(ea.type="Search"){
hwnd:=SearchWin(ll)
}else
Expand Down Expand Up @@ -2835,7 +2835,7 @@ Class PluginClass{
sc.2003(sc.2006,"`n")
if(Sleep)
Sleep,%Sleep%
sc.2003(sc.2006,Text),sc.2025(sc.2006)
Length:=VarSetCapacity(TT,StrPut(Text,"UTF-8")),StrPut(Text,&TT,Length,"UTF-8"),sc.2003(sc.2006,&TT),sc.2025(sc.2006)
if(MsgBox)
m(MsgBox=1?"Pause":MsgBox)
if(AutoHide)
Expand Down Expand Up @@ -6064,7 +6064,9 @@ DebugHighlight(){
SelectDebugLine(b)
}
}}
DebugWindow(x*){
DebugWindow(Text,Clear:=0,LineBreak:=0,Sleep:=0,AutoHide:=0){
x:=ComObjActive("{DBD5A90A-A85C-11E4-B0C7-43449580656B}")
x.DebugWindow(Text,Clear,LineBreak,Sleep,AutoHide)
}
Default_Project_Folder(){
Dir:=Settings.SSN("//directory").text
Expand Down
6 changes: 3 additions & 3 deletions AHK-Studio.text
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
1.005.28
Fixed: Reported by Tigerlily
-Save As: When you save a file over itself bad things happen.
1.005.29
Fixed: Reported by mattcrf
-DebugWindow: Wasn't handling UTF-8 characters

0 comments on commit 6b8662a

Please sign in to comment.