From: Ezra B. <ezr...@us...> - 2010-07-11 02:47:42
|
Update of /cvsroot/win32forth/win32forth/apps/Win32ForthIDE In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv7422 Modified Files: EdToolbar.f EdVersion.f Log Message: Updates. Enhancement to search & replace, auto detect disk file changes,debug tab and others. EAB Index: EdVersion.f =================================================================== RCS file: /cvsroot/win32forth/win32forth/apps/Win32ForthIDE/EdVersion.f,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** EdVersion.f 1 Feb 2010 01:42:46 -0000 1.14 --- EdVersion.f 11 Jul 2010 02:47:34 -0000 1.15 *************** *** 1,5 **** \ $Id$ ! 10211 value sciedit_version# \ Version numbers: v.ww.rr --- 1,5 ---- \ $Id$ ! 10212 value sciedit_version# \ Version numbers: v.ww.rr *************** *** 342,343 **** --- 342,357 ---- - Added the ability to change the editor font. + \ changes for version 1.02.12 + EAB Tuesday, May 11 2010 + - Enhanced search & replace dialog to allow searching and replacing in opened files or + entire folders. + Friday, May 28 2010 + - Added feature to monitor file system and prompt a reload if a file has been + modified. Enabled from options dialog + - Auto saving of a session also enabled form options dialog. Last active files + and project now available automatically on startup. + - Added MessageBox builder dialog. Really just a port aka copy from BCX. Another example of adding + code to a form in Form Designer. + Tuesday, June 22 2010 + - Which tabs are shown is now user configurable, and added a debug dialog ( not shown by default) tab. + Index: EdToolbar.f =================================================================== RCS file: /cvsroot/win32forth/win32forth/apps/Win32ForthIDE/EdToolbar.f,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** EdToolbar.f 1 Oct 2008 03:08:51 -0000 1.15 --- EdToolbar.f 11 Jul 2010 02:47:34 -0000 1.16 *************** *** 409,413 **** ?Find: ActiveChild IDM_FIND_NEXT EnableButton: ControlToolbar ?Find: ActiveChild IDM_FIND_PREVIOUS EnableButton: ControlToolbar ! GetTextLength: ActiveChild IDM_REPLACE_TEXT EnableButton: ControlToolbar GetTextLength: ActiveChild IDM_BROWSE EnableButton: ControlToolbar else --- 409,413 ---- ?Find: ActiveChild IDM_FIND_NEXT EnableButton: ControlToolbar ?Find: ActiveChild IDM_FIND_PREVIOUS EnableButton: ControlToolbar ! \ GetTextLength: ActiveChild IDM_REPLACE_TEXT EnableButton: ControlToolbar GetTextLength: ActiveChild IDM_BROWSE EnableButton: ControlToolbar else *************** *** 421,425 **** false IDM_FIND_NEXT EnableButton: ControlToolbar false IDM_FIND_PREVIOUS EnableButton: ControlToolbar ! false IDM_REPLACE_TEXT EnableButton: ControlToolbar false IDM_REDO EnableButton: ControlToolbar false IDM_BROWSE EnableButton: ControlToolbar --- 421,425 ---- false IDM_FIND_NEXT EnableButton: ControlToolbar false IDM_FIND_PREVIOUS EnableButton: ControlToolbar ! \ false IDM_REPLACE_TEXT EnableButton: ControlToolbar false IDM_REDO EnableButton: ControlToolbar false IDM_BROWSE EnableButton: ControlToolbar *************** *** 446,450 **** false IDM_FIND_NEXT EnableButton: ControlToolbar false IDM_FIND_PREVIOUS EnableButton: ControlToolbar ! false IDM_REPLACE_TEXT EnableButton: ControlToolbar false IDM_REDO EnableButton: ControlToolbar --- 446,450 ---- false IDM_FIND_NEXT EnableButton: ControlToolbar false IDM_FIND_PREVIOUS EnableButton: ControlToolbar ! \ false IDM_REPLACE_TEXT EnableButton: ControlToolbar false IDM_REDO EnableButton: ControlToolbar |