Test issue 95
This commit is contained in:
302
README.md
302
README.md
@@ -1,151 +1,151 @@
|
|||||||
# FoxBin2Prg v1.19.78
|
# FoxBin2Prg v1.19.79
|
||||||
**Binary/Text Converting program for Microsoft Visual FoxPro**
|
**Binary/Text Converting program for Microsoft Visual FoxPro**
|
||||||
|
|
||||||
## Lutz Scheffler
|
## Lutz Scheffler
|
||||||

|

|
||||||
|
|
||||||
This is the perpetuation of [Fernando D. Bozzo](https://github.com/fdbozzo) foxbin2prg.
|
This is the perpetuation of [Fernando D. Bozzo](https://github.com/fdbozzo) foxbin2prg.
|
||||||
It's the main tool with some bugs fixes and some new functions.
|
It's the main tool with some bugs fixes and some new functions.
|
||||||
Since I now maintain this project, my [fork](https://github.com/lscheffler/foxbin2prg) is no longer in sync.
|
Since I now maintain this project, my [fork](https://github.com/lscheffler/foxbin2prg) is no longer in sync.
|
||||||
|
|
||||||
The spanish documentation is not longer maintained - it would fade.
|
The spanish documentation is not longer maintained - it would fade.
|
||||||
For fast access a quick run is [introduced](#use-foxbin2prg), more [complex](./docs/FoxBin2Prg_Run.md#usage-1), and a large [documentation](./docs/FoxBin2Prg.md) exists too.
|
For fast access a quick run is [introduced](#use-foxbin2prg), more [complex](./docs/FoxBin2Prg_Run.md#usage-1), and a large [documentation](./docs/FoxBin2Prg.md) exists too.
|
||||||
If you do not access FoxBin2Prg via [Thor](https://github.com/VFPX/Thor) remind yourself to compile the exe first.
|
If you do not access FoxBin2Prg via [Thor](https://github.com/VFPX/Thor) remind yourself to compile the exe first.
|
||||||
|
|
||||||
---
|
---
|
||||||
---
|
---
|
||||||
If you like to value my work, support the Geeks at
|
If you like to value my work, support the Geeks at
|
||||||
[](https://virtualfoxfest.com/) or [](https://www.swfox.net).
|
[](https://virtualfoxfest.com/) or [](https://www.swfox.net).
|
||||||
I also do not reject invitations to a beer, next time in Gilbert.
|
I also do not reject invitations to a beer, next time in Gilbert.
|
||||||
|
|
||||||
---
|
---
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
If you like to see Fernandos blog, or value his work:
|
If you like to see Fernandos blog, or value his work:
|
||||||
- Blog: http://fdbozzo.blogspot.com.es/
|
- Blog: http://fdbozzo.blogspot.com.es/
|
||||||
- [](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=fdbozzo%40gmail%2ecom&lc=ES&item_name=FoxBin2Prg&item_number=FoxBin2Prg&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
|
- [](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=fdbozzo%40gmail%2ecom&lc=ES&item_name=FoxBin2Prg&item_number=FoxBin2Prg&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
|
||||||
|
|
||||||
Thank you for your support!
|
Thank you for your support!
|
||||||
|
|
||||||
----
|
----
|
||||||
## Contribution
|
## Contribution
|
||||||
See [contribution](./.github/CONTRIBUTING.md)
|
See [contribution](./.github/CONTRIBUTING.md)
|
||||||
|
|
||||||
---
|
---
|
||||||
---
|
---
|
||||||
|
|
||||||
## What is FOXBIN2PRG?
|
## What is FOXBIN2PRG?
|
||||||
It is a program intended to be used with **SCM tools** (Source Code Managers, like VSS, CVS, SVN)
|
It is a program intended to be used with **SCM tools** (Source Code Managers, like VSS, CVS, SVN)
|
||||||
and *DVCS tools* (Version Control Systems such as Git, Mercurial, Plastic, and others),
|
and *DVCS tools* (Version Control Systems such as Git, Mercurial, Plastic, and others),
|
||||||
or as **standalone** program for **Diff** (viewing differences) and **Merge** operations.
|
or as **standalone** program for **Diff** (viewing differences) and **Merge** operations.
|
||||||
Foxbin2prg can substitute for **SccText/X**, **TwoFox** and others,
|
Foxbin2prg can substitute for **SccText/X**, **TwoFox** and others,
|
||||||
and enhance their functionality, generating bidirectional PRG-Style versions of Foxpro binary files that allow recreating the original binary file.
|
and enhance their functionality, generating bidirectional PRG-Style versions of Foxpro binary files that allow recreating the original binary file.
|
||||||
|
|
||||||
## Advantages:
|
## Advantages:
|
||||||
|
|
||||||
* It generates "PRG" _style_ text files from Foxpro binary files for use in SCM and VCS systems and for visual comparison.
|
* It generates "PRG" _style_ text files from Foxpro binary files for use in SCM and VCS systems and for visual comparison.
|
||||||
|
|
||||||
(it's not really a prg, and can not be compiled, but it reads like one to Foxpro developers.)
|
(it's not really a prg, and can not be compiled, but it reads like one to Foxpro developers.)
|
||||||
* It enables the change of the Text version as easy as modifying a PRG.
|
* It enables the change of the Text version as easy as modifying a PRG.
|
||||||
* All the program code for any binary file (a form, a report, a class) is in just one text file, to simplify its maintainability.
|
* All the program code for any binary file (a form, a report, a class) is in just one text file, to simplify its maintainability.
|
||||||
* You can regenerate the original binaries from the text files, so it is useful as backup
|
* You can regenerate the original binaries from the text files, so it is useful as backup
|
||||||
* The extensions are configurable if you create a FOXBIN2PRG.CFG file
|
* The extensions are configurable if you create a FOXBIN2PRG.CFG file
|
||||||
* Inheritance of CFG configuration files between directories
|
* Inheritance of CFG configuration files between directories
|
||||||
* Methods and properties of Text versions are alphabetically sorted for easy comparison
|
* Methods and properties of Text versions are alphabetically sorted for easy comparison
|
||||||
* You can set the "UseClassPerFile" setting to create individual files by class or DBC member.
|
* You can set the "UseClassPerFile" setting to create individual files by class or DBC member.
|
||||||
|
|
||||||
(Which violates number three above, but it may be what you want.)
|
(Which violates number three above, but it may be what you want.)
|
||||||
* Takes advantage of the Win32 API using foxbin2prg as an object
|
* Takes advantage of the Win32 API using foxbin2prg as an object
|
||||||
* It has compatibility with SccText/X at the parameter level so that it can be used as substitute for SccText with SourceSafe. (Not that we recommend SourceSafe.)
|
* It has compatibility with SccText/X at the parameter level so that it can be used as substitute for SccText with SourceSafe. (Not that we recommend SourceSafe.)
|
||||||
* Productivity: You can create a shortcut in the "SendTo" folder on your user Windows Profile, so you can "send" the selected file (pjx,pj2,etc) to Foxbin2prg.exe and make on-the-fly conversions
|
* Productivity: You can create a shortcut in the "SendTo" folder on your user Windows Profile, so you can "send" the selected file (pjx,pj2,etc) to Foxbin2prg.exe and make on-the-fly conversions
|
||||||
* You can modify the TX2 Prg-Style versions of your objects with MODIFY COMMAND (without compile) to see colored syntax, or even use the Document View to navigate the procedures
|
* You can modify the TX2 Prg-Style versions of your objects with MODIFY COMMAND (without compile) to see colored syntax, or even use the Document View to navigate the procedures
|
||||||
* Get back your SourceSafe projects (.pjx) from their .pjm file
|
* Get back your SourceSafe projects (.pjx) from their .pjm file
|
||||||
|
|
||||||
The program supports conversions between PJX,SCX,VCX,FRX,LBX,DBC,DBF and MNX files, for which it generates TEXT versions with extension PJ2,SC2,VC2,FR2,LB2,DC2,DB2 and MN2. If you want, the created text file extensions can be reconfigured to be compatibilize with SourceSafe.
|
The program supports conversions between PJX,SCX,VCX,FRX,LBX,DBC,DBF and MNX files, for which it generates TEXT versions with extension PJ2,SC2,VC2,FR2,LB2,DC2,DB2 and MN2. If you want, the created text file extensions can be reconfigured to be compatibilize with SourceSafe.
|
||||||
|
|
||||||
## Examples
|
## Examples
|
||||||
### Redefine extensions of _Text_
|
### Redefine extensions of _Text_
|
||||||
Here is an example of a FOXBIN2PRG.CFG configuration file if you need to change extensions for using it with a specific VSS (SourceSafe)
|
Here is an example of a FOXBIN2PRG.CFG configuration file if you need to change extensions for using it with a specific VSS (SourceSafe)
|
||||||
```
|
```
|
||||||
extension: SC2=SCA
|
extension: SC2=SCA
|
||||||
extension: VC2=VCA
|
extension: VC2=VCA
|
||||||
extension: PJ2=PJA
|
extension: PJ2=PJA
|
||||||
extension: MN2=MNA
|
extension: MN2=MNA
|
||||||
extension: FR2=FRA
|
extension: FR2=FRA
|
||||||
extension: LB2=LBA
|
extension: LB2=LBA
|
||||||
extension: DB2=DBA
|
extension: DB2=DBA
|
||||||
extension: DC2=DCA
|
extension: DC2=DCA
|
||||||
```
|
```
|
||||||
|
|
||||||
### Use FoxBin2Prg
|
### Use FoxBin2Prg
|
||||||
```
|
```
|
||||||
DO FOXBIN2PRG.PRG WITH "<path>\archivo.scx" ==> Generates the TEXT version sc2 extension
|
DO FOXBIN2PRG.PRG WITH "<path>\archivo.scx" ==> Generates the TEXT version sc2 extension
|
||||||
DO FOXBIN2PRG.PRG WITH "<path>\archivo.sc2" ==> Regenerates the binary version with scx extension
|
DO FOXBIN2PRG.PRG WITH "<path>\archivo.sc2" ==> Regenerates the binary version with scx extension
|
||||||
|
|
||||||
DO FOXBIN2PRG.PRG WITH "-c","template.cfg" ==> Generates a template for FoxBin2Prg.cfg config file with newest settings
|
DO FOXBIN2PRG.PRG WITH "-c","template.cfg" ==> Generates a template for FoxBin2Prg.cfg config file with newest settings
|
||||||
DO FOXBIN2PRG.PRG WITH "-t","template.dbf.cfg" ==> Generates a template for table.dbf.cfg per table config file with newest settings
|
DO FOXBIN2PRG.PRG WITH "-t","template.dbf.cfg" ==> Generates a template for table.dbf.cfg per table config file with newest settings
|
||||||
```
|
```
|
||||||
|
|
||||||
### Interactive list of options
|
### Interactive list of options
|
||||||
```
|
```
|
||||||
DO FOXBIN2PRG.PRG WITH "?"
|
DO FOXBIN2PRG.PRG WITH "?"
|
||||||
```
|
```
|
||||||
|
|
||||||
### Use with MS Windows SendTo
|
### Use with MS Windows SendTo
|
||||||
You can create up to three different shortcuts pointing to FoxBin2Prg.exe and in your "SendTo" folder in your Windows profile. This allows you to "send" a selected file (pjx,pj2,etc) to the selected option, and make on-the-fly conversions. (Make sure you have the option for seeing known file extensions turned on!):
|
You can create up to three different shortcuts pointing to FoxBin2Prg.exe and in your "SendTo" folder in your Windows profile. This allows you to "send" a selected file (pjx,pj2,etc) to the selected option, and make on-the-fly conversions. (Make sure you have the option for seeing known file extensions turned on!):
|
||||||
|
|
||||||
#### Process directories or individual files to _Text_
|
#### Process directories or individual files to _Text_
|
||||||
- Name:
|
- Name:
|
||||||
`FoxBin2Prg - Binary2Text.lnk`
|
`FoxBin2Prg - Binary2Text.lnk`
|
||||||
- Right-click/Properties/destination_
|
- Right-click/Properties/destination_
|
||||||
`<path>\foxbin2prg.exe "BIN2PRG-SHOWMSG"`
|
`<path>\foxbin2prg.exe "BIN2PRG-SHOWMSG"`
|
||||||
#### Process directories or individual files to _Binary_
|
#### Process directories or individual files to _Binary_
|
||||||
- Name:
|
- Name:
|
||||||
`FoxBin2Prg - Text2Binary.lnk`
|
`FoxBin2Prg - Text2Binary.lnk`
|
||||||
- Right-click/Properties/destination_
|
- Right-click/Properties/destination_
|
||||||
`<path>\foxbin2prg.exe "PRG2BIN-SHOWMSG"`
|
`<path>\foxbin2prg.exe "PRG2BIN-SHOWMSG"`
|
||||||
#### Process individual files or directories asking what to convert
|
#### Process individual files or directories asking what to convert
|
||||||
- Name:
|
- Name:
|
||||||
`FoxBin2Prg.lnk`
|
`FoxBin2Prg.lnk`
|
||||||
- Right-click/Properties/destination_
|
- Right-click/Properties/destination_
|
||||||
`<path>\foxbin2prg.exe "INTERACTIVE-SHOWMSG"`
|
`<path>\foxbin2prg.exe "INTERACTIVE-SHOWMSG"`
|
||||||
|
|
||||||
##### How to use the links
|
##### How to use the links
|
||||||
Select a file, right-click, SendTo -> FoxBin2Prg
|
Select a file, right-click, SendTo -> FoxBin2Prg
|
||||||
|
|
||||||
## LOCALIZATION:
|
## LOCALIZATION:
|
||||||
Is automatic starting at v1.19.38 (Languages: EN,ES,FR,DE)
|
Is automatic starting at v1.19.38 (Languages: EN,ES,FR,DE)
|
||||||
|
|
||||||
## FINAL NOTE:
|
## FINAL NOTE:
|
||||||
This program is Open Source and "libre", and I don't make any guaranties that it fulfills your expectations or that it will be free of bugs.
|
This program is Open Source and "libre", and I don't make any guaranties that it fulfills your expectations or that it will be free of bugs.
|
||||||
I will try to fix bugs if my obligations let me do it.
|
I will try to fix bugs if my obligations let me do it.
|
||||||
|
|
||||||
## LICENCE:
|
## LICENCE:
|
||||||
This work is licensed under the Creative Commons Attribution 4.0 International License.
|
This work is licensed under the Creative Commons Attribution 4.0 International License.
|
||||||
To view a copy of this license, visit http://creativecommons.org/licenses/by/4.0/.
|
To view a copy of this license, visit http://creativecommons.org/licenses/by/4.0/.
|
||||||
|
|
||||||
---
|
---
|
||||||
---
|
---
|
||||||
## Changes
|
## Changes
|
||||||
See [Changes](./docs/FoxBin2Prg_Changes.md)
|
See [Changes](./docs/FoxBin2Prg_Changes.md)
|
||||||
|
|
||||||
### Changes to Settings
|
### Changes to Settings
|
||||||
To get the new settings in config file, use the new create-a-template function:
|
To get the new settings in config file, use the new create-a-template function:
|
||||||
|
|
||||||
```
|
```
|
||||||
DO FOXBIN2PRG.PRG WITH "-c","template.cfg" ==> Generates a template for FoxBin2Prg.cfg config file with newest default settings
|
DO FOXBIN2PRG.PRG WITH "-c","template.cfg" ==> Generates a template for FoxBin2Prg.cfg config file with newest default settings
|
||||||
DO FOXBIN2PRG.PRG WITH "-C","template.cfg" ==> Generates a template for FoxBin2Prg.cfg config file with active settings
|
DO FOXBIN2PRG.PRG WITH "-C","template.cfg" ==> Generates a template for FoxBin2Prg.cfg config file with active settings
|
||||||
DO FOXBIN2PRG.PRG WITH "-t","template.dbf.cfg" ==> Generates a template for table.dbf.cfg per table config file with newest settings
|
DO FOXBIN2PRG.PRG WITH "-t","template.dbf.cfg" ==> Generates a template for table.dbf.cfg per table config file with newest settings
|
||||||
```
|
```
|
||||||
|
|
||||||
----
|
----
|
||||||
## Limitations
|
## Limitations
|
||||||
If dealing with project files, FoxBin2Prg will fail if files of the project are not stored on the drive of the project.
|
If dealing with project files, FoxBin2Prg will fail if files of the project are not stored on the drive of the project.
|
||||||
See [issue #93](https://github.com/fdbozzo/foxbin2prg/issues/93).
|
See [issue #93](https://github.com/fdbozzo/foxbin2prg/issues/93).
|
||||||
|
|
||||||
----
|
----
|
||||||
## Usage
|
## Usage
|
||||||
For usage see [documentation](./docs/FoxBin2Prg.md)
|
For usage see [documentation](./docs/FoxBin2Prg.md)
|
||||||
|
|
||||||
Last changed: _2023/03/20_ 
|
Last changed: _2023/08/04_ 
|
||||||
@@ -1,427 +1,428 @@
|
|||||||
# FoxBin2Prg Change log
|
# FoxBin2Prg Change log
|
||||||
Documentation of FoxBin2Prg - A Binary to Text converter for MS Visual Foxpro 9
|
Documentation of FoxBin2Prg - A Binary to Text converter for MS Visual Foxpro 9
|
||||||
|
|
||||||
## Purpose of this document
|
## Purpose of this document
|
||||||
List of Changes, Bugfixes and modifications.
|
List of Changes, Bugfixes and modifications.
|
||||||
|
|
||||||
For settings, API and other realted stuff see [Internals](./FoxBin2Prg_Internals.md).
|
For settings, API and other realted stuff see [Internals](./FoxBin2Prg_Internals.md).
|
||||||
|
|
||||||
The original document was created by [Fernando D. Bozzo](https://github.com/fdbozzo) whom I like to thank for the great project.
|
The original document was created by [Fernando D. Bozzo](https://github.com/fdbozzo) whom I like to thank for the great project.
|
||||||
Pictures are taken from the original project.
|
Pictures are taken from the original project.
|
||||||
As far as possible these are the original documents. Changes are added where functionality is changed.
|
As far as possible these are the original documents. Changes are added where functionality is changed.
|
||||||
|
|
||||||
----
|
----
|
||||||
## Table of contents
|
## Table of contents
|
||||||
- [Remark](#remark)
|
- [Remark](#remark)
|
||||||
- [Full Change History](#full-change-history)
|
- [Full Change History](#full-change-history)
|
||||||
|
|
||||||
For recent verisons see
|
For recent verisons see
|
||||||
 [FoxBin2PRG](https://github.com/fdbozzo/foxbin2prg)
|
 [FoxBin2PRG](https://github.com/fdbozzo/foxbin2prg)
|
||||||
|
|
||||||
## Full Change History
|
## Full Change History
|
||||||
This page is not only to get the history of the changes, but to keep a permanent list of people that have contributed to enhance FoxBin2Prg and that I feel as part of the ADN of this tool.
|
This page is not only to get the history of the changes, but to keep a permanent list of people that have contributed to enhance FoxBin2Prg and that I feel as part of the ADN of this tool.
|
||||||
|
|
||||||
It's my way of thanking them for their contribution.
|
It's my way of thanking them for their contribution.
|
||||||
|
|
||||||
_**Note:** you can click on the version number for downloading this version from GitHub, or you can get all the code history directly from the GitHub repository, which is more easy to search._
|
_**Note:** you can click on the version number for downloading this version from GitHub, or you can get all the code history directly from the GitHub repository, which is more easy to search._
|
||||||
|
|
||||||
| Rel.Date | Developer | Version | Details |
|
| Rel.Date | Developer | Version | Details |
|
||||||
| - | - | - | - |
|
| - | - | - | - |
|
||||||
| 2023/03/20 | LScheffler | [v1.19.78](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.78) | **Enhancement**: Text2Bin on PJX errors out for projects with an attach icon that has a drive letter on its path. #93 (ericbarte) |
|
| 2023/08/04 | LScheffler | [v1.19.79](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.79) | **Bug Fix**: Bin2Text: Forms with ole controls conversion error (also: any vcx) #95 (KestasL) |
|
||||||
| | | | **Enhancement**: Documentation enhanced |
|
| 2023/03/20 | LScheffler | [v1.19.78](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.78) | **Enhancement**: Text2Bin on PJX errors out for projects with an attach icon that has a drive letter on its path. #93 (ericbarte) |
|
||||||
| 2023/03/16 | LScheffler | [v1.19.77](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.77) | **Bug Fix**: Bin2Txt Operation on VCX loses leading spaces in Property Values #90 (JoergSchneider) |
|
| | | | **Enhancement**: Documentation enhanced |
|
||||||
| | | | **Bug Fix**: Txt2Bin Operation on VCX looses double ampersand in Property Values #91 (LScheffler) |
|
| 2023/03/16 | LScheffler | [v1.19.77](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.77) | **Bug Fix**: Bin2Txt Operation on VCX loses leading spaces in Property Values #90 (JoergSchneider) |
|
||||||
| 2022/11/09 | LScheffler | Docu | **Enhancement**: Documentation for git on handling line endings |
|
| | | | **Bug Fix**: Txt2Bin Operation on VCX looses double ampersand in Property Values #91 (LScheffler) |
|
||||||
| 2022/06/13 | LScheffler | [v1.19.76](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.76) | **Bug Fix**: On operation per folder, change of folder must change configuration (JoergSchneider) |
|
| 2022/11/09 | LScheffler | Docu | **Enhancement**: Documentation for git on handling line endings |
|
||||||
| 2022/06/08 | LScheffler | [v1.19.75](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.75) | **Bug Fix**: Multiple text2bin and bin2text conversion on MNX causes space grow (JoergSchneider) |
|
| 2022/06/13 | LScheffler | [v1.19.76](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.76) | **Bug Fix**: On operation per folder, change of folder must change configuration (JoergSchneider) |
|
||||||
| | | | **Enhancement**: Typo in German (JoergSchneider) |
|
| 2022/06/08 | LScheffler | [v1.19.75](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.75) | **Bug Fix**: Multiple text2bin and bin2text conversion on MNX causes space grow (JoergSchneider) |
|
||||||
| 2022/05/13 | bjornhoeksel | [v1.19.74](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.74) | **Bug Fix**: Fix menu bars with shortcuts keys like KEY F6, "F6"; are lost. (DanLauer) |
|
| | | | **Enhancement**: Typo in German (JoergSchneider) |
|
||||||
| 2022/04/08 | LScheffler | [v1.19.73](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.73) | **Bug Fix**: Problem converting trailing spaces on line end in memo (again) (bjornhoeksel) |
|
| 2022/05/13 | bjornhoeksel | [v1.19.74](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.74) | **Bug Fix**: Fix menu bars with shortcuts keys like KEY F6, "F6"; are lost. (DanLauer) |
|
||||||
| 2022/04/07 | LScheffler | [v1.19.72](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.72) | **Bug Fix**: Problem converting trailing spaces on line end in memo (bjornhoeksel) |
|
| 2022/04/08 | LScheffler | [v1.19.73](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.73) | **Bug Fix**: Problem converting trailing spaces on line end in memo (again) (bjornhoeksel) |
|
||||||
| | | | **Bug Fix**: Problem converting intentionally trailing spaces to VarChar/VarBinary (LScheffler) |
|
| 2022/04/07 | LScheffler | [v1.19.72](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.72) | **Bug Fix**: Problem converting trailing spaces on line end in memo (bjornhoeksel) |
|
||||||
| | | | **Bug Fix**: Bug Fix: Problem on using "DBF_Conversion_Support" on table configuration file (LScheffler) |
|
| | | | **Bug Fix**: Problem converting intentionally trailing spaces to VarChar/VarBinary (LScheffler) |
|
||||||
| | | | **Enhancement**: Documentation in config file enhanced |
|
| | | | **Bug Fix**: Bug Fix: Problem on using "DBF_Conversion_Support" on table configuration file (LScheffler) |
|
||||||
| | | | **Enhancement**: Added parameter "?" to show interactive help ("interactive" still works) |
|
| | | | **Enhancement**: Documentation in config file enhanced |
|
||||||
| 2022/03/30 | bjornhoeksel | [v1.19.71](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.71) | **Bug Fix**: Convert menu mn2 to mnx with skip for that contains a string with ; sign is missing part after that sign in mnx. (bjornhoeksel) |
|
| | | | **Enhancement**: Added parameter "?" to show interactive help ("interactive" still works) |
|
||||||
| 2022/03/16 | LScheffler | [v1.19.70](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.70) | **Bug Fix**: Last bar in menu files are in some situations not converted correctly back in the mnx file. (bjornhoeksel) |
|
| 2022/03/30 | bjornhoeksel | [v1.19.71](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.71) | **Bug Fix**: Convert menu mn2 to mnx with skip for that contains a string with ; sign is missing part after that sign in mnx. (bjornhoeksel) |
|
||||||
| | | | **Enhancement**: Buglist internal of FoxBin2Prg reordered |
|
| 2022/03/16 | LScheffler | [v1.19.70](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.70) | **Bug Fix**: Last bar in menu files are in some situations not converted correctly back in the mnx file. (bjornhoeksel) |
|
||||||
| | | | **Enhancement**: Enhancement to documentation |
|
| | | | **Enhancement**: Buglist internal of FoxBin2Prg reordered |
|
||||||
| 2022/02/25 | LScheffler | [v1.19.69](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.69) | **Bug Fix**: Missing class when building text file from corrupted VCX (bjornhoeksel) |
|
| | | | **Enhancement**: Enhancement to documentation |
|
||||||
| 2022/02/23 | LScheffler | [v1.19.69](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.69) | **Bug Fix**: Recreating a class while an object with same name exists in VCX fails (bjornhoeksel) |
|
| 2022/02/25 | LScheffler | [v1.19.69](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.69) | **Bug Fix**: Missing class when building text file from corrupted VCX (bjornhoeksel) |
|
||||||
| | | | **Enhancement**: Template configuration files FOXBIN2PRG.DBF.TXT and FOXBIN2PRG.DBF.CFG.TXT in English |
|
| 2022/02/23 | LScheffler | [v1.19.69](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.69) | **Bug Fix**: Recreating a class while an object with same name exists in VCX fails (bjornhoeksel) |
|
||||||
| | | | **Enhancement**: Examples and template for config files enhanced |
|
| | | | **Enhancement**: Template configuration files FOXBIN2PRG.DBF.TXT and FOXBIN2PRG.DBF.CFG.TXT in English |
|
||||||
| | | | **Enhancement**: Notice in contribution file to creating files above in English |
|
| | | | **Enhancement**: Examples and template for config files enhanced |
|
||||||
| | | | **Enhancement**: Started reworking double documentation |
|
| | | | **Enhancement**: Notice in contribution file to creating files above in English |
|
||||||
| 2022/01/18 | LScheffler | [v1.19.68](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.68) | **Bug Fix**: Converting MN2 to MNX ignores the programmer-defined "Pad Name" found in "Prompt Options" screen (Jimrnelson) |
|
| | | | **Enhancement**: Started reworking double documentation |
|
||||||
| | | | **Enhancement**: Minor links in readme.html |
|
| 2022/01/18 | LScheffler | [v1.19.68](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.68) | **Bug Fix**: Converting MN2 to MNX ignores the programmer-defined "Pad Name" found in "Prompt Options" screen (Jimrnelson) |
|
||||||
| 2021/08/20 | LScheffler | [v1.19.67](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.67) | **Bug Fix**: Double classes in VCX (LScheffler) |
|
| | | | **Enhancement**: Minor links in readme.html |
|
||||||
| | | | **Enhancement**: Templates and documentation for config files reworked |
|
| 2021/08/20 | LScheffler | [v1.19.67](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.67) | **Bug Fix**: Double classes in VCX (LScheffler) |
|
||||||
| 2021/08/20 | LScheffler | [v1.19.66](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.66) | **Bug Fix**: Incorrect version showing for v1.19.65 (siara-cc) |
|
| | | | **Enhancement**: Templates and documentation for config files reworked |
|
||||||
| | | | **Enhancement**: Incorrect links on documentation (siara-cc) |
|
| 2021/08/20 | LScheffler | [v1.19.66](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.66) | **Bug Fix**: Incorrect version showing for v1.19.65 (siara-cc) |
|
||||||
| 2021/05/20 | LScheffler | [v1.19.65](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.65) | **Bug Fix**: Parameters -cCt not working from command line. (LScheffler) |
|
| | | | **Enhancement**: Incorrect links on documentation (siara-cc) |
|
||||||
| 2021/04/22 | LScheffler | [v1.19.64](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.64) | **Bug Fix**: onverting MN2 to MNX ignores the programmer-defined bar # found in "Prompt Options" screen. (Jimrnelson) |
|
| 2021/05/20 | LScheffler | [v1.19.65](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.65) | **Bug Fix**: Parameters -cCt not working from command line. (LScheffler) |
|
||||||
| | | | **Bug Fix**: Converting MN2 to MNX ignores the programmer-defined Pad Name found in "Prompt Options" screen. (LScheffler) |
|
| 2021/04/22 | LScheffler | [v1.19.64](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.64) | **Bug Fix**: onverting MN2 to MNX ignores the programmer-defined bar # found in "Prompt Options" screen. (Jimrnelson) |
|
||||||
| 2021/04/12 | LScheffler | [v1.19.63](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.63) | **Bug Fix**: Tables without indexes cause an error that the __Table ## is not marked as belonging to the ## database.__ (jstagerGH) |
|
| | | | **Bug Fix**: Converting MN2 to MNX ignores the programmer-defined Pad Name found in "Prompt Options" screen. (LScheffler) |
|
||||||
| 2021/03/30 | LScheffler | [v1.19.62](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.62) | **Enhancement**: Debug logging, level of config file. |
|
| 2021/04/12 | LScheffler | [v1.19.63](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.63) | **Bug Fix**: Tables without indexes cause an error that the __Table ## is not marked as belonging to the ## database.__ (jstagerGH) |
|
||||||
| | | | **Bug Fix**: *_Conversion_Support options not read from config file. |
|
| 2021/03/30 | LScheffler | [v1.19.62](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.62) | **Enhancement**: Debug logging, level of config file. |
|
||||||
| | | | **Bug Fix**: Extension shift options not read from config file. (Sergej s-s-a) |
|
| | | | **Bug Fix**: *_Conversion_Support options not read from config file. |
|
||||||
| | | | **Bug Fix**: RedirectFilePerDBCToMain option was defined wrong in configuration example |
|
| | | | **Bug Fix**: Extension shift options not read from config file. (Sergej s-s-a) |
|
||||||
| 2021/03/23 | LScheffler | [v1.19.61](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.61) | **Bug Fix**: Missnamed property. |
|
| | | | **Bug Fix**: RedirectFilePerDBCToMain option was defined wrong in configuration example |
|
||||||
| 2021/03/22 | LScheffler | [v1.19.60](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.60) | **Enhancement**: FoxBin2Prg template and debug output: Completed and ordered, order synched, grouped and groups named at template. |
|
| 2021/03/23 | LScheffler | [v1.19.61](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.61) | **Bug Fix**: Missnamed property. |
|
||||||
| | | | **Enhancement**: Option BackgroundImage was read, but not in template |
|
| 2021/03/22 | LScheffler | [v1.19.60](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.60) | **Enhancement**: FoxBin2Prg template and debug output: Completed and ordered, order synched, grouped and groups named at template. |
|
||||||
| | | | **Enhancement**: -cC options learned to create default FoxBin2Prg._cfg file |
|
| | | | **Enhancement**: Option BackgroundImage was read, but not in template |
|
||||||
| | | | **Enhancement**: -t Option learned to create default \<tablename\>._cfg file, if table is open. |
|
| | | | **Enhancement**: -cC options learned to create default FoxBin2Prg._cfg file |
|
||||||
| | | | **Enhancement**: Handling of additional non structural index per DBF in Bin2Text and Text2Bin. See [Config per DBF](./FoxBin2Prg_Internals.md#configuration-per-table). |
|
| | | | **Enhancement**: -t Option learned to create default \<tablename\>._cfg file, if table is open. |
|
||||||
| | | | **Enhancement**: Debug-Logging for Index |
|
| | | | **Enhancement**: Handling of additional non structural index per DBF in Bin2Text and Text2Bin. See [Config per DBF](./FoxBin2Prg_Internals.md#configuration-per-table). |
|
||||||
| | | | **Bug Fix**: DBF_Conversion_Condition was read, but never used |
|
| | | | **Enhancement**: Debug-Logging for Index |
|
||||||
| | | | **Bug Fix**: DBF_Conversion_Order sets an index that later would be stored as structural index |
|
| | | | **Bug Fix**: DBF_Conversion_Condition was read, but never used |
|
||||||
| | | | **Bug Fix**: config options with text value fail, if line comment is set |
|
| | | | **Bug Fix**: DBF_Conversion_Order sets an index that later would be stored as structural index |
|
||||||
| | | | **Bug Fix**: issue #53 Variable lnFileCount in get_filesfromdirectory (msueping) |
|
| | | | **Bug Fix**: config options with text value fail, if line comment is set |
|
||||||
| 2021/03/09 | LScheffler | v1.19.59 | **Feature**: Logging of settings as settings object passed to execute method (Option debug > 0) |
|
| | | | **Bug Fix**: issue #53 Variable lnFileCount in get_filesfromdirectory (msueping) |
|
||||||
| | | | **Feature**: Added option to create config file template based on current values of a directory |
|
| 2021/03/09 | LScheffler | v1.19.59 | **Feature**: Logging of settings as settings object passed to execute method (Option debug > 0) |
|
||||||
| | | | **Bug Fix**: RedirectClassType = 2, Path was set wrong in special config |
|
| | | | **Feature**: Added option to create config file template based on current values of a directory |
|
||||||
| | | | **Bug Fix**: RedirectClassType = 2, UseClassPerFile = 2 failed |
|
| | | | **Bug Fix**: RedirectClassType = 2, Path was set wrong in special config |
|
||||||
| | | | **Doc**: Improved, Better description of ClassPerFileCheck, tcOutputFolder. |
|
| | | | **Bug Fix**: RedirectClassType = 2, UseClassPerFile = 2 failed |
|
||||||
| 2021/03/04 | Doug Hennig | [v1.19.58](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.58) | **Feature**: Added support for writing to a different folder than the source code using a new tcOutputFolder parameter |
|
| | | | **Doc**: Improved, Better description of ClassPerFileCheck, tcOutputFolder. |
|
||||||
| | | | **Feature**: Added a configuration option: HomeDir, which determines if HomeDir is saved in PJ2 files (the default is 1 for Yes) |
|
| 2021/03/04 | Doug Hennig | [v1.19.58](https://github.com/fdbozzo/foxbin2prg/releases/tag/v1.19.58) | **Feature**: Added support for writing to a different folder than the source code using a new tcOutputFolder parameter |
|
||||||
| 2021/03/05 | LScheffler | v1.19.57 | **Bug Fix**: RedirectClassType = 2 mixed up PATH |
|
| | | | **Feature**: Added a configuration option: HomeDir, which determines if HomeDir is saved in PJ2 files (the default is 1 for Yes) |
|
||||||
| | | | **Doc**: Improved |
|
| 2021/03/05 | LScheffler | v1.19.57 | **Bug Fix**: RedirectClassType = 2 mixed up PATH |
|
||||||
| 2021/03/04 | LScheffler | v1.19.56 | **Feature**: New value 2 for option RedirectClassType = 2, just process the single class for input in form file[.baseclass].class.vc2 |
|
| | | | **Doc**: Improved |
|
||||||
| | | | **Bug Fix**:<br>Inputfile in form classlib.class.vc2 AND RedirectClassType = 1 and Execute param tcRecompile = 1<br>generates classlib.class.vcx and tries to recompile classlib.vcx<br>fails silent if classlib.vcx exists (compiles wrong lib), with message if not. |
|
| 2021/03/04 | LScheffler | v1.19.56 | **Feature**: New value 2 for option RedirectClassType = 2, just process the single class for input in form file[.baseclass].class.vc2 |
|
||||||
| 2021/03/03 | LScheffler | v1.19.55 | **Doc**: Documentation from CodePlex integrated |
|
| | | | **Bug Fix**:<br>Inputfile in form classlib.class.vc2 AND RedirectClassType = 1 and Execute param tcRecompile = 1<br>generates classlib.class.vcx and tries to recompile classlib.vcx<br>fails silent if classlib.vcx exists (compiles wrong lib), with message if not. |
|
||||||
| | | | **Feature**: added option to create config file template |
|
| 2021/03/03 | LScheffler | v1.19.55 | **Doc**: Documentation from CodePlex integrated |
|
||||||
| | | | **Doc**: Info screen-doc improved |
|
| | | | **Feature**: added option to create config file template |
|
||||||
| | | | **Doc**: German translation improved |
|
| | | | **Doc**: Info screen-doc improved |
|
||||||
| 2021/03/03 | LScheffler | v1.19.54 | **Bug Fix**: DBF_Conversion_Condition, problem with macro expansion |
|
| | | | **Doc**: German translation improved |
|
||||||
| 2021/02/20 | LScheffler | | **Feature**: inserted option DBF_IncludeDeleted to allow including deleted records of DBF |
|
| 2021/03/03 | LScheffler | v1.19.54 | **Bug Fix**: DBF_Conversion_Condition, problem with macro expansion |
|
||||||
| 2021/02/19 | LScheffler | | **Feature**: inserted option DBF_BinChar_Base64 to allow processing of NoCPTrans fields in non base64 way |
|
| 2021/02/20 | LScheffler | | **Feature**: inserted option DBF_IncludeDeleted to allow including deleted records of DBF |
|
||||||
| 2021/02/15 | LScheffler | | **Feature**: inserted option ItemPerDBCCheck to split DBC processing from vcx / scx |
|
| 2021/02/19 | LScheffler | | **Feature**: inserted option DBF_BinChar_Base64 to allow processing of NoCPTrans fields in non base64 way |
|
||||||
| | | | **Feature**: inserted option RedirectFilePerDBCToMain to split DBC processing from vcx / scx |
|
| 2021/02/15 | LScheffler | | **Feature**: inserted option ItemPerDBCCheck to split DBC processing from vcx / scx |
|
||||||
| 2021/02/14 | LScheffler | | **Feature**: inserted option UseFilesPerDBC to split DBC processing from vcx / scx |
|
| | | | **Feature**: inserted option RedirectFilePerDBCToMain to split DBC processing from vcx / scx |
|
||||||
| 2021/02/23 | LScheffler | v1.19.53 | **Doc**: For Info screen and config-template, usage of MEM and FRX added |
|
| 2021/02/14 | LScheffler | | **Feature**: inserted option UseFilesPerDBC to split DBC processing from vcx / scx |
|
||||||
| | | | **Bug Fix**: conversion prg -> vcx, files per class could create one class multiple times |
|
| 2021/02/23 | LScheffler | v1.19.53 | **Doc**: For Info screen and config-template, usage of MEM and FRX added |
|
||||||
| 2021/02/15 | | | **Bug Fix**: processing directory, flush log file after loop instead of file |
|
| | | | **Bug Fix**: conversion prg -> vcx, files per class could create one class multiple times |
|
||||||
| 2021/02/14 | LScheffler | v1.19.52 | **Bug Fix**: conversion prg -> dbf, fields with .NULL. value are incorectly recreated |
|
| 2021/02/15 | | | **Bug Fix**: processing directory, flush log file after loop instead of file |
|
||||||
| | | | **Doc**: minor translations |
|
| 2021/02/14 | LScheffler | v1.19.52 | **Bug Fix**: conversion prg -> dbf, fields with .NULL. value are incorectly recreated |
|
||||||
| | | | **Bug Fix**: conversion dbf -> prg, error if only test mode (toFoxBin2Prg.l_ProcessFiles is false) |
|
| | | | **Doc**: minor translations |
|
||||||
| 2020/04/01 | FDBOZZO | [v1.19.51.6](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.51.6) | Add some fixes to existent ut_tests |
|
| | | | **Bug Fix**: conversion dbf -> prg, error if only test mode (toFoxBin2Prg.l_ProcessFiles is false) |
|
||||||
| | | | **Bug Fix**: At least one of the class-per-file files do not have CR_LF at the end, then when assembling the class or form some structures (ENDIF/ENDCASE/ENDDEF/etc) can be joined with the next, making them erroneous (Ryan Harris) |
|
| 2020/04/01 | FDBOZZO | [v1.19.51.6](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.51.6) | Add some fixes to existent ut_tests |
|
||||||
| | | | **Bug Fix**: Incompatible with VFPA (#36) (Eric Selje) |
|
| | | | **Bug Fix**: At least one of the class-per-file files do not have CR_LF at the end, then when assembling the class or form some structures (ENDIF/ENDCASE/ENDDEF/etc) can be joined with the next, making them erroneous (Ryan Harris) |
|
||||||
| | | | **Bug Fix**: DBF conversion fails if some field name is a reserved keyword like UNIQUE (DAJU78) |
|
| | | | **Bug Fix**: Incompatible with VFPA (#36) (Eric Selje) |
|
||||||
| | | | **Bug Fix**: VCX/SCX properties named "note" are not properly converted (Tracy Pearson) |
|
| | | | **Bug Fix**: DBF conversion fails if some field name is a reserved keyword like UNIQUE (DAJU78) |
|
||||||
| | DH | | **Bug Fix**: Manejo de AutoIncrement incompatible con Project Explorer (Dan Lauer) [Fixed by Doug Hennig] |
|
| | | | **Bug Fix**: VCX/SCX properties named "note" are not properly converted (Tracy Pearson) |
|
||||||
| 2019/02/24 | FDBOZZO | [v1.19.51.5](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.51.5) | **Feature**: Issue#32 Make FoxBin2Prg more COM friendly when using ESC key (Tracy Pearson) |
|
| | DH | | **Bug Fix**: Manejo de AutoIncrement incompatible con Project Explorer (Dan Lauer) [Fixed by Doug Hennig] |
|
||||||
| 2018/07/31 | FDBOZZO | [v1.19.51.4](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.51.4) | **Bug Fix**: Issue#26 The alphabetic ordering of ADD OBJECT's objects can cause that some objects be created in erroneous order, causing unexpected behavior (Jochen Kauz) |
|
| 2019/02/24 | FDBOZZO | [v1.19.51.5](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.51.5) | **Feature**: Issue#32 Make FoxBin2Prg more COM friendly when using ESC key (Tracy Pearson) |
|
||||||
| 2018/07/09 | FDBOZZO | [v1.19.51.3](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.51.3) | **Bug Fix**: Error 1098, Cannot find ... [ENDT] that closes ... [TEXT] Issue#26 when there is a field named TEXT as first line-word (KIRIDES) |
|
| 2018/07/31 | FDBOZZO | [v1.19.51.4](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.51.4) | **Bug Fix**: Issue#26 The alphabetic ordering of ADD OBJECT's objects can cause that some objects be created in erroneous order, causing unexpected behavior (Jochen Kauz) |
|
||||||
| 2018/06/20 | FDBOZZO | [v1.19.51.2](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.51.2) | **Bug Fix**: When converting to text a DBF that belongs to a DBC with events disabled, conversion fails (Jairo Argüelles / Juan C. Perdomo) |
|
| 2018/07/09 | FDBOZZO | [v1.19.51.3](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.51.3) | **Bug Fix**: Error 1098, Cannot find ... [ENDT] that closes ... [TEXT] Issue#26 when there is a field named TEXT as first line-word (KIRIDES) |
|
||||||
| 2018/05/12 | FDBOZZO | [v1.19.51.1](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.51.1) | **Bug Fix**: If capitalization is used on a DBC view info, then related information is not exported correctly or entirely, so could be lost (SkySurfer1) |
|
| 2018/06/20 | FDBOZZO | [v1.19.51.2](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.51.2) | **Bug Fix**: When converting to text a DBF that belongs to a DBC with events disabled, conversion fails (Jairo Argüelles / Juan C. Perdomo) |
|
||||||
| 2018/03/26 | FDBOZZO | [v1.19.51](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.51) | Add LOG info about config.fpw used and CodePage |
|
| 2018/05/12 | FDBOZZO | [v1.19.51.1](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.51.1) | **Bug Fix**: If capitalization is used on a DBC view info, then related information is not exported correctly or entirely, so could be lost (SkySurfer1) |
|
||||||
| | | | Enhanced HELP dialog info when running FoxBin2Prg with double-click |
|
| 2018/03/26 | FDBOZZO | [v1.19.51](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.51) | Add LOG info about config.fpw used and CodePage |
|
||||||
| | | | **Feature**: FKY file structure support (MACRO file exporting only to text fk2) |
|
| | | | Enhanced HELP dialog info when running FoxBin2Prg with double-click |
|
||||||
| | | | **Feature**: MEM file structure support (MEMORY file exporting only to text me2) |
|
| | | | **Feature**: FKY file structure support (MACRO file exporting only to text fk2) |
|
||||||
| | | | **Feature**: Added automatic default language recognition for the supported ones (FR,DE,ES,EN) |
|
| | | | **Feature**: MEM file structure support (MEMORY file exporting only to text me2) |
|
||||||
| 2018/03/15 | FDBOZZO | [v1.19.50.3](https://github.com/fdbozzo/foxbin2prg/tree/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) |
|
| | | | **Feature**: Added automatic default language recognition for the supported ones (FR,DE,ES,EN) |
|
||||||
| 2018/03/13 | FDBOZZO | [v1.19.50.2](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.50.2) | **Bug Fix**: Regenerating pjm,"*" when CFG's extension:pj2=pjm does not regenerate all pjx included files (Darko Kezic) |
|
| 2018/03/15 | FDBOZZO | [v1.19.50.3](https://github.com/fdbozzo/foxbin2prg/tree/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) |
|
||||||
| 2018/03/12 | FDBOZZO | [v1.19.50.1](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.50.1) | **Bug Fix**: When using the CFG configuration "extension: pj2=pjm" treat the pjm as pj2 and not as SourceSafe-compatible pjm (Darko Kezic) |
|
| 2018/03/13 | FDBOZZO | [v1.19.50.2](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.50.2) | **Bug Fix**: Regenerating pjm,"*" when CFG's extension:pj2=pjm does not regenerate all pjx included files (Darko Kezic) |
|
||||||
| 2018/03/06 | FDBOZZO | [v1.19.50](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.50) | Added a new CFG "BodyDevInfo" switch to control the DevInfo body data of PJX. It is disabled by default because DevInfo normally have compiled data that can be regenerated and causes many differences on source control tools |
|
| 2018/03/12 | FDBOZZO | [v1.19.50.1](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.50.1) | **Bug Fix**: When using the CFG configuration "extension: pj2=pjm" treat the pjm as pj2 and not as SourceSafe-compatible pjm (Darko Kezic) |
|
||||||
| | | | New PRG_Compat_Level CFG value to make generated SC2/VC2 code more PRG compatible |
|
| 2018/03/06 | FDBOZZO | [v1.19.50](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.50) | Added a new CFG "BodyDevInfo" switch to control the DevInfo body data of PJX. It is disabled by default because DevInfo normally have compiled data that can be regenerated and causes many differences on source control tools |
|
||||||
| | | | **Bug Fix**: PJX homedir related fields do not always are sincronized |
|
| | | | New PRG_Compat_Level CFG value to make generated SC2/VC2 code more PRG compatible |
|
||||||
| | | | Workaround to export DBF metadata without the security part of the DBC blocking it, when DBCEvents are enabled. |
|
| | | | **Bug Fix**: PJX homedir related fields do not always are sincronized |
|
||||||
| 2018/02/03 | FDBOZZO | [v1.19.49.8](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.49.8) | **Bug Fix**: When converting a VCX corrupted with duplicated objects to text, "The specified key already exists" error is thrown (Kirides) |
|
| | | | Workaround to export DBF metadata without the security part of the DBC blocking it, when DBCEvents are enabled. |
|
||||||
| 2018/01/11 | FDBOZZO | [v1.19.49.7](https://github.com/fdbozzo/foxbin2prg/tree/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/02/03 | FDBOZZO | [v1.19.49.8](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.49.8) | **Bug Fix**: When converting a VCX corrupted with duplicated objects to text, "The specified key already exists" error is thrown (Kirides) |
|
||||||
| 2018/01/04 | FDBOZZO | [v1.19.49.6](https://github.com/fdbozzo/foxbin2prg/tree/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) |
|
| 2018/01/11 | FDBOZZO | [v1.19.49.7](https://github.com/fdbozzo/foxbin2prg/tree/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) |
|
||||||
| | | | **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) |
|
| 2018/01/04 | FDBOZZO | [v1.19.49.6](https://github.com/fdbozzo/foxbin2prg/tree/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) |
|
||||||
| 2017/12/20 | FDBOZZO | [v1.19.49.5](https://github.com/fdbozzo/foxbin2prg/tree/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 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/04 | FDBOZZO | [v1.19.49.4](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.49.4) | **Bug Fix VCX**: When using ClassPerFile in API Mode and importing single classes, sometimes their names get unquoted, throwing errors / Reported by Lutz Scheffler (https://github.com/fdbozzo/foxbin2prg/issues/11) |
|
| 2017/12/20 | FDBOZZO | [v1.19.49.5](https://github.com/fdbozzo/foxbin2prg/tree/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) |
|
||||||
| 2017/12/03 | FDBOZZO | [v1.19.49.3](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.49.3) | **Bug Fix**: "Double" field types are explicitly defined with 0 decimals when no decimals are defined (Jerry Stager) |
|
| 2017/12/04 | FDBOZZO | [v1.19.49.4](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.49.4) | **Bug Fix VCX**: When using ClassPerFile in API Mode and importing single classes, sometimes their names get unquoted, throwing errors / Reported by Lutz Scheffler (https://github.com/fdbozzo/foxbin2prg/issues/11) |
|
||||||
| 2017/12/03 | FDBOZZO | [v1.19.49.2](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.49.2) | **Bug Fix**: ClassPerFile export didn't work correctly starting from v1.19.49 / Reported by Lutz Scheffler (https://github.com/fdbozzo/foxbin2prg/issues/9) |
|
| 2017/12/03 | FDBOZZO | [v1.19.49.3](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.49.3) | **Bug Fix**: "Double" field types are explicitly defined with 0 decimals when no decimals are defined (Jerry Stager) |
|
||||||
| 2017/06/25 | FDBOZZO | [v1.19.49.1](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.49.1) | **Bug Fix**: DEVINFO field is only used when doing PJX conversions. On other files throw errors |
|
| 2017/12/03 | FDBOZZO | [v1.19.49.2](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.49.2) | **Bug Fix**: ClassPerFile export didn't work correctly starting from v1.19.49 / Reported by Lutz Scheffler (https://github.com/fdbozzo/foxbin2prg/issues/9) |
|
||||||
| 2017/04/26 | FDBOZZO | [v1.19.49](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.49) | Replace Scripting.FileSystemObject MoveFile with Win32API equivalent |
|
| 2017/06/25 | FDBOZZO | [v1.19.49.1](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.49.1) | **Bug Fix**: DEVINFO field is only used when doing PJX conversions. On other files throw errors |
|
||||||
| | | | Added support for using temporal CFG file for low-level API operations |
|
| 2017/04/26 | FDBOZZO | [v1.19.49](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.49) | Replace Scripting.FileSystemObject MoveFile with Win32API equivalent |
|
||||||
| | | | **Bug Fix**: Single-class export with "classlib.vcx::classname" syntax did not export (Lutz Scheffler) |
|
| | | | Added support for using temporal CFG file for low-level API operations |
|
||||||
| | | | Added single-class import support ("library.vcx::classname::import") |
|
| | | | **Bug Fix**: Single-class export with "classlib.vcx::classname" syntax did not export (Lutz Scheffler) |
|
||||||
| | | | Added new single-class export syntax ("library.vcx::classname::export") |
|
| | | | Added single-class import support ("library.vcx::classname::import") |
|
||||||
| | | | Both single-class syntaxes doesn't require a CFG configuration |
|
| | | | Added new single-class export syntax ("library.vcx::classname::export") |
|
||||||
| | | | **Bug Fix**: Partially corrupted frx/lbx info generated when using "&&" string inside field expressions (Alejandro A Sosa) |
|
| | | | Both single-class syntaxes doesn't require a CFG configuration |
|
||||||
| | | | sys(2023) secure temp: When sys(2023) points to "program files", then getenv("temp") is used |
|
| | | | **Bug Fix**: Partially corrupted frx/lbx info generated when using "&&" string inside field expressions (Alejandro A Sosa) |
|
||||||
| | | | Add more options to config.fpw to minimize interference from existent configs |
|
| | | | sys(2023) secure temp: When sys(2023) points to "program files", then getenv("temp") is used |
|
||||||
| | | | **Feature**: Save the contents of User field (Doug Hennig). Note: DevInfo is already supported |
|
| | | | Add more options to config.fpw to minimize interference from existent configs |
|
||||||
| 2016/07/24 | FDBOZZO | [v1.19.48](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.48) | **Bug Fix**: ControlSource of OLE Objects containing quotes are not well regenerated from FR2 (Nathan Brown) |
|
| | | | **Feature**: Save the contents of User field (Doug Hennig). Note: DevInfo is already supported |
|
||||||
| | FDBOZZO | Preview-5 | **Bug Fix**: When a binary is regenerated from a PJ2 file containing files with parenthesis and spaces, the error "Error 36, Command contains unrecognized phrase/keyword" occurs (Nathan Brown) |
|
| 2016/07/24 | FDBOZZO | [v1.19.48](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.48) | **Bug Fix**: ControlSource of OLE Objects containing quotes are not well regenerated from FR2 (Nathan Brown) |
|
||||||
| | FDBOZZO | Preview-4 | **Defect Fix**: When fixing the multi-line memo bug, introduced a new defect on which a single-line memo is not decoded correctly (Nathan Brown) |
|
| | FDBOZZO | Preview-5 | **Bug Fix**: When a binary is regenerated from a PJ2 file containing files with parenthesis and spaces, the error "Error 36, Command contains unrecognized phrase/keyword" occurs (Nathan Brown) |
|
||||||
| | FDBOZZO | Preview-3 | **Bug Fix**: Bug Fix db2: When reading a miltuline-memo with old db2 data, an index out of range error occurs |
|
| | FDBOZZO | Preview-4 | **Defect Fix**: When fixing the multi-line memo bug, introduced a new defect on which a single-line memo is not decoded correctly (Nathan Brown) |
|
||||||
| | FDBOZZO || **Bug Fix** db2: When using ExcludeDBFAutoincNextval: 1 setting in FoxBin2Prg.cfg and at the same time the data import with an AutoInc field, then error "Error 2088, Field <FIELD> is read-only" occurs (Nathan Brown) |
|
| | FDBOZZO | Preview-3 | **Bug Fix**: Bug Fix db2: When reading a miltuline-memo with old db2 data, an index out of range error occurs |
|
||||||
|| FDBOZZO | Preview-2 | **Bug Fix**: DBF conversion restrictions are not always respected when using particular CFGs for DBFs (Nathan Brown) |
|
| | FDBOZZO || **Bug Fix** db2: When using ExcludeDBFAutoincNextval: 1 setting in FoxBin2Prg.cfg and at the same time the data import with an AutoInc field, then error "Error 2088, Field <FIELD> is read-only" occurs (Nathan Brown) |
|
||||||
|| AndyGK63 | Preview-1 | **Bug Fix**: Error message 'variable tcOutputFile not found' (german version) (Andy Kasper) |
|
|| FDBOZZO | Preview-2 | **Bug Fix**: DBF conversion restrictions are not always respected when using particular CFGs for DBFs (Nathan Brown) |
|
||||||
|| AndyGK63 || **Bug Fix**: Menu location 'Before' always changed to 'after' when convert (Andy Kasper) |
|
|| AndyGK63 | Preview-1 | **Bug Fix**: Error message 'variable tcOutputFile not found' (german version) (Andy Kasper) |
|
||||||
| 2016/06/09 | FDBOZZO | [v1.19.47](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.47) | **Bug Fix**: Added multi-line support for memo data when importing/exporting |
|
|| AndyGK63 || **Bug Fix**: Menu location 'Before' always changed to 'after' when convert (Andy Kasper) |
|
||||||
|| FDBOZZO || **Feature**: Added support for appending data from DB2 to DBF with the new value DBFConversionSupport=8. All datatypes except General. (Walter Nicholls) |
|
| 2016/06/09 | FDBOZZO | [v1.19.47](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.47) | **Bug Fix**: Added multi-line support for memo data when importing/exporting |
|
||||||
|| DougHennig || **Bug Fix**: Added variable declaration in vbs scripy (Doug Hennig) |
|
|| FDBOZZO || **Feature**: Added support for appending data from DB2 to DBF with the new value DBFConversionSupport=8. All datatypes except General. (Walter Nicholls) |
|
||||||
|| DougHennig || **Bug Fix**: Fixed incorrectly named variable in vbs script (Doug Hennig) |
|
|| DougHennig || **Bug Fix**: Added variable declaration in vbs scripy (Doug Hennig) |
|
||||||
|| DougHennig || **Bug Fix**: Added missing assignment in vbs script (Doug Hennig) |
|
|| DougHennig || **Bug Fix**: Fixed incorrectly named variable in vbs script (Doug Hennig) |
|
||||||
|| DougHennig || **Enhancement**: Put double quotes around path in case in contains single quote in vbs scripts (Doug Hennig) |
|
|| DougHennig || **Bug Fix**: Added missing assignment in vbs script (Doug Hennig) |
|
||||||
|| FDBOZZO || **Bug Fix**: Added "+16" to Debug flags to maintain internal defaults to not generate timestamps on xx2 files in vbs scripts |
|
|| DougHennig || **Enhancement**: Put double quotes around path in case in contains single quote in vbs scripts (Doug Hennig) |
|
||||||
|| FDBOZZO || **Bug Fix**: When a filename "\*" is specified with a type "\*", an automatic regeneration of all binary files is made from text files (Alejandro Sosa) |
|
|| FDBOZZO || **Bug Fix**: Added "+16" to Debug flags to maintain internal defaults to not generate timestamps on xx2 files in vbs scripts |
|
||||||
| 2016/02/07 | FDBOZZO | [v1.19.46](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.46) | **Bug Fix**: set\_UserValue() method causes error when trying to get information about another error and the VFP binary table can not be opened (ie, because corrupted memo) |
|
|| FDBOZZO || **Bug Fix**: When a filename "\*" is specified with a type "\*", an automatic regeneration of all binary files is made from text files (Alejandro Sosa) |
|
||||||
|||| **Feature**: Added internal support for querying directory cfg information, with a new optional parameter, for API methods that require it (ie: get\_Ext2FromExt, hasSupport\*) |
|
| 2016/02/07 | FDBOZZO | [v1.19.46](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.46) | **Bug Fix**: set\_UserValue() method causes error when trying to get information about another error and the VFP binary table can not be opened (ie, because corrupted memo) |
|
||||||
|||| **Feature**: Convert FUNCTION to PROCEDURE for maintaining compatibility with the way that VFP save methods on binaries |
|
|||| **Feature**: Added internal support for querying directory cfg information, with a new optional parameter, for API methods that require it (ie: get\_Ext2FromExt, hasSupport\*) |
|
||||||
|||| **New fb2p\_diff.exe**: Allow a quick Diff of VFP9 binaries, for those that don't need converting to text manually |
|
|||| **Feature**: Convert FUNCTION to PROCEDURE for maintaining compatibility with the way that VFP save methods on binaries |
|
||||||
|||| **Bug Fix**: When processing a directory or a project with all the files, sometimes an "Alias already in use" error may occur (Dave Crozier) |
|
|||| **New fb2p\_diff.exe**: Allow a quick Diff of VFP9 binaries, for those that don't need converting to text manually |
|
||||||
|||| **Bug Fix mnx**: When menu options contains '&&' in their texts, menu binary is corrupted when regenerated (Walter Nichols) |
|
|||| **Bug Fix**: When processing a directory or a project with all the files, sometimes an "Alias already in use" error may occur (Dave Crozier) |
|
||||||
|||| **Bug Fix fb2p\_diff.exe**: When calling fb2p\_diff.exe from a directory out of FoxBin2Prg dir, an error is thrown because FoxBin2Prg is not found (Mike Potjer) |
|
|||| **Bug Fix mnx**: When menu options contains '&&' in their texts, menu binary is corrupted when regenerated (Walter Nichols) |
|
||||||
|||| **Feature**: In some environments and under some conditions WSscript.Shell object can cause problems, so now it's replaced with Win32 native functions (Aurélien Dellieux) |
|
|||| **Bug Fix fb2p\_diff.exe**: When calling fb2p\_diff.exe from a directory out of FoxBin2Prg dir, an error is thrown because FoxBin2Prg is not found (Mike Potjer) |
|
||||||
|||| **Bug Fix frx/lbx**: Ordering of report objects changes the ZOrder of near objects that can overlap, which can cause bad visualization and printing (Ryan Harris) |
|
|||| **Feature**: In some environments and under some conditions WSscript.Shell object can cause problems, so now it's replaced with Win32 native functions (Aurélien Dellieux) |
|
||||||
|||| **Bug Fix frx/lbx**: When regenerating reports or labels with multiline texts center or right aligned, alignment is not completely right (Ryan Harris) |
|
|||| **Bug Fix frx/lbx**: Ordering of report objects changes the ZOrder of near objects that can overlap, which can cause bad visualization and printing (Ryan Harris) |
|
||||||
|||| **Bug Fix frx/lbx**: When grouping objects in design mode, generating text and regenerating binary cause the lost of the grouping (does not affect data) (Lutz Scheffler) |
|
|||| **Bug Fix frx/lbx**: When regenerating reports or labels with multiline texts center or right aligned, alignment is not completely right (Ryan Harris) |
|
||||||
|| RALFXWAGNER || **Bug Fix Pjx**: SPR and MPR files are not correctly identified in the PJX Project info (Ralf Wagner) |
|
|||| **Bug Fix frx/lbx**: When grouping objects in design mode, generating text and regenerating binary cause the lost of the grouping (does not affect data) (Lutz Scheffler) |
|
||||||
|||| **Bug Fix Pj2**: An error is thrown when regenerating a PJX from a PJ2 when some file have parenthesis in it's name (EddieC) |
|
|| RALFXWAGNER || **Bug Fix Pjx**: SPR and MPR files are not correctly identified in the PJX Project info (Ralf Wagner) |
|
||||||
|||| **Feature (dbf)**: New ExcludeDBFAutoincNextval parameter for minimizing DB2 differences (edyshor) |
|
|||| **Bug Fix Pj2**: An error is thrown when regenerating a PJX from a PJ2 when some file have parenthesis in it's name (EddieC) |
|
||||||
|||| **Bug Fix**: When processing a file on root dir, a 2062 error occurs (Aurélien Dellieux) |
|
|||| **Feature (dbf)**: New ExcludeDBFAutoincNextval parameter for minimizing DB2 differences (edyshor) |
|
||||||
| 2015/06/21 | FDBOZZO | [v1.19.45](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.45) | **Bug Fix mnx**: When a menu that uses single quotes or an expression in the option's MESSAGE is exported to text, when regenerating the menu from the text there are parts of the message that are cut off (Mike Potjer) |
|
|||| **Bug Fix**: When processing a file on root dir, a 2062 error occurs (Aurélien Dellieux) |
|
||||||
|||| **Bug Fix**: When processing multiple PJ2 files, an error "variable llError not defined" can occur (Lutz Scheffler) |
|
| 2015/06/21 | FDBOZZO | [v1.19.45](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.45) | **Bug Fix mnx**: When a menu that uses single quotes or an expression in the option's MESSAGE is exported to text, when regenerating the menu from the text there are parts of the message that are cut off (Mike Potjer) |
|
||||||
|||| **Bug Fix pjx/pj2**: PJX/PJ2 projects that references files from other disk units throw errors for those files when processing with "\*" or "\*-" options (Matt Slay) |
|
|||| **Bug Fix**: When processing multiple PJ2 files, an error "variable llError not defined" can occur (Lutz Scheffler) |
|
||||||
|||| **Bug Fix**: When processing multiple-files, sometimes encountered errores are not reported |
|
|||| **Bug Fix pjx/pj2**: PJX/PJ2 projects that references files from other disk units throw errors for those files when processing with "\*" or "\*-" options (Matt Slay) |
|
||||||
|||| **Feature (API-PJX)**: New loadModule() method that returns the internal FoxBin2Prg Project object when the full name of an existent project file is specified |
|
|||| **Bug Fix**: When processing multiple-files, sometimes encountered errores are not reported |
|
||||||
|||| **Feature (API-PJX)**: New getFilesNotFound() method for the FoxBin2Prg's Project object, that returns the count of files referenced in the project that are not found on disk and an array with all the existence state of each file |
|
|||| **Feature (API-PJX)**: New loadModule() method that returns the internal FoxBin2Prg Project object when the full name of an existent project file is specified |
|
||||||
| 2015/05/31 | FDBOZZO | [v1.19.44](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.44) | **Bug Fix**: In certain PCs FoxBin2Prg does not return error codes when called from an external program, so another terminating method is implemented (Ralf Wagner) |
|
|||| **Feature (API-PJX)**: New getFilesNotFound() method for the FoxBin2Prg's Project object, that returns the count of files referenced in the project that are not found on disk and an array with all the existence state of each file |
|
||||||
|||| **Feature**: Allow exporting DBF data when using DBF\_Conversion\_Support:1 and optional individual CFG files |
|
| 2015/05/31 | FDBOZZO | [v1.19.44](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.44) | **Bug Fix**: In certain PCs FoxBin2Prg does not return error codes when called from an external program, so another terminating method is implemented (Ralf Wagner) |
|
||||||
|||| **Bug Fix**: A previous bug fix on cascading errors management caused reseting the error status, making that sometimes errors don't get reported |
|
|||| **Feature**: Allow exporting DBF data when using DBF\_Conversion\_Support:1 and optional individual CFG files |
|
||||||
| 2015/05/10 | FDBOZZO | [v1.19.43](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.43) | **Feature**: Added new CFG setting "RemoveZOrderSetFromProps" for removing ZOrderSet property when you want to maintain the original class ZOrder always, avoid unnecesary differences and fix some visual on top/on bottom control problems (Ryan Harris) |
|
|||| **Bug Fix**: A previous bug fix on cascading errors management caused reseting the error status, making that sometimes errors don't get reported |
|
||||||
|||| **Feature**: Do not allow progressbar window become the default output window of ? command (Lutz Scheffler) |
|
| 2015/05/10 | FDBOZZO | [v1.19.43](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.43) | **Feature**: Added new CFG setting "RemoveZOrderSetFromProps" for removing ZOrderSet property when you want to maintain the original class ZOrder always, avoid unnecesary differences and fix some visual on top/on bottom control problems (Ryan Harris) |
|
||||||
|||| **Bug Fix**: Fixed VFP9 SP1 validation message |
|
|||| **Feature**: Do not allow progressbar window become the default output window of ? command (Lutz Scheffler) |
|
||||||
|||| **Bug Fix**: FoxBin2Prg PRG2BIN does not return error codes (Ralf Wagner) |
|
|||| **Bug Fix**: Fixed VFP9 SP1 validation message |
|
||||||
|||| **Bug Fix**: FoxBin2Prg sometimes generates an OLE error when executed for second time on a file with problems (Fidel Charny) |
|
|||| **Bug Fix**: FoxBin2Prg PRG2BIN does not return error codes (Ralf Wagner) |
|
||||||
|||| Some enhancements in security of DLL declarations and On Escape management |
|
|||| **Bug Fix**: FoxBin2Prg sometimes generates an OLE error when executed for second time on a file with problems (Fidel Charny) |
|
||||||
|||| **Defect Fix**: Accesing DataSessionID property throws an error because of the change of internal classes between custom and session |
|
|||| Some enhancements in security of DLL declarations and On Escape management |
|
||||||
|||| **Bug Fix**: When a form have AutoCenter=.T., there are times that when regenerating the binary and executing it does not shows centered (Esteban Herrero) |
|
|||| **Defect Fix**: Accesing DataSessionID property throws an error because of the change of internal classes between custom and session |
|
||||||
| 2015/04/16 | FDBOZZO | [v1.19.42](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.42) | **Feature**: Added VFP 9 SP1 runtime validation |
|
|||| **Bug Fix**: When a form have AutoCenter=.T., there are times that when regenerating the binary and executing it does not shows centered (Esteban Herrero) |
|
||||||
|||| **Bug Fix**: Broken SourceSafe compatibility because an error is thrown when querying for file support (Tuvia Vinitsky) |
|
| 2015/04/16 | FDBOZZO | [v1.19.42](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.42) | **Feature**: Added VFP 9 SP1 runtime validation |
|
||||||
|||| **Bug Fix scx/vcx**: Process only one TEXT/ENDTEXT nesting level because TEXT/ENDTEXT can't be nested (Lutz Scheffler) |
|
|||| **Bug Fix**: Broken SourceSafe compatibility because an error is thrown when querying for file support (Tuvia Vinitsky) |
|
||||||
|||| **Feature**: Make some error descriptions more informative and precise (Lutz Scheffler) |
|
|||| **Bug Fix scx/vcx**: Process only one TEXT/ENDTEXT nesting level because TEXT/ENDTEXT can't be nested (Lutz Scheffler) |
|
||||||
|||| **Feature (API)**: Allow specifying inputFile with relative path (Lutz Scheffler) |
|
|||| **Feature**: Make some error descriptions more informative and precise (Lutz Scheffler) |
|
||||||
|||| **Bug Fix scx**: Metadata of Dataenvironment not properly generated when Dataenvironment is renamed |
|
|||| **Feature (API)**: Allow specifying inputFile with relative path (Lutz Scheffler) |
|
||||||
|||| **Bug Fix**: Added PJX/PJ2 generation when specifying "file.pjx", "\*" (Lutz Scheffler) |
|
|||| **Bug Fix scx**: Metadata of Dataenvironment not properly generated when Dataenvironment is renamed |
|
||||||
|||| Some enhancements in german translations (Lutz Scheffler) |
|
|||| **Bug Fix**: Added PJX/PJ2 generation when specifying "file.pjx", "\*" (Lutz Scheffler) |
|
||||||
|||| **Feature**: Added multiprocessing of projects (\*.pjx, \*.pj2) when specifying "file.pjx", "\*" (Lutz Scheffler) |
|
|||| Some enhancements in german translations (Lutz Scheffler) |
|
||||||
|||| Change FoxBin2Prg base class from custom to session (Lutz Scheffler) |
|
|||| **Feature**: Added multiprocessing of projects (\*.pjx, \*.pj2) when specifying "file.pjx", "\*" (Lutz Scheffler) |
|
||||||
|||| **Feature**: Allow processing all project files without converting the PJX/2, with "\*-" (Lutz Scheffler) |
|
|||| Change FoxBin2Prg base class from custom to session (Lutz Scheffler) |
|
||||||
|||| **Bug Fix pjx/pj2**: If end of line (CR+LF) is used on pjx's "Build" properties data, generated pj2 is malformed |
|
|||| **Feature**: Allow processing all project files without converting the PJX/2, with "\*-" (Lutz Scheffler) |
|
||||||
|||| **Feature**: Default foxbin2prg.cfg configuration file renamed to foxbin2prg.cfg.txt to no overwrite user cfg (Lutz Scheffler) |
|
|||| **Bug Fix pjx/pj2**: If end of line (CR+LF) is used on pjx's "Build" properties data, generated pj2 is malformed |
|
||||||
|||| **Feature**: Added DOS errOut output support and implemented in writeErrorLog when logging errors |
|
|||| **Feature**: Default foxbin2prg.cfg configuration file renamed to foxbin2prg.cfg.txt to no overwrite user cfg (Lutz Scheffler) |
|
||||||
|||| **Feature**: Added full support for \*? file masks for multi-processing files of the same extension |
|
|||| **Feature**: Added DOS errOut output support and implemented in writeErrorLog when logging errors |
|
||||||
|||| **Feature (API)**: Added new parameter to allow alternative main CFG (Lutz Scheffler) |
|
|||| **Feature**: Added full support for \*? file masks for multi-processing files of the same extension |
|
||||||
|||| **Feature (API)**: Added new get\_Processed() method for obtaining information about processed files (Lutz Scheffler) |
|
|||| **Feature (API)**: Added new parameter to allow alternative main CFG (Lutz Scheffler) |
|
||||||
|||| **Feature**: Added new file processing output to DOS stdOut (Lutz Scheffler) |
|
|||| **Feature (API)**: Added new get\_Processed() method for obtaining information about processed files (Lutz Scheffler) |
|
||||||
|||| **Bug Fix**: Fixed processing cancelation with Esc key |
|
|||| **Feature**: Added new file processing output to DOS stdOut (Lutz Scheffler) |
|
||||||
|||| **Feature**: Sort table/view fields alphabetically to facilitate diffing and merging, while maintaining a list with the original field order for correct DBC regeneration (Ryan Harris) |
|
|||| **Bug Fix**: Fixed processing cancelation with Esc key |
|
||||||
|||| **Feature**: Apply ClassPerFile to DBC connections, tables, views and SPs (Ryan Harris) |
|
|||| **Feature**: Sort table/view fields alphabetically to facilitate diffing and merging, while maintaining a list with the original field order for correct DBC regeneration (Ryan Harris) |
|
||||||
|||| **Bug Fix mnx**: Empty Pad name is not kept when regenerating a menu defined with and empty Pad name (Lutz Scheffler) |
|
|||| **Feature**: Apply ClassPerFile to DBC connections, tables, views and SPs (Ryan Harris) |
|
||||||
|||| **Feature (API)**: New property "lProcessFiles" that allow setting to .F. when using foxbin2prg as object to get Processing file info with getProcessed method without actual processing |
|
|||| **Bug Fix mnx**: Empty Pad name is not kept when regenerating a menu defined with and empty Pad name (Lutz Scheffler) |
|
||||||
|||| **Bug Fix frx/lbx**: Trimmed some extra CR,LF,TAB from FR2/LB2 tag that where included in previous versions (Ryan Harris) |
|
|||| **Feature (API)**: New property "lProcessFiles" that allow setting to .F. when using foxbin2prg as object to get Processing file info with getProcessed method without actual processing |
|
||||||
|||| **Bug Fix scx/vcx/dbc**: Delete ERR files when processing with UseClassPerFile switch (Ryan Harris) |
|
|||| **Bug Fix frx/lbx**: Trimmed some extra CR,LF,TAB from FR2/LB2 tag that where included in previous versions (Ryan Harris) |
|
||||||
|||| **Feature**: Implemented CFG inheritance between directories |
|
|||| **Bug Fix scx/vcx/dbc**: Delete ERR files when processing with UseClassPerFile switch (Ryan Harris) |
|
||||||
|||| **Feature (API)**: New method get\_DirSettings() that returns the CFG settings object for the indicated directory (Lutz Scheffler) |
|
|||| **Feature**: Implemented CFG inheritance between directories |
|
||||||
|||| **Feature**: Allow generation of text for a single class of a librery when using ClassPerFile (Lutz Scheffler) |
|
|||| **Feature (API)**: New method get\_DirSettings() that returns the CFG settings object for the indicated directory (Lutz Scheffler) |
|
||||||
|||| **Feature (API)**: Renowned method names to English to facilitate international understanding (Mike Potjer) |
|
|||| **Feature**: Allow generation of text for a single class of a librery when using ClassPerFile (Lutz Scheffler) |
|
||||||
| 2015/01/18 | FDBOZZO | [v1.19.41](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.41) | **Bug Fix db2**: Erroneous detection of Invalid Table when size is less than 328 bytes. Lower limit was changed to 65 bytes. |
|
|||| **Feature (API)**: Renowned method names to English to facilitate international understanding (Mike Potjer) |
|
||||||
|||| **Bug Fix vcx/scx**: Erroneous detection of PROCEDURE/ENDPROC structures when used as parameters of LPARAMETERS and start in new line (Ryan Harris) |
|
| 2015/01/18 | FDBOZZO | [v1.19.41](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.41) | **Bug Fix db2**: Erroneous detection of Invalid Table when size is less than 328 bytes. Lower limit was changed to 65 bytes. |
|
||||||
| 2015/01/11 | FDBOZZO | [v1.19.40](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.40) | **Enhancement frx/lbx**: Clean ASCII 0 from expression field for Dataenvironment, Cursors and Relations |
|
|||| **Bug Fix vcx/scx**: Erroneous detection of PROCEDURE/ENDPROC structures when used as parameters of LPARAMETERS and start in new line (Ryan Harris) |
|
||||||
|||| **Bug fix frx/lbx**: When using Dataenvironment with more than one cursor, remaining cursors are lost |
|
| 2015/01/11 | FDBOZZO | [v1.19.40](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.40) | **Enhancement frx/lbx**: Clean ASCII 0 from expression field for Dataenvironment, Cursors and Relations |
|
||||||
|||| **Feature**: Added new configuration "ShowProgressbar:2" to activate the progressbar only when a directory is selected and deactivate it for individual files (Jim Nelson) |
|
|||| **Bug fix frx/lbx**: When using Dataenvironment with more than one cursor, remaining cursors are lost |
|
||||||
|||| **Bug fix dbf**: Error 12, variable "tcOutputFile" is not found when DBFConversionSupport=4 and output file is the same as existent one (Mike Potjer) |
|
|||| **Feature**: Added new configuration "ShowProgressbar:2" to activate the progressbar only when a directory is selected and deactivate it for individual files (Jim Nelson) |
|
||||||
|||| **Feature scx/vcx/sc2/vc2**: Added new code checking to find duplicated object names for the same class and container to notify those cases of file corruption |
|
|||| **Bug fix dbf**: Error 12, variable "tcOutputFile" is not found when DBFConversionSupport=4 and output file is the same as existent one (Mike Potjer) |
|
||||||
|||| **Bug Fix**: "Error 2183: Operation requires that SET MULTILOCKS is set to ON" in some DBF convertions |
|
|||| **Feature scx/vcx/sc2/vc2**: Added new code checking to find duplicated object names for the same class and container to notify those cases of file corruption |
|
||||||
| 2015/01/01 | FDBOZZO | [v1.19.39](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.39) | **Bug fix vbs**: vbs scripts does not show FoxBin2Prg process errors correctly |
|
|||| **Bug Fix**: "Error 2183: Operation requires that SET MULTILOCKS is set to ON" in some DBF convertions |
|
||||||
|||| When using BIN2PRG or PRG2BIN keywords with FoxBin2Prg command line, allow processing one file (Mike Potjer) |
|
| 2015/01/01 | FDBOZZO | [v1.19.39](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.39) | **Bug fix vbs**: vbs scripts does not show FoxBin2Prg process errors correctly |
|
||||||
|||| Add keyword SHOWMSG and use INTERACTIVE keyword for an interactive dialog (Mike Potjer) |
|
|||| When using BIN2PRG or PRG2BIN keywords with FoxBin2Prg command line, allow processing one file (Mike Potjer) |
|
||||||
|||| When processing a directory from commandline with foxbin2prg alone and the INTERACTIVE keyword, show a dialog to ask what to process (Mike Potjer) |
|
|||| Add keyword SHOWMSG and use INTERACTIVE keyword for an interactive dialog (Mike Potjer) |
|
||||||
|||| **Bug fix dc2**: DisplayClass and DisplayClassLibrary values got the wrong value "Default" and not the corresponding own values (Christopher Kurth/Ryan Harris) |
|
|||| When processing a directory from commandline with foxbin2prg alone and the INTERACTIVE keyword, show a dialog to ask what to process (Mike Potjer) |
|
||||||
|||| Deleted recompilation scripts for language, because it is an automatic selection now |
|
|||| **Bug fix dc2**: DisplayClass and DisplayClassLibrary values got the wrong value "Default" and not the corresponding own values (Christopher Kurth/Ryan Harris) |
|
||||||
| 2014/12/13 | FDBOZZO | [v1.19.38](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.38) | **Feature**: Now is possible to use FoxBin2Prg for batch conversions directly from the File Explorer (see README.txt), without the need of vbs scripts, that sometimes can make trouble or are not permitted by IT department (Francisco Prieto) |
|
|||| Deleted recompilation scripts for language, because it is an automatic selection now |
|
||||||
|||| **Feature**: Enhanced Multilanguage support by 3 ways: 1-Automatic DEFAULT (depending on VERSION(3)); 2-By parameter, using the new method ChangeLanguage(); 3-Using the new setting "Language" in foxbin2prg.cfg |
|
| 2014/12/13 | FDBOZZO | [v1.19.38](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.38) | **Feature**: Now is possible to use FoxBin2Prg for batch conversions directly from the File Explorer (see README.txt), without the need of vbs scripts, that sometimes can make trouble or are not permitted by IT department (Francisco Prieto) |
|
||||||
|||| **Feature**: Detection of duplicated methods on vc2/sc2 files to notify those cases of vcx/scx file corruption (Álvaro Castrillón) |
|
|||| **Feature**: Enhanced Multilanguage support by 3 ways: 1-Automatic DEFAULT (depending on VERSION(3)); 2-By parameter, using the new method ChangeLanguage(); 3-Using the new setting "Language" in foxbin2prg.cfg |
|
||||||
| 2014/11/30 | FDBOZZO | [v1.19.37](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.37) | **Feature**: Added Class per file support, configurable with UseClassPerFile:1 (Ryan Harris/Lutz Scheffler/Álvaro Castrillón) |
|
|||| **Feature**: Detection of duplicated methods on vc2/sc2 files to notify those cases of vcx/scx file corruption (Álvaro Castrillón) |
|
||||||
|||| **Feature**: foxbin2prg.cfg configuration options can now have "&&" comments at the right of the values (edyshor) |
|
| 2014/11/30 | FDBOZZO | [v1.19.37](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.37) | **Feature**: Added Class per file support, configurable with UseClassPerFile:1 (Ryan Harris/Lutz Scheffler/Álvaro Castrillón) |
|
||||||
|||| **Feature**: Added support for the new "ClearDBFLastUpdate" setting in FoxBin2Prg.cfg, activated by default to minimize DB2 differences (edyshor) |
|
|||| **Feature**: foxbin2prg.cfg configuration options can now have "&&" comments at the right of the values (edyshor) |
|
||||||
|||| **Feature**: Enhanced progressbar indication, with more detailed information |
|
|||| **Feature**: Added support for the new "ClearDBFLastUpdate" setting in FoxBin2Prg.cfg, activated by default to minimize DB2 differences (edyshor) |
|
||||||
|||| **Feature**: vcx/scx broken properties autofix because an erroneous manual user edition on the vcx/scx |
|
|||| **Feature**: Enhanced progressbar indication, with more detailed information |
|
||||||
|||| **Feature**: vcx/scx autofix por Hidden and Protected duplicated properties (some type of corruption or bad manual user edit) |
|
|||| **Feature**: vcx/scx broken properties autofix because an erroneous manual user edition on the vcx/scx |
|
||||||
|||| **Feature**: Added a validation for FRX to notify the user if it is not a VFP 9 REPORT |
|
|||| **Feature**: vcx/scx autofix por Hidden and Protected duplicated properties (some type of corruption or bad manual user edit) |
|
||||||
|||| **Feature**: Batch convertions can now be interrupted with the Esc key |
|
|||| **Feature**: Added a validation for FRX to notify the user if it is not a VFP 9 REPORT |
|
||||||
|||| **Bug Fix dbf**: "Error 1903, String is too long to fit" when converting long DBF files with "DBFConversionSupport:4" to text (edyshor) |
|
|||| **Feature**: Batch convertions can now be interrupted with the Esc key |
|
||||||
|||| **Bug Fix vcx/scx**: Sometimes some properties get the description of a similarly named property |
|
|||| **Bug Fix dbf**: "Error 1903, String is too long to fit" when converting long DBF files with "DBFConversionSupport:4" to text (edyshor) |
|
||||||
|||| **Bug Fix vcx/scx**: Hidden and Protected properties are not ordered alphabetically |
|
|||| **Bug Fix vcx/scx**: Sometimes some properties get the description of a similarly named property |
|
||||||
|||| Various Code Optimizations for enhancing processing performance |
|
|||| **Bug Fix vcx/scx**: Hidden and Protected properties are not ordered alphabetically |
|
||||||
| 2014/10/08 | FDBOZZO | [v1.19.36](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.36) | **Bug fix mnx**: When generating mn2 text view, menu all pad IDs are generated as \_000000000 (bug introduced in v1.19.35) |
|
|||| Various Code Optimizations for enhancing processing performance |
|
||||||
|||| **Enhancement**: New "VFP9\_FoxBin2Prg.vbs" script for "SendTo" menu, that replaces FoxBin2Prg.exe in this menu and adds a process status message |
|
| 2014/10/08 | FDBOZZO | [v1.19.36](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.36) | **Bug fix mnx**: When generating mn2 text view, menu all pad IDs are generated as \_000000000 (bug introduced in v1.19.35) |
|
||||||
| 2014/10/05 | FDBOZZO | [v1.19.35](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.35) | **Enhancement**: Always generate the same Timestamp and UniqueID for binaries, for minimizing differences when regenerating them (Marcio Gomez G.) |
|
|||| **Enhancement**: New "VFP9\_FoxBin2Prg.vbs" script for "SendTo" menu, that replaces FoxBin2Prg.exe in this menu and adds a process status message |
|
||||||
| 2014/09/19 | FDBOZZO | [v1.19.34](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.34) | **Bug Fix**: If run from VFP Command Window and there is a file in use, an error is thrown because can't capitalize source file (Jim Nelson) |
|
| 2014/10/05 | FDBOZZO | [v1.19.35](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.35) | **Enhancement**: Always generate the same Timestamp and UniqueID for binaries, for minimizing differences when regenerating them (Marcio Gomez G.) |
|
||||||
| 2014/08/29 | FDBOZZO | [v1.19.33](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.33) | **Bug Fix mnx**: Menu doesn't generate well when there is a Bar of #BAR type without a name (Peter Hipp) |
|
| 2014/09/19 | FDBOZZO | [v1.19.34](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.34) | **Bug Fix**: If run from VFP Command Window and there is a file in use, an error is thrown because can't capitalize source file (Jim Nelson) |
|
||||||
|||| **Bug Fix mnx**: If a menu option have an associated Procedure with 1 line of code, the Procedure is converted to Command (Peter Hipp) |
|
| 2014/08/29 | FDBOZZO | [v1.19.33](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.33) | **Bug Fix mnx**: Menu doesn't generate well when there is a Bar of #BAR type without a name (Peter Hipp) |
|
||||||
| 2014/08/26 | FDBOZZO | [v1.19.32](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.32) | If exists a property called "text" it is confused with a text/endtext structure (Peter Hipp) |
|
|||| **Bug Fix mnx**: If a menu option have an associated Procedure with 1 line of code, the Procedure is converted to Command (Peter Hipp) |
|
||||||
| 2014/08/22 | FDBOZZO | [v1.19.31](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.31) | Trash cleanup code on binary methods, normally added by tools like ReFox and others |
|
| 2014/08/26 | FDBOZZO | [v1.19.32](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.32) | If exists a property called "text" it is confused with a text/endtext structure (Peter Hipp) |
|
||||||
|||| Added EXE version number when generating a debug LOG file |
|
| 2014/08/22 | FDBOZZO | [v1.19.31](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.31) | Trash cleanup code on binary methods, normally added by tools like ReFox and others |
|
||||||
|||| Enhanced recognition of #IF..#ENDIF instructions when there are spaces between # symbol and the command name |
|
|||| Added EXE version number when generating a debug LOG file |
|
||||||
|||| Added capitalization normalization for input files |
|
|||| Enhanced recognition of #IF..#ENDIF instructions when there are spaces between # symbol and the command name |
|
||||||
|||| Added new c\_Language property for querying actual compiled language (EN,ES,DE,etc) |
|
|||| Added capitalization normalization for input files |
|
||||||
| 2014/08/10 | FDBOZZO | [v1.19.30](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.30) | **Bug Fix vcx/scx**: Bad EndText (from Text/EndText block) detection when the previous line ends with "," or ";" (Jim Nelson) |
|
|||| Added new c\_Language property for querying actual compiled language (EN,ES,DE,etc) |
|
||||||
|||| Bug Fix vcx/scx: Some methods are not alphabetically sorted in some inheritance situations (Ryan Harris) |
|
| 2014/08/10 | FDBOZZO | [v1.19.30](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.30) | **Bug Fix vcx/scx**: Bad EndText (from Text/EndText block) detection when the previous line ends with "," or ";" (Jim Nelson) |
|
||||||
|||| Added FoxUnit test cases to bug fix confirmation of both |
|
|||| Bug Fix vcx/scx: Some methods are not alphabetically sorted in some inheritance situations (Ryan Harris) |
|
||||||
| 2014/08/01 | FDBOZZO | [v1.19.29](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.29) | **Bug Fix vcx/scx**: Bad Text (from Text/EndText block) detection when there is a line that begins with a "text" field and previous line end with "," in regards of ";" (M\_N\_M) |
|
|||| Added FoxUnit test cases to bug fix confirmation of both |
|
||||||
|||| Optimizations and refactoring |
|
| 2014/08/01 | FDBOZZO | [v1.19.29](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.29) | **Bug Fix vcx/scx**: Bad Text (from Text/EndText block) detection when there is a line that begins with a "text" field and previous line end with "," in regards of ";" (M\_N\_M) |
|
||||||
| 2014/07/26 | FDBOZZO | [v1.19.28](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.28) | **Feature**: Added new options in foxbin2prg.cfg (DBF_Conversion_Included, DBF_Conversion_Excluded) and in filename.dbf.cfg (DBF\_Conversion\_Order, DBF\_Conversion\_Condition) for exporting DBFs data to text when DBF_Conversion_Support is 4 (Edyshor) |
|
|||| Optimizations and refactoring |
|
||||||
| 2014/07/18 | DH/FDBOZZO | [v1.19.27](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.27) | **Feature**: Added support for exporting DBF data for DIFF when using DBF\_Conversion\_Support: 4 in foxbin2prg.cfg (It's intended just for DIFF small DBFs, as config ones, not for true Data export. Binary fields are not exported and there is not an Import Data feature) (Doug Hennig) |
|
| 2014/07/26 | FDBOZZO | [v1.19.28](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.28) | **Feature**: Added new options in foxbin2prg.cfg (DBF_Conversion_Included, DBF_Conversion_Excluded) and in filename.dbf.cfg (DBF\_Conversion\_Order, DBF\_Conversion\_Condition) for exporting DBFs data to text when DBF_Conversion_Support is 4 (Edyshor) |
|
||||||
| 2014/07/06 | FDBOZZO | [v1.19.26](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.26) | **Feature**: Take out asterisks between "ENDPROC" and "PROCEDURE", analyzed in that exact order, to regenerate binary without errors. (Daniel Sánchez) |
|
| 2014/07/18 | DH/FDBOZZO | [v1.19.27](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.27) | **Feature**: Added support for exporting DBF data for DIFF when using DBF\_Conversion\_Support: 4 in foxbin2prg.cfg (It's intended just for DIFF small DBFs, as config ones, not for true Data export. Binary fields are not exported and there is not an Import Data feature) (Doug Hennig) |
|
||||||
|||| **Feature**: Add the l\_DropNullCharsFromCode configuration option, enabled by default, to allow taking out NULLs from source code. (Matt Slay) |
|
| 2014/07/06 | FDBOZZO | [v1.19.26](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.26) | **Feature**: Take out asterisks between "ENDPROC" and "PROCEDURE", analyzed in that exact order, to regenerate binary without errors. (Daniel Sánchez) |
|
||||||
|||| **Bug Fix cfg**: ExtraBackupLevel does not work when using multi-configuration |
|
|||| **Feature**: Add the l\_DropNullCharsFromCode configuration option, enabled by default, to allow taking out NULLs from source code. (Matt Slay) |
|
||||||
| 2014/06/25 | FDBOZZO | [v1.19.25](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.25) | When processing one or multiple files with vbs scripts, show a message indicating the status of the generation, and show the error log if any error occurs (Pedro Gutiérrez M.) |
|
|||| **Bug Fix cfg**: ExtraBackupLevel does not work when using multi-configuration |
|
||||||
|||| Code cleaning and normalization |
|
| 2014/06/25 | FDBOZZO | [v1.19.25](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.25) | When processing one or multiple files with vbs scripts, show a message indicating the status of the generation, and show the error log if any error occurs (Pedro Gutiérrez M.) |
|
||||||
|||| ClearUniqueID is True by default for tx2 files |
|
|||| Code cleaning and normalization |
|
||||||
|||| OptimizeByFilestamp is False by default, to avoid possible automatic modifications made by VFP when opening a form or a classlib |
|
|||| ClearUniqueID is True by default for tx2 files |
|
||||||
|||| New AllowMultiConfig switch enabled by default, that allow a foxbin2prg.CFG file per directory, overriding main CFG (Mario Peschke) |
|
|||| OptimizeByFilestamp is False by default, to avoid possible automatic modifications made by VFP when opening a form or a classlib |
|
||||||
| 2014/06/15 | FDBOZZO | [v1.19.24](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.24) | **Bug Fix scx/vcx**: The absence of AGAIN keyword on some USE commands throws "tabla in use" error if used the PRG version from VFP command window (Matt Slay) |
|
|||| New AllowMultiConfig switch enabled by default, that allow a foxbin2prg.CFG file per directory, overriding main CFG (Mario Peschke) |
|
||||||
|||| **Bug Fix scx/vcx**: A table field called "text" that begins the line can be confused with the TEXT/ENDTEXT structure and can wrong recognize the rest of the code (Mario Peschke) |
|
| 2014/06/15 | FDBOZZO | [v1.19.24](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.24) | **Bug Fix scx/vcx**: The absence of AGAIN keyword on some USE commands throws "tabla in use" error if used the PRG version from VFP command window (Matt Slay) |
|
||||||
|||| **Bug Fix scx/vcx**: GetTimeStamp internal method throwse an error when day or month have just 1 digit (happen from v1.19.23) |
|
|||| **Bug Fix scx/vcx**: A table field called "text" that begins the line can be confused with the TEXT/ENDTEXT structure and can wrong recognize the rest of the code (Mario Peschke) |
|
||||||
|||| New "run\_aftercreate\_db2" event that permits execution of an external program when using FoxBin2Prg as object (for example, to export table data) |
|
|||| **Bug Fix scx/vcx**: GetTimeStamp internal method throwse an error when day or month have just 1 digit (happen from v1.19.23) |
|
||||||
|||| New FoxUnit Unit Tests to verify new functionality and "text" bug fix |
|
|||| New "run\_aftercreate\_db2" event that permits execution of an external program when using FoxBin2Prg as object (for example, to export table data) |
|
||||||
|||| Added foxbin2prg\_de.h file translation of most messages to German (Mario Peschke) |
|
|||| New FoxUnit Unit Tests to verify new functionality and "text" bug fix |
|
||||||
| 2014/06/07 | FDBOZZO | [v1.19.23](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.23) | Timestamps and UniqueIds values are back on binaries, and they are just cleaned up on tx2 files if NoTimestamps and ClearUniqueID flags are set. This minimizes some differences on the binary side |
|
|||| Added foxbin2prg\_de.h file translation of most messages to German (Mario Peschke) |
|
||||||
|||| Added sccdata default value when regenerating PJX binary (which is automatically completed on the PJX when opened anyway) |
|
| 2014/06/07 | FDBOZZO | [v1.19.23](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.23) | Timestamps and UniqueIds values are back on binaries, and they are just cleaned up on tx2 files if NoTimestamps and ClearUniqueID flags are set. This minimizes some differences on the binary side |
|
||||||
|||| Fixed timestamp evaluation for "OptimizeByFilestamp" optimization that evaluates just .??X files, and now .??T (memo) filestamps are evaluated too |
|
|||| Added sccdata default value when regenerating PJX binary (which is automatically completed on the PJX when opened anyway) |
|
||||||
|||| Fixed missing BorderColor property on props\_optiongroup.txt file |
|
|||| Fixed timestamp evaluation for "OptimizeByFilestamp" optimization that evaluates just .??X files, and now .??T (memo) filestamps are evaluated too |
|
||||||
|||| Fixed missing Stretch property on props\_image.txt file (Kenny Vermassen) |
|
|||| Fixed missing BorderColor property on props\_optiongroup.txt file |
|
||||||
|||| Fixed missing Enabled property on props\_image.txt file |
|
|||| Fixed missing Stretch property on props\_image.txt file (Kenny Vermassen) |
|
||||||
| 2014/05/17 | FDBOZZO | [v1.19.22](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.22) | **Bug Fix vcx/scx**: Picture property of a form class does not show the image. Does not happen with control pictures (Fidel Charny) |
|
|||| Fixed missing Enabled property on props\_image.txt file |
|
||||||
|||| **Bug Fix scx/vcx**: Incorrect detection of PROCEDURE/ENDPROC/TEXT/ENDTEXT that can cause lost of some methods in some circunstantes (Andres Mendoza) |
|
| 2014/05/17 | FDBOZZO | [v1.19.22](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.22) | **Bug Fix vcx/scx**: Picture property of a form class does not show the image. Does not happen with control pictures (Fidel Charny) |
|
||||||
|||| **Bug Fix scx/vcx**: Some options from the optiongroup control loose there width when subclassed from a class with autosize=.T. (Miguel Duran) |
|
|||| **Bug Fix scx/vcx**: Incorrect detection of PROCEDURE/ENDPROC/TEXT/ENDTEXT that can cause lost of some methods in some circunstantes (Andres Mendoza) |
|
||||||
|||| Added evaluation and generation of properties by classtype, when applicable |
|
|||| **Bug Fix scx/vcx**: Some options from the optiongroup control loose there width when subclassed from a class with autosize=.T. (Miguel Duran) |
|
||||||
|||| Added support of property evaluation from external file (props\_\*.txt) |
|
|||| Added evaluation and generation of properties by classtype, when applicable |
|
||||||
|||| Added enhanced Unit Tests of bitmap comparisons of screen captures before/after (the original is compared with the regenerated of the regenerated binary, for more accuracy) |
|
|||| Added support of property evaluation from external file (props\_\*.txt) |
|
||||||
|||| A lot of garbage collect optimizations all over the code |
|
|||| Added enhanced Unit Tests of bitmap comparisons of screen captures before/after (the original is compared with the regenerated of the regenerated binary, for more accuracy) |
|
||||||
|||| Added Unit Testing of configuration by defaults, by file and by parameters |
|
|||| A lot of garbage collect optimizations all over the code |
|
||||||
|||| Added Unit Testing for checking the generation of classes, forms, reports and menus |
|
|||| Added Unit Testing of configuration by defaults, by file and by parameters |
|
||||||
|||| Added new switch OptimizeByFilestamp (active by default) for making possible deactivation of this regeneration optimization by file timestamp, in case someone wants to force regeneration allways |
|
|||| Added Unit Testing for checking the generation of classes, forms, reports and menus |
|
||||||
| 2014/05/01 | FDBOZZO | [v1.19.21](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.21) | Added support to convert to text or binary all files of a project from pjx or pj2 (Matt Slay) |
|
|||| Added new switch OptimizeByFilestamp (active by default) for making possible deactivation of this regeneration optimization by file timestamp, in case someone wants to force regeneration allways |
|
||||||
|||| Added optimization on the search of the capitalization program when processing projects |
|
| 2014/05/01 | FDBOZZO | [v1.19.21](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.21) | Added support to convert to text or binary all files of a project from pjx or pj2 (Matt Slay) |
|
||||||
|||| Added keyword AGAIN on table openings, for enhancing concurrence (Jim Nelson) |
|
|||| Added optimization on the search of the capitalization program when processing projects |
|
||||||
|||| Added optimization based on file timestamps for regenerating only newer binaries and tx2 files (Matt Slay) |
|
|||| Added keyword AGAIN on table openings, for enhancing concurrence (Jim Nelson) |
|
||||||
|||| Added English translation in foxbin2prg\_en.h for the LOG message of new timestamp optimization |
|
|||| Added optimization based on file timestamps for regenerating only newer binaries and tx2 files (Matt Slay) |
|
||||||
|||| <DefinedPropArrayMethod> section simplification: Methods and arrays doesn't require preceding \* and ^ symbols anymore. |
|
|||| Added English translation in foxbin2prg\_en.h for the LOG message of new timestamp optimization |
|
||||||
| 2014/04/17 | FDBOZZO | [v1.19.20](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.20) | **New**: CDX filename in DB2 files have relative paths now. This help show less differences when regenerating DB2 files from different paths |
|
|||| <DefinedPropArrayMethod> section simplification: Methods and arrays doesn't require preceding \* and ^ symbols anymore. |
|
||||||
| 2014/04/02 | FDBOZZO | [v1.19.19](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.19) | **New**: DBF Hook run\_AfterCreateTable that let intercalate a personalized process between DBF creation and index creation when processing a DB2 file (example program in tests\demo\_hook\_dbf.prg included) (Fidel Charny) |
|
| 2014/04/17 | FDBOZZO | [v1.19.20](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.20) | **New**: CDX filename in DB2 files have relative paths now. This help show less differences when regenerating DB2 files from different paths |
|
||||||
| 2014/03/25 | FDBOZZO | [v1.19.18](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.18) | **Bug Fix vcx/scx**: Image controls with stretched icons or images, get redimensioned to original size when regenerating binary (Arturo Ramos) |
|
| 2014/04/02 | FDBOZZO | [v1.19.19](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.19) | **New**: DBF Hook run\_AfterCreateTable that let intercalate a personalized process between DBF creation and index creation when processing a DB2 file (example program in tests\demo\_hook\_dbf.prg included) (Fidel Charny) |
|
||||||
|||| Bug Fix vcx/scx: Library level comments are not kept (Ryan Harris) |
|
| 2014/03/25 | FDBOZZO | [v1.19.18](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.18) | **Bug Fix vcx/scx**: Image controls with stretched icons or images, get redimensioned to original size when regenerating binary (Arturo Ramos) |
|
||||||
| 2014/03/16 | FDBOZZO | [v1.19.17](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.17) | **Bug Fix frx/lbx**: Double-quoted expressiones make fx2/lb2 files corrupt (Ryan Harris) |
|
|||| Bug Fix vcx/scx: Library level comments are not kept (Ryan Harris) |
|
||||||
|||| **Bug Fix frx/lbx**: Multiline Comments are lost (Ryan Harris) |
|
| 2014/03/16 | FDBOZZO | [v1.19.17](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.17) | **Bug Fix frx/lbx**: Double-quoted expressiones make fx2/lb2 files corrupt (Ryan Harris) |
|
||||||
|||| **frx/lbx tag2 field enhance**: when used for tooltips, real values are shown in regards of b64 normal encoding |
|
|||| **Bug Fix frx/lbx**: Multiline Comments are lost (Ryan Harris) |
|
||||||
|||| **Bug Fix mnx**: Multiline Comments on Bars/Pads makes MN2 file corrupt (Ryan Harris) |
|
|||| **frx/lbx tag2 field enhance**: when used for tooltips, real values are shown in regards of b64 normal encoding |
|
||||||
|||| **Bug Fix mnx**: Some procedures doesn't generate correctly (Ryan Harris) |
|
|||| **Bug Fix mnx**: Multiline Comments on Bars/Pads makes MN2 file corrupt (Ryan Harris) |
|
||||||
|||| English translation file foxbin2prg\_en.h syntax corrected (Ryan Harris) |
|
|||| **Bug Fix mnx**: Some procedures doesn't generate correctly (Ryan Harris) |
|
||||||
|||| **Bug Fix vcx/scx**: Lowercase saved Dataenvironment property causes Reserved2 value to be not calculated |
|
|||| English translation file foxbin2prg\_en.h syntax corrected (Ryan Harris) |
|
||||||
|||| **Bug Fix frx**: <CR> character on print condition on field makes fr2 file corrupt |
|
|||| **Bug Fix vcx/scx**: Lowercase saved Dataenvironment property causes Reserved2 value to be not calculated |
|
||||||
|||| **Bug Fix mnx**: Using double-quotes on prompt option fields makes mn2 file invalid (Ryan Harris) |
|
|||| **Bug Fix frx**: <CR> character on print condition on field makes fr2 file corrupt |
|
||||||
| 2014/03/10 | FDBOZZO | [v1.19.16](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.16) | **Bug Fix vcx/scx**: properties loose there hidden/protected visibility when no default value assigned (Ryan Harris) |
|
|||| **Bug Fix mnx**: Using double-quotes on prompt option fields makes mn2 file invalid (Ryan Harris) |
|
||||||
|||| **Bug Fix vcx/scx**: character value with length >255 in addobject property regenerates with tag <fb2p\_value> included (Ryan Harris) |
|
| 2014/03/10 | FDBOZZO | [v1.19.16](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.16) | **Bug Fix vcx/scx**: properties loose there hidden/protected visibility when no default value assigned (Ryan Harris) |
|
||||||
|||| **Bug Fix vcx/scx**: When regenerating binari file with empty procedure makes FoxPro crash when trying to modify it on IDE |
|
|||| **Bug Fix vcx/scx**: character value with length >255 in addobject property regenerates with tag <fb2p\_value> included (Ryan Harris) |
|
||||||
|||| **Bug Fix scx/vcx**: Binary can be corrupted if the class have a multiline comment (Tested on: Ffc\\_frxcursor.vcx) |
|
|||| **Bug Fix vcx/scx**: When regenerating binari file with empty procedure makes FoxPro crash when trying to modify it on IDE |
|
||||||
|||| **Bug Fix**: If \_memberdata contains CR inside there values, they can be lost when regenerating tx2 text files |
|
|||| **Bug Fix scx/vcx**: Binary can be corrupted if the class have a multiline comment (Tested on: Ffc\\_frxcursor.vcx) |
|
||||||
|||| **Bug Fix**: Property values with spaces at the right loose this spaces |
|
|||| **Bug Fix**: If \_memberdata contains CR inside there values, they can be lost when regenerating tx2 text files |
|
||||||
|||| **Bug Fix**: When 2 or more methods share the same name (ej: met and met2) tx2 text file gets corrupted (Ryan Harris) |
|
|||| **Bug Fix**: Property values with spaces at the right loose this spaces |
|
||||||
| 2014/03/04 | FDBOZZO | [v1.19.15](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.15) | **Bug Fix**: OLE information cleared when a legacy TX2 is processed |
|
|||| **Bug Fix**: When 2 or more methods share the same name (ej: met and met2) tx2 text file gets corrupted (Ryan Harris) |
|
||||||
|||| Bug Fix: Default value of NoTimestamp = 0 ==> Now is 1, as should be |
|
| 2014/03/04 | FDBOZZO | [v1.19.15](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.15) | **Bug Fix**: OLE information cleared when a legacy TX2 is processed |
|
||||||
|||| Bug Fix: DBFs backlink info cleared when DBC is recreated (Ryan Harris) |
|
|||| Bug Fix: Default value of NoTimestamp = 0 ==> Now is 1, as should be |
|
||||||
|||| Feature: Lowercase capitalization in tx2 filename headers to minimize differences |
|
|||| Bug Fix: DBFs backlink info cleared when DBC is recreated (Ryan Harris) |
|
||||||
| 2014/03/01 | FDBOZZO | [v1.19.14](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.14) | Load of configuration is optimized (foxbin2prg.cfg) to read cfg only once for a massive processing of multiple conversions |
|
|||| Feature: Lowercase capitalization in tx2 filename headers to minimize differences |
|
||||||
|||| .vbs scripts have been modified to respect the conversion support configuration defined in foxbin2prg.cfg configuration file |
|
| 2014/03/01 | FDBOZZO | [v1.19.14](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.14) | Load of configuration is optimized (foxbin2prg.cfg) to read cfg only once for a massive processing of multiple conversions |
|
||||||
|||| 2 new functions where added to enhance and encapsulate the external use of the evaluation of the conversion support (requires previous call to EvaluarConfiguracion()). Used on .vbs scripts |
|
|||| .vbs scripts have been modified to respect the conversion support configuration defined in foxbin2prg.cfg configuration file |
|
||||||
|||| ExtraBackupLevels Regression: when no defined value, no backup is made |
|
|||| 2 new functions where added to enhance and encapsulate the external use of the evaluation of the conversion support (requires previous call to EvaluarConfiguracion()). Used on .vbs scripts |
|
||||||
|||| New default value ClearUniqueID = 1 in foxbin2prg.cfg for minimizing differences in the SCM |
|
|||| ExtraBackupLevels Regression: when no defined value, no backup is made |
|
||||||
| 2014/02/26 | FDBOZZO | [v1.19.13](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.13) | **Bug Fix**: If NoTimestamp setting of foxbin2prg.cfg is changed, opposite value is evaluated (Ryan Harris) |
|
|||| New default value ClearUniqueID = 1 in foxbin2prg.cfg for minimizing differences in the SCM |
|
||||||
|||| Encapsulated foxbin2prg.cfg file for enhancing FoxUnit automated testing |
|
| 2014/02/26 | FDBOZZO | [v1.19.13](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.13) | **Bug Fix**: If NoTimestamp setting of foxbin2prg.cfg is changed, opposite value is evaluated (Ryan Harris) |
|
||||||
|||| Internal change of property l\_UseTimestamps by l\_NoTimestamps |
|
|||| Encapsulated foxbin2prg.cfg file for enhancing FoxUnit automated testing |
|
||||||
|||| With ExtraBackupLevels setting you can now deactivate backups if setting to 0 (Ryan Harris proposal) |
|
|||| Internal change of property l\_UseTimestamps by l\_NoTimestamps |
|
||||||
|||| foxbin2prg.log file checking dropped, to activate the log file use foxbin2prg.cfg setting Debug=1 |
|
|||| With ExtraBackupLevels setting you can now deactivate backups if setting to 0 (Ryan Harris proposal) |
|
||||||
|||| In TX2 header files show the file without path, because genereting it from different places makes unnecesary differences in Diff (Ryan Harris proposal) |
|
|||| foxbin2prg.log file checking dropped, to activate the log file use foxbin2prg.cfg setting Debug=1 |
|
||||||
|||| Created a lot of FoxUnit automated tests to check all settings of foxbin2prg.cfg configuration file |
|
|||| In TX2 header files show the file without path, because genereting it from different places makes unnecesary differences in Diff (Ryan Harris proposal) |
|
||||||
| 2014/02/23 | FDBOZZO | [v1.19.12](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.12) | Generation of VC2/SC2 with new header metadata <OBJECTDATA> for centralizing uniqueid, timestamp and ZOrder and big reduce of differences in a diff/merge (enhancement proposed by Ryan Harris) |
|
|||| Created a lot of FoxUnit automated tests to check all settings of foxbin2prg.cfg configuration file |
|
||||||
|||| BINARY regeneration from the new metadata <OBJECTDATA> header (remains compatible with old VC2/SC2) |
|
| 2014/02/23 | FDBOZZO | [v1.19.12](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.12) | Generation of VC2/SC2 with new header metadata <OBJECTDATA> for centralizing uniqueid, timestamp and ZOrder and big reduce of differences in a diff/merge (enhancement proposed by Ryan Harris) |
|
||||||
|||| FoxUnit test cases fixed for the new functionality |
|
|||| BINARY regeneration from the new metadata <OBJECTDATA> header (remains compatible with old VC2/SC2) |
|
||||||
|||| Cleaning, Refactorization and optimization of Code |
|
|||| FoxUnit test cases fixed for the new functionality |
|
||||||
|||| Presentation enhancement of VC2/SC2 file headers |
|
|||| Cleaning, Refactorization and optimization of Code |
|
||||||
| 2014/02/13 | FDBOZZO | [v1.19.11](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.11) | WITH/ENDWITH optimizations with a conversion performance gain up to 16% more fast |
|
|||| Presentation enhancement of VC2/SC2 file headers |
|
||||||
|||| Bug Fix: Just one level of #IF was contemplated, throwing an error if more levels are nested |
|
| 2014/02/13 | FDBOZZO | [v1.19.11](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.11) | WITH/ENDWITH optimizations with a conversion performance gain up to 16% more fast |
|
||||||
|||| Bug Fix: When regenerating the PJX, default home directory not always was correct |
|
|||| Bug Fix: Just one level of #IF was contemplated, throwing an error if more levels are nested |
|
||||||
|||| New FoxUnit automated test added to check bug fix of nested #IF |
|
|||| Bug Fix: When regenerating the PJX, default home directory not always was correct |
|
||||||
| 2014/02/09 | FDBOZZO | [v1.19.10](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.10) | Added parametrization to enable configuration support for each kind of binary (0=None, 1=Only TX2, 2=TX2 and Binary) |
|
|||| New FoxUnit automated test added to check bug fix of nested #IF |
|
||||||
|||| Fixed default NoTimestamps setting |
|
| 2014/02/09 | FDBOZZO | [v1.19.10](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.10) | Added parametrization to enable configuration support for each kind of binary (0=None, 1=Only TX2, 2=TX2 and Binary) |
|
||||||
|||| Adjusted some FoxUnit test cases |
|
|||| Fixed default NoTimestamps setting |
|
||||||
|||| EXPERIMENTAL: Added new configuration parameter "ClearUniqueID" in foxbin2prg.cfg for Clearing UniqueID in binaries and text versions. Works well and apparently FoxProdoesn't make use of it, but more testing is required |
|
|||| Adjusted some FoxUnit test cases |
|
||||||
| 2014/02/08 | FDBOZZO | [v1.19.9](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.9) | New configuration items in foxbin2prg.cfg |
|
|||| EXPERIMENTAL: Added new configuration parameter "ClearUniqueID" in foxbin2prg.cfg for Clearing UniqueID in binaries and text versions. Works well and apparently FoxProdoesn't make use of it, but more testing is required |
|
||||||
|||| Localization Bug: When recompiling with localization file foxbin2prg\_en.h renamed to foxbin2prg.h, syntax error occurs |
|
| 2014/02/08 | FDBOZZO | [v1.19.9](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.9) | New configuration items in foxbin2prg.cfg |
|
||||||
|||| Debug information of .LOG files enhanced |
|
|||| Localization Bug: When recompiling with localization file foxbin2prg\_en.h renamed to foxbin2prg.h, syntax error occurs |
|
||||||
|||| New parametrization for the number of backups, now just one .BAK by default (earlier was 10) |
|
|||| Debug information of .LOG files enhanced |
|
||||||
|||| Enabled configuration file foxbin2prg.cfg by default |
|
|||| New parametrization for the number of backups, now just one .BAK by default (earlier was 10) |
|
||||||
|||| Change in default behavior: Now Timestamps are disabled by default. You can change this on foxbin2prg.cfg |
|
|||| Enabled configuration file foxbin2prg.cfg by default |
|
||||||
| 2014/02/03 | FDBOZZO | [v1.19.8](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.8-pública) | **Bug fix**: ActivePage error when executing a regenerated binary with a PageFrame / New FoxUnit test to test solution |
|
|||| Change in default behavior: Now Timestamps are disabled by default. You can change this on foxbin2prg.cfg |
|
||||||
|||| Added cNoTimestamps='1' to batch conversion vbs scripts |
|
| 2014/02/03 | FDBOZZO | [v1.19.8](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.8-pública) | **Bug fix**: ActivePage error when executing a regenerated binary with a PageFrame / New FoxUnit test to test solution |
|
||||||
| 2014/02/02 | FDBOZZO | [v1.19.7](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.7-pública) | Added Ole encapsulation in just 1 place |
|
|||| Added cNoTimestamps='1' to batch conversion vbs scripts |
|
||||||
|||| Adjusted Blocksize of generated binaries |
|
| 2014/02/02 | FDBOZZO | [v1.19.7](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.7-pública) | Added Ole encapsulation in just 1 place |
|
||||||
|||| New cNoTimestamps parameter. If '1' is given, then no timestamps are generated (useful for diff/merge) |
|
|||| Adjusted Blocksize of generated binaries |
|
||||||
| 2014/01/31 | FDBOZZO | [v1.19.6](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.6-pública) | Added SourceSafe support (SCCAPI) for Diff and Merge |
|
|||| New cNoTimestamps parameter. If '1' is given, then no timestamps are generated (useful for diff/merge) |
|
||||||
|||| SCX bug fix: Dataenvironment sometimes doesn't regenerates correctly |
|
| 2014/01/31 | FDBOZZO | [v1.19.6](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.6-pública) | Added SourceSafe support (SCCAPI) for Diff and Merge |
|
||||||
|||| Functionality change: Automatic recompilation enabled by default again because some methods doesn't show on form edit. Can be deactivated passing '0' to cRecompile param |
|
|||| SCX bug fix: Dataenvironment sometimes doesn't regenerates correctly |
|
||||||
| 2014/01/26 | FDBOZZO | [v1.19.5](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.5-pública) | Added Multilanguage support and Localization file for English. To use it rename the new file foxbin2prg\_en.h to foxbin2prg.h and recompile |
|
|||| Functionality change: Automatic recompilation enabled by default again because some methods doesn't show on form edit. Can be deactivated passing '0' to cRecompile param |
|
||||||
| 2014/01/24 | FDBOZZO | [v1.19.4](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.4-pública) | New "Recompile" parameter for recompiling from PJX directory (if provided) |
|
| 2014/01/26 | FDBOZZO | [v1.19.5](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.5-pública) | Added Multilanguage support and Localization file for English. To use it rename the new file foxbin2prg\_en.h to foxbin2prg.h and recompile |
|
||||||
|||| **Functionality change**: Now FoxBin2Prg does not recompile bins for default, because it do on bin dir and that can throw compilation errors. Use new parameter if needed or recompile by your own |
|
| 2014/01/24 | FDBOZZO | [v1.19.4](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.4-pública) | New "Recompile" parameter for recompiling from PJX directory (if provided) |
|
||||||
|||| DBC: Added support for multiline "comment" property |
|
|||| **Functionality change**: Now FoxBin2Prg does not recompile bins for default, because it do on bin dir and that can throw compilation errors. Use new parameter if needed or recompile by your own |
|
||||||
|||| VBS Batch scripts: Added progress bar |
|
|||| DBC: Added support for multiline "comment" property |
|
||||||
| 2014/01/18 | FDBOZZO | [v1.19.3](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.3-pública) | Change on TXT timestamps to preserve empty values that can save a lot of differences when diff/merging. Previously empty timestamps get converted to datetime |
|
|||| VBS Batch scripts: Added progress bar |
|
||||||
|||| Optimization on TXT generation of ZOrders |
|
| 2014/01/18 | FDBOZZO | [v1.19.3](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.3-pública) | Change on TXT timestamps to preserve empty values that can save a lot of differences when diff/merging. Previously empty timestamps get converted to datetime |
|
||||||
| 2014/01/13 | FDBOZZO | [v1.19.2](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.2-pública) | Fix on PJX regeneration caused for something missing in the last change of "Autor" to "Author" |
|
|||| Optimization on TXT generation of ZOrders |
|
||||||
| 2014/01/08 | FDBOZZO | [v1.19.1](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.1-pública) | Small change on TX2 headers to drop the "Generated" timestamp that causes innecesary differences / Updated the EXE version with the correct one |
|
| 2014/01/13 | FDBOZZO | [v1.19.2](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.2-pública) | Fix on PJX regeneration caused for something missing in the last change of "Autor" to "Author" |
|
||||||
| 2014/01/08 | FDBOZZO | [v1.19](https://github.com/fdbozzo/foxbin2prg/tree/v1.19-pública) | Added new debug flag on .vbs scripts to show a "End process" message for batch processing |
|
| 2014/01/08 | FDBOZZO | [v1.19.1](https://github.com/fdbozzo/foxbin2prg/tree/v1.19.1-pública) | Small change on TX2 headers to drop the "Generated" timestamp that causes innecesary differences / Updated the EXE version with the correct one |
|
||||||
|||| **Bug Fix**: scx/vcx Improper order of Reserved3 props cause event access to not fire |
|
| 2014/01/08 | FDBOZZO | [v1.19](https://github.com/fdbozzo/foxbin2prg/tree/v1.19-pública) | Added new debug flag on .vbs scripts to show a "End process" message for batch processing |
|
||||||
|||| **Bug Fix**: dbf Improper index generated when the type is Candidate |
|
|||| **Bug Fix**: scx/vcx Improper order of Reserved3 props cause event access to not fire |
|
||||||
|||| Added support for converting SourceSafe PJM to FoxBin PJ2 |
|
|||| **Bug Fix**: dbf Improper index generated when the type is Candidate |
|
||||||
|||| Added validation for Menus when converting from older versions, so user can convert it to VFP 9 format first |
|
|||| Added support for converting SourceSafe PJM to FoxBin PJ2 |
|
||||||
|||| Change in MN2 property: "Autor" was changed to "Author". You can add the missing letter to MN2 or regenerate |
|
|||| Added validation for Menus when converting from older versions, so user can convert it to VFP 9 format first |
|
||||||
| 2014/01/07 | FDBOZZO | [v1.18.1](https://github.com/fdbozzo/foxbin2prg/tree/v1.18.1) | Added a vbs script (NormalizeFileNames.vbs) for FileNames normalizing in batch mode, and updated FileNameCaps.exe and the call on FoxBin2Prg |
|
|||| Change in MN2 property: "Autor" was changed to "Author". You can add the missing letter to MN2 or regenerate |
|
||||||
| 2014/01/06 | FDBOZZO | [v1.18](https://github.com/fdbozzo/foxbin2prg/tree/v1.18-pública) | **bug fix**: mnx Generation of DO Procedure or Command when no Procedure or Command available to call when empty option is created (Fidel Charny) |
|
| 2014/01/07 | FDBOZZO | [v1.18.1](https://github.com/fdbozzo/foxbin2prg/tree/v1.18.1) | Added a vbs script (NormalizeFileNames.vbs) for FileNames normalizing in batch mode, and updated FileNameCaps.exe and the call on FoxBin2Prg |
|
||||||
|||| Added support for DBFs earlier than VFP 9 for generating DB2 text, but DBF regeneration is in VFP 9 version! |
|
| 2014/01/06 | FDBOZZO | [v1.18](https://github.com/fdbozzo/foxbin2prg/tree/v1.18-pública) | **bug fix**: mnx Generation of DO Procedure or Command when no Procedure or Command available to call when empty option is created (Fidel Charny) |
|
||||||
|||| dbf bug fix: DBFs linked to a DBC that use long field names throw error when regenerating DBFs |
|
|||| Added support for DBFs earlier than VFP 9 for generating DB2 text, but DBF regeneration is in VFP 9 version! |
|
||||||
|||| dbf bug fix: Some view info is lost when generating text from DBC |
|
|||| dbf bug fix: DBFs linked to a DBC that use long field names throw error when regenerating DBFs |
|
||||||
| 2014/01/03 | FDBOZZO | [v1.17](https://github.com/fdbozzo/foxbin2prg/tree/v1.17-pública) | **bug fix**: mnx Location value is lost and some menus doesn't render properly (Fidel Charny) |
|
|||| dbf bug fix: Some view info is lost when generating text from DBC |
|
||||||
|||| Added 2 VB scripts (ConvertVFP9BIN2PRG.vbs and ConvertVFP9PRG2BIN.vbs) for batch converting of dirs and files if a shortcut is placed on "SendTo" user folder |
|
| 2014/01/03 | FDBOZZO | [v1.17](https://github.com/fdbozzo/foxbin2prg/tree/v1.17-pública) | **bug fix**: mnx Location value is lost and some menus doesn't render properly (Fidel Charny) |
|
||||||
|||| Added new Unit Testing cases for menus |
|
|||| Added 2 VB scripts (ConvertVFP9BIN2PRG.vbs and ConvertVFP9PRG2BIN.vbs) for batch converting of dirs and files if a shortcut is placed on "SendTo" user folder |
|
||||||
| 2014/01/02 | FDBOZZO | [v1.16](https://github.com/fdbozzo/foxbin2prg/tree/v1.16-pública) | Added support for Menus (MNX) |
|
|||| Added new Unit Testing cases for menus |
|
||||||
| 2013/12/18 | FDBOZZO | [v1.15](https://github.com/fdbozzo/foxbin2prg/tree/v1.15-pública) | Added support for DBF, DBC and CDX binaries |
|
| 2014/01/02 | FDBOZZO | [v1.16](https://github.com/fdbozzo/foxbin2prg/tree/v1.16-pública) | Added support for Menus (MNX) |
|
||||||
| 2013/12/15 | FDBOZZO | [v1.14](https://github.com/fdbozzo/foxbin2prg/tree/v1.14-pública) | **bug fix**: scx autocenter property do nothing (Arturo Ramos) |
|
| 2013/12/18 | FDBOZZO | [v1.15](https://github.com/fdbozzo/foxbin2prg/tree/v1.15-pública) | Added support for DBF, DBC and CDX binaries |
|
||||||
|||| scx bug fix: Last COMMENT record is lost (Fidel Charny) |
|
| 2013/12/15 | FDBOZZO | [v1.14](https://github.com/fdbozzo/foxbin2prg/tree/v1.14-pública) | **bug fix**: scx autocenter property do nothing (Arturo Ramos) |
|
||||||
| 2013/12/08 | FDBOZZO | [v1.13](https://github.com/fdbozzo/foxbin2prg/tree/v1.13---pública) | **bug fix**: frx/lbx "Error 1924, TOREG is not an object" on some reports (Fidel Charny) |
|
|||| scx bug fix: Last COMMENT record is lost (Fidel Charny) |
|
||||||
| 2013/12/08 | FDBOZZO | [v1.12](https://github.com/fdbozzo/foxbin2prg/tree/v1.12---pública) | Added support for Reports (FRX) and Labels (LBX) |
|
| 2013/12/08 | FDBOZZO | [v1.13](https://github.com/fdbozzo/foxbin2prg/tree/v1.13---pública) | **bug fix**: frx/lbx "Error 1924, TOREG is not an object" on some reports (Fidel Charny) |
|
||||||
| 2013/12/08 | FDBOZZO | [v1.11](https://github.com/fdbozzo/foxbin2prg/tree/v1.11---pública) | **bug fix**: vcx/scx \_memberdata value corrupted when the value is a long one (Edgar Kummers) |
|
| 2013/12/08 | FDBOZZO | [v1.12](https://github.com/fdbozzo/foxbin2prg/tree/v1.12---pública) | Added support for Reports (FRX) and Labels (LBX) |
|
||||||
| 2013/12/07 | FDBOZZO | [v1.10](https://github.com/fdbozzo/foxbin2prg/tree/v1.10---pública) | **bug fix**: vcx/scx when there are methods with the same name, there code is assigned to erroneous objects (Fidel Charny) |
|
| 2013/12/08 | FDBOZZO | [v1.11](https://github.com/fdbozzo/foxbin2prg/tree/v1.11---pública) | **bug fix**: vcx/scx \_memberdata value corrupted when the value is a long one (Edgar Kummers) |
|
||||||
| 2013/12/07 | FDBOZZO | [v1.9](https://github.com/fdbozzo/foxbin2prg/tree/v1.9---pública) | **bug fix**: vcx/scx last fix keep loosing some properties (Fidel Charny) |
|
| 2013/12/07 | FDBOZZO | [v1.10](https://github.com/fdbozzo/foxbin2prg/tree/v1.10---pública) | **bug fix**: vcx/scx when there are methods with the same name, there code is assigned to erroneous objects (Fidel Charny) |
|
||||||
| 2013/12/06 | FDBOZZO | [v1.8](https://github.com/fdbozzo/foxbin2prg/tree/v1.8---pública) | **bug fix**: vcx/scx last fix keep loosing some properties (Fidel Charny) |
|
| 2013/12/07 | FDBOZZO | [v1.9](https://github.com/fdbozzo/foxbin2prg/tree/v1.9---pública) | **bug fix**: vcx/scx last fix keep loosing some properties (Fidel Charny) |
|
||||||
|||| sort function encapsulated and reused on BIN and TXT generation for safety |
|
| 2013/12/06 | FDBOZZO | [v1.8](https://github.com/fdbozzo/foxbin2prg/tree/v1.8---pública) | **bug fix**: vcx/scx last fix keep loosing some properties (Fidel Charny) |
|
||||||
| 2013/12/03 | FDBOZZO | [v1.7](https://github.com/fdbozzo/foxbin2prg/tree/v1.7---pública) | **bug fix**: vcx/scx some properties get lost and picture clause is not displayed if "Name" is not the last property on memo (Fidel Charny) |
|
|||| sort function encapsulated and reused on BIN and TXT generation for safety |
|
||||||
|||| Added verification of readOnly files and report this to Log file in debug mode |
|
| 2013/12/03 | FDBOZZO | [v1.7](https://github.com/fdbozzo/foxbin2prg/tree/v1.7---pública) | **bug fix**: vcx/scx some properties get lost and picture clause is not displayed if "Name" is not the last property on memo (Fidel Charny) |
|
||||||
| 2013/12/02 | FDBOZZO | [v1.6](https://github.com/fdbozzo/foxbin2prg/tree/v1.6---pública) | Complete refactoring of BIN and TXT generation |
|
|||| Added verification of readOnly files and report this to Log file in debug mode |
|
||||||
|||| Changes of various algorithms |
|
| 2013/12/02 | FDBOZZO | [v1.6](https://github.com/fdbozzo/foxbin2prg/tree/v1.6---pública) | Complete refactoring of BIN and TXT generation |
|
||||||
|||| scx/vcx bug fix: Array properties didn't save (Fidel Charny) |
|
|||| Changes of various algorithms |
|
||||||
|||| Unit testing cases with FoxUnit |
|
|||| scx/vcx bug fix: Array properties didn't save (Fidel Charny) |
|
||||||
| 2013/11/27 | FDBOZZO | [v1.5](https://github.com/fdbozzo/foxbin2prg/tree/v1.5---pública) | **Bug fix**: On some forms dataenvironment didn't regenerate appropiately (Luis Martínez) |
|
|||| Unit testing cases with FoxUnit |
|
||||||
| 2013/11/27 | FDBOZZO | [v1.4](https://github.com/fdbozzo/foxbin2prg/tree/v1.4---pública) | Added mask support |
|
| 2013/11/27 | FDBOZZO | [v1.5](https://github.com/fdbozzo/foxbin2prg/tree/v1.5---pública) | **Bug fix**: On some forms dataenvironment didn't regenerate appropiately (Luis Martínez) |
|
||||||
|||| Added support for extension configuration on file foxbin2prg.cfg, so one can use "vca" instead of "vc2", etc |
|
| 2013/11/27 | FDBOZZO | [v1.4](https://github.com/fdbozzo/foxbin2prg/tree/v1.4---pública) | Added mask support |
|
||||||
|||| Added support for a new parameter for Log generation |
|
|||| Added support for extension configuration on file foxbin2prg.cfg, so one can use "vca" instead of "vc2", etc |
|
||||||
| 2013/11/24 | FDBOZZO | [v1.3](https://github.com/fdbozzo/foxbin2prg/tree/v1.3---pública) | Bug fixes, code cleaning, refactoring |
|
|||| Added support for a new parameter for Log generation |
|
||||||
| 2013/11/24 | FDBOZZO | [v1.2](https://github.com/fdbozzo/foxbin2prg/tree/v1.2---pública) | Bug fixes, code cleaning, refactoring |
|
| 2013/11/24 | FDBOZZO | [v1.3](https://github.com/fdbozzo/foxbin2prg/tree/v1.3---pública) | Bug fixes, code cleaning, refactoring |
|
||||||
| 2013/11/22 | FDBOZZO | [v1.1](https://github.com/fdbozzo/foxbin2prg/tree/v1.1---pública) | Bug fixes |
|
| 2013/11/24 | FDBOZZO | [v1.2](https://github.com/fdbozzo/foxbin2prg/tree/v1.2---pública) | Bug fixes, code cleaning, refactoring |
|
||||||
| 2013/11/22 | FDBOZZO | [v1.0](https://github.com/fdbozzo/foxbin2prg/tree/v1.0---pública) | Initial creation of clases on prg and support of VCX/SCX/PJX files |
|
| 2013/11/22 | FDBOZZO | [v1.1](https://github.com/fdbozzo/foxbin2prg/tree/v1.1---pública) | Bug fixes |
|
||||||
|
| 2013/11/22 | FDBOZZO | [v1.0](https://github.com/fdbozzo/foxbin2prg/tree/v1.0---pública) | Initial creation of clases on prg and support of VCX/SCX/PJX files |
|
||||||
----
|
|
||||||

|
----
|
||||||
This project is part of [VFPX](https://vfpx.github.io/).
|

|
||||||
|
This project is part of [VFPX](https://vfpx.github.io/).
|
||||||
----
|
|
||||||
Last changed: _2023/03/16_ 
|
----
|
||||||
|
Last changed: _2023/08/04_ 
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
*################################################################################################################
|
*################################################################################################################
|
||||||
*FOXBIN2PRG.CFG configuration options: (If no values given, these are the DEFAULTS)
|
*FOXBIN2PRG.CFG configuration options: (If no values given, these are the DEFAULTS)
|
||||||
*Version: v1.19.78
|
*Version: v1.19.79
|
||||||
*****************************************************************************************************************
|
*****************************************************************************************************************
|
||||||
|
|
||||||
* Note, configuration files will follow an inheritance.
|
* Note, configuration files will follow an inheritance.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
*################################################################################################################
|
*################################################################################################################
|
||||||
*-- Individual DBF configuration file (syntax: filename.dbf.cfg) Defaults see FoxBin2prg.cfg
|
*-- Individual DBF configuration file (syntax: filename.dbf.cfg) Defaults see FoxBin2prg.cfg
|
||||||
*Version: v1.19.77
|
*Version: v1.19.79
|
||||||
*****************************************************************************************************************
|
*****************************************************************************************************************
|
||||||
|
|
||||||
*DBF_Conversion_Support: <0,1,2,4,8> && 0=No support, 1=Generate Header TXT only (Diff), 2=Generate Header TXT and BIN (Merge/Only Structure!), 4=Generate TXT with DATA (Diff), 8=Export and Import DATA (Merge/Structure & Data)
|
*DBF_Conversion_Support: <0,1,2,4,8> && 0=No support, 1=Generate Header TXT only (Diff), 2=Generate Header TXT and BIN (Merge/Only Structure!), 4=Generate TXT with DATA (Diff), 8=Export and Import DATA (Merge/Structure & Data)
|
||||||
|
|||||||
BIN
foxbin2prg.exe
BIN
foxbin2prg.exe
Binary file not shown.
BIN
foxbin2prg.pjt
BIN
foxbin2prg.pjt
Binary file not shown.
BIN
foxbin2prg.pjx
BIN
foxbin2prg.pjx
Binary file not shown.
@@ -1,5 +1,5 @@
|
|||||||
#DEFINE DN_FB2PRG_VERSION 1.19
|
#DEFINE DN_FB2PRG_VERSION 1.19
|
||||||
#DEFINE DC_FB2PRG_VERSION_REAL '1.19.78'
|
#DEFINE DC_FB2PRG_VERSION_REAL '1.19.79'
|
||||||
|
|
||||||
*---------------------------------------------------------------------------------------------------
|
*---------------------------------------------------------------------------------------------------
|
||||||
* Module.........: FOXBIN2PRG.PRG - FOR VISUAL FOXPRO 9.0
|
* Module.........: FOXBIN2PRG.PRG - FOR VISUAL FOXPRO 9.0
|
||||||
@@ -304,7 +304,7 @@
|
|||||||
* 16/03/2023 LScheffler v1.19.77 Bug Fix: Bin2Txt Operation on VCX loses leading spaces in Property Values #90 (JoergSchneider)
|
* 16/03/2023 LScheffler v1.19.77 Bug Fix: Bin2Txt Operation on VCX loses leading spaces in Property Values #90 (JoergSchneider)
|
||||||
* 16/03/2023 LScheffler v1.19.77 Bug Fix: Txt2Bin Operation on VCX looses double ampersand in Property Values #91 (LScheffler)
|
* 16/03/2023 LScheffler v1.19.77 Bug Fix: Txt2Bin Operation on VCX looses double ampersand in Property Values #91 (LScheffler)
|
||||||
* 20/03/2023 LScheffler v1.19.78 Enhancement: Text2Bin on PJX errors out for projects with an attach icon that has a drive letter on its path. #93 (ericbarte)
|
* 20/03/2023 LScheffler v1.19.78 Enhancement: Text2Bin on PJX errors out for projects with an attach icon that has a drive letter on its path. #93 (ericbarte)
|
||||||
* 04/08/2023 LScheffler v1.19.78 Bug Fix: Bin2Text: Forms with ole controls conversion error (also: any vcx)
|
* 04/08/2023 LScheffler v1.19.79 Bug Fix: Bin2Text: Forms with ole controls conversion error (also: any vcx)
|
||||||
* </HISTORIAL DE CAMBIOS Y NOTAS IMPORTANTES>
|
* </HISTORIAL DE CAMBIOS Y NOTAS IMPORTANTES>
|
||||||
*
|
*
|
||||||
*---------------------------------------------------------------------------------------------------
|
*---------------------------------------------------------------------------------------------------
|
||||||
|
|||||||
Reference in New Issue
Block a user