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
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 = '009' && <---- Set your desired version level of the tool here
lcBuild = '010' && <---- 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.009'
#DEFINE GOFISH_BUILDDATE '31. Januar 2023, '
#DEFINE GOFISH_DBUILDDATE Date(2023,1, 31)
#DEFINE GOFISH_VERSION '5.1.010'
#DEFINE GOFISH_BUILDDATE '22. Februar 2023, '
#DEFINE GOFISH_DBUILDDATE Date(2023,2, 22)
#DEFINE GOFISH_DOWNLOAD_URL 'https://raw.githubusercontent.com/VFPX/GoFish/master/Source/Source.zip'
#DEFINE GOFISH_VERSION_STRING_FOR_VERSION_FILE 'GoFish5 - 5.1.009 - 31. Januar 2023, - 20230131'
#DEFINE GOFISH_VERSION_STRING_FOR_VERSION_FILE 'GoFish5 - 5.1.010 - 22. Februar 2023, - 20230222'
#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_about.SCT
Binary file not shown.
4 changes: 2 additions & 2 deletions Source/Forms/gofish_about.sc2
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ DEFINE CLASS gf_help AS gf_baseform OF "..\lib\gofishui.vcx"
ENDPROC

PROCEDURE Label1.Click
Shell('http://groups.google.com/group/foxprogofish')
GF_Shell('http://groups.google.com/group/foxprogofish')

ENDPROC

Expand All @@ -237,7 +237,7 @@ DEFINE CLASS gf_help AS gf_baseform OF "..\lib\gofishui.vcx"
ENDPROC

PROCEDURE lblGoFishOnVFPx.Click
Shell('https://github.com/VFPX/GoFish')
GF_Shell('https://github.com/VFPX/GoFish')

ENDPROC

Expand Down
Binary file modified Source/Forms/gofish_about.scx
Binary file not shown.
Binary file modified Source/Forms/gofish_advaccedreplacehelp.SCT
Binary file not shown.
2 changes: 1 addition & 1 deletion Source/Forms/gofish_advaccedreplacehelp.sc2
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ DEFINE CLASS gf_baseform1 AS gf_baseform OF "..\lib\gofishui.vcx"

PROCEDURE lblGoFishOnVFPx.Click
messagebox('No help available at this time.', 0, 'GoFish')
*** TODO: Shell('URL for replace help')
*** TODO: GF_Shell('URL for replace help')

ENDPROC

Expand Down
Binary file modified Source/Forms/gofish_advaccedreplacehelp.scx
Binary file not shown.
Binary file modified Source/Forms/gofish_advanced.scx
Binary file not shown.
Binary file modified Source/Forms/gofish_extendsearch.scx
Binary file not shown.
Binary file modified Source/Forms/gofish_filter.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/Forms/gofish_options.SCT
Binary file not shown.
28 changes: 14 additions & 14 deletions Source/Forms/gofish_options.sc2
Original file line number Diff line number Diff line change
Expand Up @@ -2384,9 +2384,9 @@ DEFINE CLASS gf_options AS gf_baseform OF "..\lib\gofishui.vcx"
Case !Empty(m.tcFolder)
*just store folder given
lcFolder = m.tcFolder
llFound = Create_LocalPath(@lcFolder, .F., .F., .T.)
llFound = GF_Create_LocalPath(@lcFolder, .F., .F., .T.)

Put_LocalPath(m.lcFolder)
GF_Put_LocalPath(m.lcFolder)

Case Thisform.oForm.nFirstLoad#2
*nothing to do
Expand All @@ -2398,7 +2398,7 @@ DEFINE CLASS gf_options AS gf_baseform OF "..\lib\gofishui.vcx"
*nothing to do, activate
llSet = .T.

Case Get_LocalPath(@tcFolder) And Directory(m.tcFolder)
Case GF_Get_LocalPath(@tcFolder) And Directory(m.tcFolder)
*found resource, activate
Thisform.cCR_StoreLocal_Option = m.tcFolder
Thisform.cCR_StoreLocal_Set = m.tcFolder
Expand All @@ -2407,13 +2407,13 @@ DEFINE CLASS gf_options AS gf_baseform OF "..\lib\gofishui.vcx"
*pick a folder, or use default path

tcFolder = Iif(Thisform.oForm.lCR_Local_Default,'',Justpath(Set("Resource",1)))
llFound = Create_LocalPath(@tcFolder, .F., Thisform.oForm.lCR_Local_Default, Thisform.oForm.lCR_Local_Default)
llFound = GF_Create_LocalPath(@tcFolder, .F., Thisform.oForm.lCR_Local_Default, Thisform.oForm.lCR_Local_Default)

If Directory(m.tcFolder) Then
*folder found, activate
Thisform.cCR_StoreLocal_Option = m.tcFolder
Thisform.cCR_StoreLocal_Set = m.tcFolder
Put_LocalPath(m.tcFolder)
GF_Put_LocalPath(m.tcFolder)
llSet = .T.
Else &&Directory(m.tcFolder)
Thisform.oForm.lCR_Local = .F.
Expand Down Expand Up @@ -2466,12 +2466,12 @@ DEFINE CLASS gf_options AS gf_baseform OF "..\lib\gofishui.vcx"
ENDPROC

