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
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 'GoFish'
#DEFINE GOFISH_APP_FILE 'GoFish.app'
#DEFINE GOFISH_VERSION '7.1.29'
#DEFINE GOFISH_BUILDDATE 'October 11, 2024'
#DEFINE GOFISH_DBUILDDATE Date(2024,10, 11)
#DEFINE GOFISH_VERSION '7.1.30'
#DEFINE GOFISH_BUILDDATE 'November 01, 2024'
#DEFINE GOFISH_DBUILDDATE Date(2024,11, 1)
#DEFINE GOFISH_DOWNLOAD_URL 'https://raw.githubusercontent.com/VFPX/GoFish/master/Source/Source.zip'
#DEFINE GOFISH_VERSION_STRING_FOR_VERSION_FILE 'GoFish - 7.1.29 - October 11, 2024 - 20241011'
#DEFINE GOFISH_VERSION_STRING_FOR_VERSION_FILE 'GoFish - 7.1.30 - November 01, 2024 - 20241101'
#DEFINE THOR_TOOL_NAME 'Thor_Tool_GoFish'
#DEFINE VERSON_FILE_URL 'https://github.com/VFPX/GoFish/_GoFishVersionFile.txt'
#DEFINE VERSION_LOCAL_FILE 'GoFishVersionFile.txt'
Expand Down
2 changes: 1 addition & 1 deletion Source/BuildNumber.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
29
30
Binary file modified Source/GoFish.APP
Binary file not shown.
Binary file modified Source/GoFish.pjt
Binary file not shown.
Binary file modified Source/GoFish.pjx
Binary file not shown.
Binary file modified Source/Lib/gofishui.VCT
Binary file not shown.
2 changes: 1 addition & 1 deletion Source/Lib/gofishui.gf_combosearchexpressionhistory.vc2
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ DEFINE CLASS gf_combosearchexpressionhistory AS combobox

Scan For m.llNoFilter Or lcScope==Lower(Trim(scope))

lcItem = Alltrim(Lower(Expression))
lcItem = Alltrim(Expression)
lItemExists = .F. && assume the value isn't in the list.

For i = 1 To This.ListCount
Expand Down
Binary file modified Source/Lib/gofishui.vcx
Binary file not shown.
Binary file modified Source/Source.zip
Binary file not shown.
12 changes: 6 additions & 6 deletions _GoFishVersionFile.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ Text to lcNote NoShow

---

## Version 7.1.30 - 2024-11-01

- Drop-down for search combo box now shows original case instead of converting to lower case (#306)

## Version 7.1.29 - 2024-10-11

New options on "New in V7" page of Options screen:
Expand Down Expand Up @@ -195,18 +199,14 @@ Concept and code suggestions for this courtesy of Mike Yearwood.
- If you use '*' as the extension, GF may be bogged down searching files not of interest (such as text files created from binaries, or bak files).
- Bugs fixed:
- Sorting on full path of file name.
- Elapsed time was not including time to save results.

## Version 7.0.33 - 2024-05-25

- Add new item "Project in CurDir" to scope type dropdown (#2
- Elapsed time w
EndText

* For GF, strip off links at top of change log
lcNote = Substr(lcNote, At('--', lcNote))
lcNote = Alltrim(lcNote, 1, ' ', '-', Chr(13), Chr(10))

AddProperty(toUpdateInfo, 'AvailableVersion', 'GoFish - 7.1.29 - October 11, 2024 - 20241011')
AddProperty(toUpdateInfo, 'AvailableVersion', 'GoFish - 7.1.30 - November 01, 2024 - 20241101')
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
4 changes: 4 additions & 0 deletions docs/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

---

## Version 7.1.30 - 2024-11-01

- Drop-down for search combo box now shows original case instead of converting to lower case (#306)

## Version 7.1.29 - 2024-10-11

New options on "New in V7" page of Options screen:
Expand Down