- Bug Fix: When converting a DBF an error is thrown if there is a field called X or I (Francisco Prieto)
This commit is contained in:
@@ -2,8 +2,8 @@ Lparameters toUpdateInfo
|
|||||||
|
|
||||||
Local lcNote
|
Local lcNote
|
||||||
With toUpdateInfo
|
With toUpdateInfo
|
||||||
.VersionNumber = 'v1.19.49.6'
|
.VersionNumber = 'v1.19.49.7'
|
||||||
.VersionDate = Date(2018,01,06)
|
.VersionDate = Date(2018,01,11)
|
||||||
.SourceFileUrl = 'http://vfpxrepository.com/dl/thorupdate/Projects/FoxBin2Prg/FoxBin2Prg.Zip'
|
.SourceFileUrl = 'http://vfpxrepository.com/dl/thorupdate/Projects/FoxBin2Prg/FoxBin2Prg.Zip'
|
||||||
|
|
||||||
.Link = 'http://vfpx.codeplex.com/wikipage?title=FoxBin2PRG'
|
.Link = 'http://vfpx.codeplex.com/wikipage?title=FoxBin2PRG'
|
||||||
@@ -21,11 +21,14 @@ Demo video using FoxBin2Prg with PlasticSCM: http://youtu.be/sE4wQ50Itqg
|
|||||||
|
|
||||||
Change History -------------------------------------------------------------
|
Change History -------------------------------------------------------------
|
||||||
|
|
||||||
2018/01/04 v1.19.49.6
|
2018-01-11 v1.19.49.7
|
||||||
|
- Bug Fix: When converting a DBF an error is thrown if there is a field called X or I (Francisco Prieto)
|
||||||
|
|
||||||
|
2018/01/04 v1.19.49.6
|
||||||
- BugFix vcx/scx: FoxBin2Prg should ignore the records that VFP Designer ignores (Doug Hennig / https://github.com/fdbozzo/foxbin2prg/issues/15)
|
- BugFix vcx/scx: FoxBin2Prg should ignore the records that VFP Designer ignores (Doug Hennig / https://github.com/fdbozzo/foxbin2prg/issues/15)
|
||||||
- BugFix vcx/scx: FoxBin2Prg encodes MemberData property with CR/LF, which can cause "property '_memberdata' value is too long" error (Doug Hennig / https://github.com/fdbozzo/foxbin2prg/issues/16)
|
- BugFix vcx/scx: FoxBin2Prg encodes MemberData property with CR/LF, which can cause "property '_memberdata' value is too long" error (Doug Hennig / https://github.com/fdbozzo/foxbin2prg/issues/16)
|
||||||
|
|
||||||
2017/12/20 v1.19.49.5
|
2017/12/20 v1.19.49.5
|
||||||
- BugFix DBF: When FoxBin2PRG converts a DB2 file to a DBF file and imports the data (using DBF_Conversion_Support = 8), tabs at the start of lines in memo fields are lost (Doug Hennig / https://github.com/fdbozzo/foxbin2prg/issues/13)
|
- BugFix DBF: When FoxBin2PRG converts a DB2 file to a DBF file and imports the data (using DBF_Conversion_Support = 8), tabs at the start of lines in memo fields are lost (Doug Hennig / https://github.com/fdbozzo/foxbin2prg/issues/13)
|
||||||
|
|
||||||
2017/12/04 v1.19.49.4
|
2017/12/04 v1.19.49.4
|
||||||
|
|||||||
Binary file not shown.
@@ -2,10 +2,10 @@ lparameters toUpdateObject
|
|||||||
local ldDate, ;
|
local ldDate, ;
|
||||||
lnJulian, ;
|
lnJulian, ;
|
||||||
lcJulian
|
lcJulian
|
||||||
ldDate = date(2018,1,8)
|
ldDate = date(2018,1,11)
|
||||||
lnJulian = val(sys(11, ldDate)) - val(sys(11, {^2000-01-01}))
|
lnJulian = val(sys(11, ldDate)) - val(sys(11, {^2000-01-01}))
|
||||||
lcJulian = padl(transform(lnJulian), 4, '0')
|
lcJulian = padl(transform(lnJulian), 4, '0')
|
||||||
toUpdateObject.AvailableVersion = 'FoxBin2Prg-1.19.49.6' + lcJulian + ;
|
toUpdateObject.AvailableVersion = 'FoxBin2Prg-1.19.49.7' + lcJulian + ;
|
||||||
'-update-' + dtoc(ldDate, 1)
|
'-update-' + dtoc(ldDate, 1)
|
||||||
return toUpdateObject
|
return toUpdateObject
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
appName = FoxBin2Prg
|
appName = FoxBin2Prg
|
||||||
appID = FoxBin2Prg
|
appID = FoxBin2Prg
|
||||||
majorVersion = 1.19.49.6
|
majorVersion = 1.19.49.7
|
||||||
excludeFiles = *.bak,*.bat,*.fxp,*.tbk,*.tmp,*.dat,*.log,*.cvp,README.md,.gitignore,*.zip*,*.7z*,*- copia.*,*.private.*,test_*.*,xx*.*,*.lnk,vfp_init.*,tmp*.*,*.err
|
excludeFiles = *.bak,*.bat,*.fxp,*.tbk,*.tmp,*.dat,*.log,*.cvp,README.md,.gitignore,*.zip*,*.7z*,*- copia.*,*.private.*,test_*.*,xx*.*,*.lnk,vfp_init.*,tmp*.*,*.err
|
||||||
excludeFolders = *.plastic*,*ThorUpdater*,*Documentacion*,*foxunit*,*foxunit_*,*pruebas varias*,*versiones*,*datos_test*
|
excludeFolders = *.plastic*,*ThorUpdater*,*Documentacion*,*foxunit*,*foxunit_*,*pruebas varias*,*versiones*,*datos_test*
|
||||||
|
|||||||
BIN
foxbin2prg.exe
BIN
foxbin2prg.exe
Binary file not shown.
1730
foxbin2prg.prg
1730
foxbin2prg.prg
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user