Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

## Fix a bug or add an enhancement
- Fork the project: see this [guide](https://www.dataschool.io/how-to-contribute-on-github/) for setting up and using a fork.
- If you have already forked the project: **Remember yourself to pull first.**
- Make whatever changes are necessary.
- Add a description of the changes to `Source\changelog_ver_5.txt`. This is:
- *Version number* and *Release date*
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@
/Source/DeployGoFish.bat
*.bak
*.BAK
FOXUSER.*
FOXUSER*.*
*_ref.*
*.err
*.fxp
*.fxp
*.zip
*.ZIP
_command.prg
/Source/tempview.*
/Source/temptext.*

Expand Down
Binary file modified FOXUSER_9.FPT
Binary file not shown.
Binary file modified FOXUSER_9.dbf
Binary file not shown.
2 changes: 1 addition & 1 deletion Source/BuildGoFish.PRG
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Cd (lcSourceLoc)

*== Most of these local variables will make their way into BuildGoFish.h
lcVersion = '5.1'
lcBuild = '008' && <---- Set your desired version level of the tool here
lcBuild = '009' && <---- Set your desired version level of the tool here
&& This will be used on the GoFish form and will live on the
&& the _GoFish object that gets attached to _Screen at run time.

Expand Down
8 changes: 4 additions & 4 deletions Source/BuildGoFish.h
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#DEFINE GOFISH_APP_NAME 'GoFish5'
#DEFINE GOFISH_APP_FILE 'GoFish5.app'
#DEFINE GOFISH_VERSION '5.1.008'
#DEFINE GOFISH_BUILDDATE '23. November 2022, '
#DEFINE GOFISH_DBUILDDATE Date(2022,11, 23)
#DEFINE GOFISH_VERSION '5.1.009'
#DEFINE GOFISH_BUILDDATE '31. Januar 2023, '
#DEFINE GOFISH_DBUILDDATE Date(2023,1, 31)
#DEFINE GOFISH_DOWNLOAD_URL 'https://raw.githubusercontent.com/VFPX/GoFish/master/Source/Source.zip'
#DEFINE GOFISH_VERSION_STRING_FOR_VERSION_FILE 'GoFish5 - 5.1.008 - 23. November 2022, - 20221123'
#DEFINE GOFISH_VERSION_STRING_FOR_VERSION_FILE 'GoFish5 - 5.1.009 - 31. Januar 2023, - 20230131'
#DEFINE THOR_TOOL_NAME 'Thor_Tool_GoFish5'
#DEFINE VERSON_FILE_URL 'https://github.com/VFPX/GoFish/_GoFishVersionFile.txt'
#DEFINE VERSION_LOCAL_FILE 'GoFishVersionFile.txt'
Expand Down
Binary file modified Source/Forms/gf_collection_explorer.SCT
Binary file not shown.
Binary file modified Source/Forms/gf_collection_explorer.scx
Binary file not shown.
Binary file modified Source/Forms/gofish_filterpf.SCT
Binary file not shown.
Binary file modified Source/Forms/gofish_filterpf.scx
Binary file not shown.
Binary file modified Source/GoFish5.APP
Binary file not shown.
Binary file modified Source/GoFish5.PJT
Binary file not shown.
Binary file modified Source/GoFish5.pjx
Binary file not shown.
Binary file modified Source/Lib/VFP/FFC/_frxcursor.vct
Binary file not shown.
Binary file modified Source/Lib/VFP/FFC/_frxcursor.vcx
Binary file not shown.
Binary file modified Source/Lib/VFP/My/my.VCT
Binary file not shown.
Binary file modified Source/Lib/VFP/My/my.vcx
Binary file not shown.
6 changes: 4 additions & 2 deletions Source/Lib/gofishsearchengine.prg
Original file line number Diff line number Diff line change
Expand Up @@ -510,10 +510,12 @@ Define Class GoFishSearchEngine As Custom

*SF 20221018 -> local storage
*#Define ccBACKUPFOLDER Addbs(Home(7) + 'GoFishBackups')
*SF 20230131 -> issue #41
*Thisform was not a good idea here
LOCAL ccBACKUPFOLDER
ccBACKUPFOLDER = Addbs(Thisform.cCR_StoreLocal + 'GoFishBackups')
ccBACKUPFOLDER = Addbs(This.cCR_StoreLocal + 'GoFishBackups')
*/SF 20230131 -> issue #41
*/SF 20221018 -> local storage


Local lcBackupPRG, llCopyError
Local laExtensions[1], lcDestFile, lcExt, lcExtensions, lcSourceFile, lcThisBackupFolder, lnI
Expand Down
Binary file modified Source/Lib/gofishui.VCT
Binary file not shown.
Binary file modified Source/Lib/gofishui.vcx
Binary file not shown.
Binary file modified Source/Source.zip
Binary file not shown.
3 changes: 3 additions & 0 deletions Source/changelog_ver_5.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
GoFish Change Log

**Ver 5.1.009 ** Released 2023-01-31
* Fixed: Fixed problem with wrong object addressed in backup issue #41

**Ver 5.1.008 ** Released 2022-11-23
* Fixed: Problem with filter settings storage place from filter form #38

Expand Down
5 changes: 4 additions & 1 deletion _GoFishVersionFile.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ Lparameters toUpdateInfo
Text to lcNote NoShow
GoFish Change Log

**Ver 5.1.009 ** Released 2023-01-31
* Fixed: Fixed problem with wrong object addressed in backup issue #41

**Ver 5.1.008 ** Released 2022-11-23
* Fixed: Problem with filter settings storage place from filter form #38

Expand Down Expand Up @@ -95,7 +98,7 @@ GoFish Change Log

EndText

AddProperty(toUpdateInfo, 'AvailableVersion', 'GoFish5 - 5.1.008 - 23. November 2022, - 20221123')
AddProperty(toUpdateInfo, 'AvailableVersion', 'GoFish5 - 5.1.009 - 31. Januar 2023, - 20230131')
AddProperty(toUpdateInfo, 'SourceFileUrl', 'https://raw.githubusercontent.com/VFPX/GoFish/master/Source/Source.zip')
AddProperty(toUpdateInfo, 'LinkPrompt', 'GoFish Home Page')
AddProperty(toUpdateInfo, 'Link', 'https://github.com/VFPX/GoFish')
Expand Down
2 changes: 1 addition & 1 deletion _command.prg

Large diffs are not rendered by default.