PROCEDURE pfSettings.Page1.Label3.Click
Shell('https://github.com/VFPX/Thor')
GF_Shell('https://github.com/VFPX/Thor')

ENDPROC

PROCEDURE pfSettings.Page1.Label5.Click
Shell('https://github.com/VFPX/GoFish')
GF_Shell('https://github.com/VFPX/GoFish')

ENDPROC

Expand Down Expand Up @@ -2543,7 +2543,7 @@ DEFINE CLASS gf_options AS gf_baseform OF "..\lib\gofishui.vcx"
lcPath = '"' + Thisform.cCR_StoreLocal + '"'
*/SF 20221018 -> local storage

OpenExplorerWindow(lcPath)
GF_OpenExplorerWindow(lcPath)
ENDPROC

PROCEDURE pfSettings.pageAdvanced.cmdSetFolder.Click
Expand Down Expand Up @@ -2611,13 +2611,13 @@ DEFINE CLASS gf_options AS gf_baseform OF "..\lib\gofishui.vcx"
lcPath = '"' + Addbs(Thisform.cCR_StoreLocal + 'GoFishBackups') + '"'
*/SF 20221018 -> local storage

OpenExplorerWindow(lcPath)
GF_OpenExplorerWindow(lcPath)

ENDPROC

PROCEDURE pfSettings.pageBackups.Label2.Click
messagebox('No help available at this time.', 0, 'GoFish')
*** TODO: Shell('URL for backup help')
*** TODO: GF_Shell('URL for backup help')

ENDPROC

Expand Down Expand Up @@ -2853,7 +2853,7 @@ DEFINE CLASS gf_options AS gf_baseform OF "..\lib\gofishui.vcx"
lcPath = '"' + Thisform.cCR_StoreLocal + lcFolder + '"'
*/SF 20221018 -> local storage

OpenExplorerWindow(lcPath)
GF_OpenExplorerWindow(lcPath)
ENDPROC

PROCEDURE pfSettings.pagePreferences.Spinner4.Click
Expand Down Expand Up @@ -2919,12 +2919,12 @@ DEFINE CLASS gf_options AS gf_baseform OF "..\lib\gofishui.vcx"

lcPath = JustPath(Thisform.oSearchEngine.cReplaceDetailTable)

OpenExplorerWindow(lcPath)
GF_OpenExplorerWindow(lcPath)
ENDPROC

PROCEDURE pfSettings.pageReplace.Label2.Click
messagebox('No help available at this time.', 0, 'GoFish')
*** TODO: Shell('URL for replace help')
*** TODO: GF_Shell('URL for replace help')

ENDPROC

Expand Down Expand Up @@ -3021,7 +3021,7 @@ DEFINE CLASS gf_options AS gf_baseform OF "..\lib\gofishui.vcx"
ENDPROC

PROCEDURE pfSettings.pageThor.Label2.Click
Shell('https://github.com/VFPX/Thor')
GF_Shell('https://github.com/VFPX/Thor')

ENDPROC

Expand Down
Binary file modified Source/Forms/gofish_options.scx
Binary file not shown.
Binary file modified Source/Forms/gofish_results.scx
Binary file not shown.
Binary file modified Source/Forms/gofish_results_desktop.scx
Binary file not shown.
Binary file modified Source/Forms/gofish_searchhistory.SCT
Binary file not shown.
4 changes: 2 additions & 2 deletions Source/Forms/gofish_searchhistory.sc2
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ DEFINE CLASS form1 AS gf_baseform OF "..\lib\gofishui.vcx"
Return
Endif

If RemoveFolder(m.lcPath)
If GF_RemoveFolder(m.lcPath)
Delete In gf_SearchHistory
Else
Messagebox('Unable to delete folder "' + m.lcPath + '"', 16, 'Unable to delete folder')
Expand Down Expand Up @@ -282,7 +282,7 @@ DEFINE CLASS form1 AS gf_baseform OF "..\lib\gofishui.vcx"

lcPath = Alltrim(gf_SearchHistory.SearchHistoryFolder)

OpenExplorerWindow(lcPath)
GF_OpenExplorerWindow(lcPath)
ENDPROC

PROCEDURE Command1.Refresh
Expand Down
Binary file modified Source/Forms/gofish_searchhistory.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.
2 changes: 1 addition & 1 deletion Source/GoFishVersionFile.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
GoFish5 - 5.1.006 - 11. November 2022, - 20221111
GoFish5 - 5.1.009 - 31. Januar 2023, - 20230131
Binary file modified Source/Lib/VFP/FFC/_base.vcx
Binary file not shown.
Binary file modified Source/Lib/VFP/FFC/_environ.vcx
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.
Binary file modified Source/Lib/gofishui.VCT
Binary file not shown.
Loading