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.35'
#DEFINE GOFISH_BUILDDATE 'November 30, 2024'
#DEFINE GOFISH_DBUILDDATE Date(2024,11, 30)
#DEFINE GOFISH_VERSION '7.1.36'
#DEFINE GOFISH_BUILDDATE 'December 05, 2024'
#DEFINE GOFISH_DBUILDDATE Date(2024,12, 5)
#DEFINE GOFISH_DOWNLOAD_URL 'https://raw.githubusercontent.com/VFPX/GoFish/master/Source/Source.zip'
#DEFINE GOFISH_VERSION_STRING_FOR_VERSION_FILE 'GoFish - 7.1.35 - November 30, 2024 - 20241130'
#DEFINE GOFISH_VERSION_STRING_FOR_VERSION_FILE 'GoFish - 7.1.36 - December 05, 2024 - 20241205'
#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 @@
35
36
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.
13 changes: 11 additions & 2 deletions Source/Lib/gofishsearchengine.prg
Original file line number Diff line number Diff line change
Expand Up @@ -2849,7 +2849,7 @@ Result

lnReturn = 2

Case Inlist(m.lcMatchType, MATCHTYPE_CODE, MATCHTYPE_COMMENT) Or;
Case Inlist(m.lcMatchType, MATCHTYPE_CODE, MATCHTYPE_COMMENT, '<Cleanup>') Or;
(m.toObject.UserField.IsText And !Inlist(m.lcMatchType, MATCHTYPE_FILENAME, MATCHTYPE_TIMESTAMP))

lnReturn = 1
Expand Down Expand Up @@ -5648,6 +5648,15 @@ j
lnMaxMatchStart = Iif(m.llThisField, Len(m.lcCode), m.lnMaxMatchStart)
Endif

If Not Empty(Cleanup)
lcCode = m.lcCode + CRLF + Replicate('*', 60) + CRLF + CRLF
llThisField = m.lcField = 'CLEANUP'
lnMinMatchStart = Iif(m.llThisField, Len(m.lcCode), m.lnMinMatchStart)
lcType = Iif(m.llThisField, Transform(Len(m.lcCode) + 1) + ' ' + Transform(Len(Cleanup)), m.lcType)
lcCode = m.lcCode + Cleanup + CRLF
lnMaxMatchStart = Iif(m.llThisField, Len(m.lcCode), m.lnMaxMatchStart)
Endif

If Not Empty(Procedure)
lcCode = m.lcCode + CRLF + Replicate('*', 60) + CRLF + CRLF
llThisField = m.lcField = 'PROCEDURE'
Expand All @@ -5656,7 +5665,7 @@ j
lcCode = m.lcCode + Procedure + CRLF
lnMaxMatchStart = Iif(m.llThisField, Len(m.lcCode), m.lnMaxMatchStart)
Endif

Case m.lcExt = 'DBC'
._Name = Alltrim(ObjectName)
._Class = Alltrim(ObjectType)
Expand Down
Binary file modified Source/Source.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion _GoFishVersionFile.txt
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ EndText
lcNote = Substr(lcNote, At('--', lcNote))
lcNote = Alltrim(lcNote, 1, ' ', '-', Chr(13), Chr(10))

AddProperty(toUpdateInfo, 'AvailableVersion', 'GoFish - 7.1.35 - November 30, 2024 - 20241130')
AddProperty(toUpdateInfo, 'AvailableVersion', 'GoFish - 7.1.36 - December 05, 2024 - 20241205')
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
5 changes: 5 additions & 0 deletions docs/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@

---

## Version 7.1.36 - 2024-12-05

Bug fixes:
- Field "Cleanup" in MNXs was not being searched (#321)

## Version 7.1.35 - 2024-11-30

Bug fixes:
Expand Down