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
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ assignees: ''
## ℹ Computer information

- VFP version:
- GoFish version:
- GoFish version: #.#.#
- Last GoFish version w/o bug (if available):

## 📝 Provide detailed reproduction steps (if any)
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 = '6.0'
lcBuild = '005' && <---- Set your desired version level of the tool here
lcBuild = '006' && <---- 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 '6.0.005'
#DEFINE GOFISH_BUILDDATE '11. M�rz 2023, '
#DEFINE GOFISH_DBUILDDATE Date(2023,3, 11)
#DEFINE GOFISH_VERSION '6.0.006'
#DEFINE GOFISH_BUILDDATE '12. M�rz 2023, '
#DEFINE GOFISH_DBUILDDATE Date(2023,3, 12)
#DEFINE GOFISH_DOWNLOAD_URL 'https://raw.githubusercontent.com/VFPX/GoFish/master/Source/Source.zip'
#DEFINE GOFISH_VERSION_STRING_FOR_VERSION_FILE 'GoFish5 - 6.0.005 - 11. M�rz 2023, - 20230311'
#DEFINE GOFISH_VERSION_STRING_FOR_VERSION_FILE 'GoFish5 - 6.0.006 - 12. M�rz 2023, - 20230312'
#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
14 changes: 13 additions & 1 deletion Source/Changelog_Thor.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
GoFish Change Log

## Ver 6.0.006
**Released 2023-03-12**
### Changes
- Fixed: Suppress error with odd ORDER BY from old version #53
- Fixed: Check box *Whole Word* was not framed when non default value #7

## Ver 6.0.005
**Released 2023-03-11**
### Changes
- Improved: Screen to help with the duplicate issue #53
SET SAFETY ON to help to find the problem

## Ver 6.0.004 **Released 2023-03-11**
- Improved: `SET SAFETY OFF` to circumvent a problem double copy. Until real fix.
- Improved: `SET SAFETY OFF` to circumvent a problem with double copy. (issue #53) Until real fix.

## Ver 6.0.003 **Released 2023-03-10**
For more details check https://github.com/VFPX/GoFish/docs/Changes.md
Expand Down
Binary file modified Source/Forms/gofish_options.SCT
Binary file not shown.
17 changes: 16 additions & 1 deletion Source/Forms/gofish_options.gf_options.sc2
Original file line number Diff line number Diff line change
Expand Up @@ -1393,7 +1393,7 @@ DEFINE CLASS gf_options AS gf_baseform OF "..\lib\gofishui.vcx"

ADD OBJECT 'pfSettings.pageColours.Label1' AS label WITH ;
BackStyle = 0, ;
Caption = "Frame colour", ;
Caption = "Frame colour (Non default value)", ;
Height = 17, ;
Left = 21, ;
Name = "Label1", ;
Expand Down Expand Up @@ -2316,6 +2316,21 @@ DEFINE CLASS gf_options AS gf_baseform OF "..\lib\gofishui.vcx"
loContainerCheckBoxes = m.loPageframe.pageColumns.containerColumnCheckBoxes
lnContainerHeight = m.loContainerCheckBoxes.Height

*!* This.oForm.gaFields:
*!* (m.lnRow, 1) = controlsource
*!* (m.lnRow, 2) = Default column order
*!* (m.lnRow, 3) = Caption, if emptyas controlsource
*!* (m.lnRow, 4) = Usage:
*!* <0: only if dlDebug is .T., no column in the grid
*!* -2: Group "Control" in options control fields, not visible as default, only if dlDebug is .T.
*!* -1: Group "Debug" in options, not visible as default, only if dlDebug is .T.
*!* 0: Group "Default" in options, visible as default
*!* 1: Alternative group #1 in options, not visible as default
*!* 2: Alternative group #2 in options, not visible as default
*!* 3: Replace group disabled in options, visibility will switch with replace mode
*!* 4: Replace group enabled in options, not visible as default
*!* (m.lnRow, 5) = column.width

Local Array;
laFieldNames[This.oForm.oGrid.ColumnCount, 7]

Expand Down
Binary file modified Source/Forms/gofish_options.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/gofishui.VCT
Binary file not shown.
398 changes: 264 additions & 134 deletions Source/Lib/gofishui.gf_resultsform.vc2

Large diffs are not rendered by default.

Binary file modified Source/Lib/gofishui.vcx
Binary file not shown.
Binary file modified Source/Source.zip
Binary file not shown.
17 changes: 16 additions & 1 deletion _GoFishVersionFile.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@ Lparameters toUpdateInfo
Text to lcNote NoShow
GoFish Change Log

## Ver 6.0.006
**Released 2023-03-12**
Changes
- Fixed: Suppress error with odd ORDER BY from old version #53
- Fixed: Check box *Whole Word* was not framed when non default value #7

## Ver 6.0.005
**Released 2023-03-11**
Changes
- Improved: Screen to help with the duplicate issue #53
SET SAFETY ON to help to find the problem

## Ver 6.0.004 **Released 2023-03-11**
- Improved: `SET SAFETY OFF` to circumvent a problem with double copy. (issue #53) Until real fix.

## Ver 6.0.003 **Released 2023-03-10**
For more details check https://github.com/VFPX/GoFish/docs/Changes.md
- New: Mode to display history in tree
Expand All @@ -20,7 +35,7 @@ For more details check https://github.com/VFPX/GoFish/docs/Changes.md

EndText

AddProperty(toUpdateInfo, 'AvailableVersion', 'GoFish5 - 6.0.003 - 10. M�rz 2023, - 20230310')
AddProperty(toUpdateInfo, 'AvailableVersion', 'GoFish5 - 6.0.006 - 12. M�rz 2023, - 20230312')
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.

19 changes: 18 additions & 1 deletion docs/Changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,23 @@ Replaces the lists in
- ChangeLog_Ver_5.txt

----
## Ver 6.0.006
**Released 2023-03-12**
### Changes
- Fixed: Suppress error with odd ORDER BY from old version #53
- Fixed: Check box *Whole Word* was not framed when non default value #7

## Ver 6.0.005
**Released 2023-03-11**
### Changes
- Improved: Screen to help with the duplicate issue #53
SET SAFETY ON to help to find the problem

## Ver 6.0.004
**Released 2023-03-11**
### Changes
- Improved: `SET SAFETY OFF` to circumvent a problem with double copy. (issue #53) Until real fix.

## Ver 6.0.003
**Released 2023-03-10**
### Changes
Expand Down Expand Up @@ -453,4 +470,4 @@ For more details check [Changes on V6](./New_6.md).
- Park Ave Marketing firm suggests rename - "Go Fish"

----
Last changed: _2023/03/08_ ![Picture](./pictures/vfpxpoweredby_alternative.gif)
Last changed: _2023/03/12_ ![Picture](./pictures/vfpxpoweredby_alternative.gif)
Loading