From: Dirk B. <db...@us...> - 2005-01-06 16:55:10
|
Update of /cvsroot/win32forth/win32forth/apps/SciEdit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15229/apps/SciEdit Modified Files: CommandID.f EdCommand.f EdMenu.f EdVersion.f Main.f Log Message: dbu: New command "Help for highlighted Win32-API function" added to the help menu. The Win32-SDK help file is needed for this command. If you don't have a copy you can download it from: http://www.borland.com/devsupport/borlandcpp/patches/BC52HLP1.ZIP Don't forget to copy the win32.hlp file into the 'doc\\hlp' folder of your Win32Forth version Index: Main.f =================================================================== RCS file: /cvsroot/win32forth/win32forth/apps/SciEdit/Main.f,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Main.f 21 Dec 2004 00:18:48 -0000 1.1 --- Main.f 6 Jan 2005 16:54:52 -0000 1.2 *************** *** 18,23 **** : sysgen ; ! s" apps\SciEdit" "fpath+ ! \ s" src\wined" "fpath+ s" apps\wined\res" "fpath+ --- 18,22 ---- : sysgen ; ! s" apps\SciEdit" "fpath+ s" apps\wined\res" "fpath+ *************** *** 617,620 **** --- 616,620 ---- \ Help menu FCONTROL VK_F1 IDM_W32F_ANS_HELP ACCELENTRY + FSHIFT VK_F1 IDM_API_HELP ACCELENTRY 0 VK_F1 IDM_W32F_DOC ACCELENTRY FALT VK_F1 IDM_ANS_DOC ACCELENTRY Index: EdVersion.f =================================================================== RCS file: /cvsroot/win32forth/win32forth/apps/SciEdit/EdVersion.f,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** EdVersion.f 21 Dec 2004 00:18:48 -0000 1.1 --- EdVersion.f 6 Jan 2005 16:54:52 -0000 1.2 *************** *** 1,5 **** \ $Id$ ! 10120 value sciedit_version# \ Version numbers: v.ww.rr --- 1,5 ---- \ $Id$ ! 10121 value sciedit_version# \ Version numbers: v.ww.rr *************** *** 162,166 **** dbu Montag, November 08 2004 - Update w32fScintilla.dll to use the latest Scintilla Version 1.62 ! - File>Exit terminated SciEdit without saving changed files \ changes for Version 1.01.20 --- 162,166 ---- dbu Montag, November 08 2004 - Update w32fScintilla.dll to use the latest Scintilla Version 1.62 ! - File>Exit terminated SciEdit without saving changed files; fixed \ changes for Version 1.01.20 *************** *** 169,171 **** --- 169,183 ---- used to navigate within HTML documents and for browseing within the source files (Hyperlinking) + + \ changes for Version 1.01.21 + dbu Sonntag, Dezember 26 2004 + - New command "Help for highlighted Win32-API function" added to + the help menu. The Win32-SDK help file is needed for this command. + If you don't have a copy you can download it from: + + http://www.borland.com/devsupport/borlandcpp/patches/BC52HLP1.ZIP + + Don't forget to copy the win32.hlp file into the 'doc\hlp' folder of + your Win32Forth version + |