|
From: Christopher W. <caw...@us...> - 2005-12-13 21:04:57
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23467 Modified Files: Changelog.txt Log Message: Add info about more changes we've made Index: Changelog.txt =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt/Changelog.txt,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** Changelog.txt 2 Dec 2005 16:19:17 -0000 1.19 --- Changelog.txt 13 Dec 2005 21:04:45 -0000 1.20 *************** *** 9,20 **** * The catchpoint dialog allows to add a ruby exception breakpoint * There can be at most one exception breakpoint; the breakpoint can be enabled, disabled and removed in the breakpoint view - * Added outline support for aliasing methods using the format 'alias :new_method :old_method' - * Fixed bug where current visibility was never reset when opening a new class * Ruby Search - * Fixed arguments in alias template to refer to methods in ocrrect order (first arg is new name, second is old) * Syntax Highlighting * Added ability to distinctly color characters * Added ability to distinctly color Fixnums (numbers) * Added ability to distinctly color Symbols Changes merged from SRB 0.6.1: * SRB_0-6-1_1: Enable/Disable breakpoints, move breakpoints --- 9,37 ---- * The catchpoint dialog allows to add a ruby exception breakpoint * There can be at most one exception breakpoint; the breakpoint can be enabled, disabled and removed in the breakpoint view * Ruby Search * Syntax Highlighting * Added ability to distinctly color characters * Added ability to distinctly color Fixnums (numbers) * Added ability to distinctly color Symbols + * Code completion + * Fixed arguments in alias template to refer to methods in ocrrect order (first arg is new name, second is old) + * Always suggests Kernel methods (unless user has typed text which would eliminate all of them as possibilities) + * Suggest Class and Module names from current project and any projects referenced by it + * Ruby Model / AST + * Added outline support for aliasing methods using the format 'alias :new_method :old_method' + * Fixed bug where current visibility was never reset when opening a new class + * Fix broken link between RubyProjects and RubyScripts. RubyProjects didn't properly find and add all RubyScripts as children. + It should do so now (according to RubyFileMatcher's behavior). + * Started to implement ElementChangeListeners/RubyDelta/RubyModelOperation core model machinery + * Editor + * Code Folding + * Now allows folding of class methods (self.method) + * Now updates code folding points as user edits the ruby script + * Double-click now selects text more logically (Try double-clicking a method call or variable in a method chain. + It used to select until it hit a space or bracket. Now it will stop at periods as well [and more characters too]) + * Extension Points + * New extension point for template proposals + * NEw extension point for text hovers + Changes merged from SRB 0.6.1: * SRB_0-6-1_1: Enable/Disable breakpoints, move breakpoints |