Skip to content

Commit

Permalink
* Fixed missing or mixed rows when importing files.
Browse files Browse the repository at this point in the history
* Automatically adding escape char in delimiter em omit chars in Loop window.
  • Loading branch information
Pulover committed Jan 26, 2021
1 parent f182297 commit 5b8a072
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 9 deletions.
6 changes: 5 additions & 1 deletion Documentation/About.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Author: Pulover \[Rodolfo U. Batista\]
Copyright © 2012-2021 Rodolfo U. Batista

Version: 5.3.9
Version: 5.4.0
Release Date: January, 2021
AutoHotkey Version: 1.1.32.00

Expand Down Expand Up @@ -38,6 +38,10 @@ chosen1ft for suggestions and testing.

# Change Log

## Version 5.4.0
* Fixed missing or mixed rows when importing files.
* Automatically adding escape char in delimiter em omit chars in Loop window.

## Version 5.3.9
* Fixed bug in Get-Area button in Image/Pixel Search window.

Expand Down
2 changes: 1 addition & 1 deletion Documentation/MacroCreator_Help.ahk
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
Library: Pulover's Macro Creator
# Version: 5.3.9
# Version: 5.4.0
[www.macrocreator.com](https://www.macrocreator.com)
[Forum](https://www.autohotkey.com/boards/viewforum.php?f=63)
Expand Down
2 changes: 2 additions & 0 deletions LIB/Class_PMC.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@
Gui, 1:+Disabled
Gui, chMacro:Default
StringSplit, SelectedFile, SelectedFile, %DL%, `r
GuiControl, chMacro:Choose, A_List, 1
Gui, chMacro:Submit, NoHide
Critical, 800
Loop, %SelectedFile0%
{
Expand Down
20 changes: 14 additions & 6 deletions MacroCreator.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
; Author: Pulover [Rodolfo U. Batista]
; Home: https://www.macrocreator.com
; Forum: https://www.autohotkey.com/boards/viewforum.php?f=63
; Version: 5.3.9
; Version: 5.4.0
; Release Date: January, 2021
; AutoHotkey Version: 1.1.32.00
; Copyright © 2012-2021 Rodolfo U. Batista
Expand Down Expand Up @@ -77,7 +77,7 @@ https://www.macrocreator.com/project/
; Compiler Settings
;@Ahk2Exe-SetName Pulover's Macro Creator
;@Ahk2Exe-SetDescription Pulover's Macro Creator
;@Ahk2Exe-SetVersion 5.3.9
;@Ahk2Exe-SetVersion 5.4.0
;@Ahk2Exe-SetCopyright Copyright © 2012-2021 Rodolfo U. Batista
;@Ahk2Exe-SetOrigFilename MacroCreator.exe

Expand Down Expand Up @@ -144,7 +144,7 @@ Loop
break
}

CurrentVersion := "5.3.9", ReleaseDate := "January, 2021"
CurrentVersion := "5.4.0", ReleaseDate := "January, 2021"

;##### Ini File Read #####

Expand Down Expand Up @@ -321,8 +321,8 @@ If (Version < "5.1.2")
EvalDefault := 1
If (Version < "5.0.0")
ShowTips := 1, NextTip := 1, MainLayout := "ERROR", UserLayout := "ERROR"
If (LangVersion < 7)
LangVersion := 7, LangLastCheck := 7
If (LangVersion < 8)
LangVersion := 8, LangLastCheck := 8

User_Vars := new ObjIni(UserVarsPath)
User_Vars.Read()
Expand Down Expand Up @@ -4194,7 +4194,7 @@ SplashTextOn, 300, 25, %AppName%, %d_Lang091%
WinHttpDownloadToFile(VerChk.DlUrl, A_Temp)
SplashTextOff
File := A_Temp "\" RegExReplace(VerChk.DlUrl, ".*/")
Run, %File% /SILENT /FORCECLOSEAPPLICATIONS, %A_Temp%
Run, %File% /FORCECLOSEAPPLICATIONS, %A_Temp%
GoSub, Exit
return

Expand Down Expand Up @@ -6788,6 +6788,14 @@ Else If (LParse = 1)
return
}
EscCom(false, Delim), EscCom(false, Omit)
If (InStr(Delim, ";") && !InStr(Delim, "``;"))
Delim := RegExReplace(Delim, ";", "``;")
If (InStr(Delim, "%") && !InStr(Delim, "``%"))
Delim := RegExReplace(Delim, "%", "``%")
If (InStr(Omit, ";") && !InStr(Omit, "``;"))
Omit := RegExReplace(Omit, ";", "``;")
If (InStr(Omit, "%") && !InStr(Omit, "``%"))
Omit := RegExReplace(Omit, "%", "``%")
Details := LParamsFile ", " Delim ", " Omit
TimesL := 1, Type := cType39
}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Pulover's Macro Creator is a Free Automation Tool and Script Generator based on

[www.macrocreator.com](https://www.macrocreator.com)

**Current Version:** 5.3.9
**Current Version:** 5.4.0

### Supported platforms

Expand Down

0 comments on commit 5b8a072

Please sign in to comment.