* Enhancement: added support for writing to a different folder than the source code (Doug Hennig) * Enhancement: added configuration item: HomeDir, which determines if HomeDir is saved in PJ2 files (Doug Hennig)
27 lines
869 B
Plaintext
27 lines
869 B
Plaintext
lparameters toUpdateObject
|
|
local ldDate
|
|
ldDate = date()
|
|
toUpdateObject.AvailableVersion = 'FoxBin2Prg-1.19.58' + ;
|
|
'-update-' + dtoc(ldDate, 1)
|
|
return toUpdateObject
|
|
|
|
* Get the notes for the project. Edit this code as necessary.
|
|
|
|
procedure GetNotes
|
|
local lcNotes
|
|
text to lcNotes noshow
|
|
Developed by Fernando D. Bozzo - GitHub: https://github.com/fdbozzo/foxbin2prg
|
|
|
|
FoxBin2Prg is a 2-way conversor for Visual FoxPro 9 binary files intended to be used with SCM tools (Diff and Merge operations) or just for backup
|
|
|
|
Supported formats are: PJX, PJM, SCX, VCX, FRX, LBX, MNX, DBC, DBF
|
|
|
|
Demo video using FoxBin2Prg with PlasticSCM: http://youtu.be/sE4wQ50Itqg
|
|
|
|
Change History -------------------------------------------------------------
|
|
* look at https://github.com/fdbozzo/foxbin2prg/wiki/FoxBin2Prg-Full-Change-History
|
|
|
|
EndText
|
|
|
|
return lcNotes
|