AmendHub

Download:

nulleric

/

Fix-a-Fork

/

amendments

/

36

Release 1.0.1-a


eric made amendment 36 about 1 month ago
--- Fix-a-Fork.p.r Sat Mar 30 20:44:47 2024 +++ Fix-a-Fork.p.r Fri Apr 5 22:54:55 2024 @@ -190,8 +190,8 @@ data 'ics4' (128) { }; data 'vers' (1) { - $"0100 8001 0000 0731 2E30 2E30 2D61 2931" /* ..Ä....1.0.0-a)1 */ - $"2E30 2E30 2D61 2043 6F70 7972 6967 6874" /* .0.0-a Copyright */ + $"0101 8001 0000 0731 2E30 2E31 2D61 2931" /* ..Ä....1.0.1-a)1 */ + $"2E30 2E31 2D61 2043 6F70 7972 6967 6874" /* .0.1-a Copyright */ $"2045 7269 6320 4865 6C67 6573 6F6E 2032" /* Eric Helgeson 2 */ $"3032 332D 3230 3234" /* 023-2024 */ }; --- main.c Fri Apr 5 22:47:39 2024 +++ main.c Fri Apr 5 22:58:35 2024 @@ -25,10 +25,10 @@ OSErr TouchFolder(short vRefNum, long parID) rec.hFileInfo.ioDirID = parID; rec.hFileInfo.ioFDirIndex = -1; rec.hFileInfo.ioFVersNum = 0; - PBGetCatInfoSync(&rec); - err = GetDateTime(&rec.dirInfo.ioDrMdDat); + err = PBGetCatInfoSync(&rec); if(err) return err; + GetDateTime(&rec.dirInfo.ioDrMdDat); rec.hFileInfo.ioVRefNum = vRefNum; rec.hFileInfo.ioDirID = parID; --- readme.txt Fri Apr 5 08:40:11 2024 +++ readme.txt Fri Apr 5 22:53:40 2024 @@ -16,6 +16,14 @@ Please report any issues on the Fix-a-Fork thread on T * Publish script that creates file_ext.c (have to find it again!) * Better icon +## 2024-04-05 + +Release 1.0.1-a + +Fixed an issue where folders would not show the custom icon right away. Thanks jjuran for the help. +Accepted a patch from JCS to to better handle file ext checks. +Added error handler if type/creator could not be set. + ## 2024-04-02 Release 1.0.0-a @@ -28,14 +36,13 @@ Clean up code a bit, remove WIP. Get ready for release Tried many things to accept folder Drag N Drop, didnt work. See scratch.c -# 2023-11-13 +## 2023-11-13 Rename conflicting ANSI function names. -# 2023-11-12 +## 2023-11-12 Release Beta 1 Figure out what DND apple events are happening for folders - maybe a fss but just a dirID - then have to figure out how to iterate over a dir.... -