- Add LOG info about config.fpw used and CodePage

This commit is contained in:
fdbozzo
2018-03-16 18:09:56 +01:00
parent d6a51fe06e
commit 0695c27a2f
2 changed files with 6 additions and 2 deletions

View File

@@ -2,8 +2,8 @@ Lparameters toUpdateInfo
Local lcNote
With toUpdateInfo
.VersionNumber = 'v1.19.50.3'
.VersionDate = Date(2018,03,15)
.VersionNumber = 'v1.19.51'
.VersionDate = Date(2018,03,16)
.SourceFileUrl = 'http://vfpxrepository.com/dl/thorupdate/Projects/FoxBin2Prg/FoxBin2Prg.Zip'
.Link = 'http://vfpx.codeplex.com/wikipage?title=FoxBin2PRG'
@@ -21,6 +21,9 @@ Demo video using FoxBin2Prg with PlasticSCM: http://youtu.be/sE4wQ50Itqg
Change History -------------------------------------------------------------
2018-03-16 v1.19.51
- Add LOG info about config.fpw used and CodePage
2018-03-15 v1.19.50.3
- Bug Fix: When adding some non-VFP text files like html,css,etc, in the text section of the project, FoxBin2Prg does not keep this selection when regenerating the PJX, leaving them in the files section (Darko Kezic)

View File

@@ -950,6 +950,7 @@ DEFINE CLASS c_foxbin2prg AS Session
THIS.writeLog( 'FoxBin2Prg INIT -', 2 )
THIS.writeLog( REPLICATE( '*', 100 ) )
THIS.writeLog( 'FoxBin2Prg: [' + THIS.c_Foxbin2prg_FullPath + '] (EXE Version: ' + THIS.c_FB2PRG_EXE_Version + ', FoxPro Version: ' + VERSION(4) + ')' )
THIS.writeLog( TEXTMERGE( '- Internal CFG: <<SYS(2019,2)>> / External CFG: <<SYS(2019,1)>> / CodePage Used: <<CPCURRENT()>>)' ) )
THIS.changeLanguage()
THIS.o_FSO = CREATEOBJECT("Scripting.FileSystemObject")