root/trunk/Padre/Changes @ 11108

Revision 11108, 72.7 KB (checked in by adamk, 6 months ago)

Switched from pip to cpanm

Line 
1Changes for Perl Application Development and Refactoring Environment
2NOTE: Do not "tidy" or change the indenting here, or we break svn annotate
3
40.59 To Be Released
5    - Don't crash open file list dialog on unsaved files or without
6      files (SEWI)
7    - Added a small survey for new Padre installation (SEWI)
8    - Resolved the clash between threads and SQLite by temporarily
9      disconnecting from SQLite during a thread spawn (ADAMK)
10    - Slave master quick-spawning in Padre::Startup, so that
11      we get smaller thread spawn memory penalty from the
12      interpreter copy. On Win32 the per-thread cost drops from
13      34.1meg to 20meg with a reduction in total memory use for a
14      typical user of about 20% (ADAMK)
15    - Add language names/translated texts to select_language list (SEWI)
16    - Fixed ticket #865 Wrong document type in View Document As (PLAVEN)
17    - New Padre::Wx::Display screen geometry library for handling multiple
18      screens, weird geometry setups and other weird stuff that coders
19      have on their development setups. Padre's main window uses this to
20      calculate an elegant golden-ratio uniform-margin default position
21      and size (ADAMK)
22    - When showing a toolbar panel for the first time, make sure it's lock
23      state is consistent with the main_lockinterface config setting (ADAMK)
24    - Local file and remote file installation switched from pip to
25      cpanm (ADAMK)
26
270.58 2010.03.08  **WARNING Still not stable**
28    - Fixed "Open File In Existing Padre" for non-win32 (PDONELAN)
29    - In advanced preferences, display the storage backend name when it is
30      default and 'User' is now called 'Overriden' (AZAWAWI)
31    - In advanced preferences, display preferences options for non-boolean
32      settings (AZAWAWI)
33    - In advanced preferences, display a True/False radio button for boolean
34      settings (AZAWAWI)
35    - Fixed an incorrect default value display bug in advanced preferences
36      when it is toggled (AZAWAWI)
37    - In advanced preferences, hide bottom controls at startup (AZAWAWI)
38    - In advanced preferences, Set button is hidden when it is a boolean.
39      True/false radio buttons handle the switch instead (AZAWAWI)
40    - Fixed ticket #858 Recent files does not display anything on Padre startup
41      (AZAWAWI)
42    - Refresh all menus at startup. This prevents "nothing" open mode (i.e. no
43      document) from incorrectly showing an enabled menubar (AZAWAWI)
44    - Padre::Util::share() can now get the name of a plugin (e.g. 'Perl6') and
45      return the share directory of that plugin (SZABGAB)
46    - Removed the unused concept of user-configurable menus, which was slowing
47      down a ton of different operations that needed a menu refresh (ADAMK)
48    - Removed ->refresh calls during the initial menu construction, as we
49      will be refresh'ing again anyway at the end of the startup, and thus
50      any work done in the menus is completely wasted CPU (ADAMK)
51    - Removed the very expensive window list refresh code from the main menu
52      refresh method into it's own dedicated refresh method. We can fire
53      this directly in the limited number of situations that the notebook
54      adds, removed, or renamed documents (ADAMK)
55    - Speed up status bar updates (ADAMK, SEWI)
56    - Warning editor markers are now actually orange on win32 (AZAWAWI)
57    - Landed new and much much faster refresh_windowlist (ADAMK)
58    - Fixed ticket #860: Configurable key bindings dialog (AZAWAWI)
59    - Added Browse Buttons to External Tools Preference Dialog (PLAVEN)
60    - Fixed ticket #863: Continous warnings or prints kill Padre
61      (AZAWAWI, KTHAKORE)
62    - Bumped Wx::Perl::ProcessStream version requirement to 0.25 (AZAWAWI)
63    - Added promised PPI lexer configurable max-length limit for azawawi (ADAMK)
64    - Fixed ticket #867: Padre dies when hitting Ctrl-. (AZAWAWI)
65    - Fixed ticket #807: F2 is broken (AZAWAWI)
66    - Fixed ticket #835: Function list not populated on initial panel showing
67      (karl.forner)
68    - Added Turkish translation.
69
700.57 2010.02.18 - **WARNING Contains new threading code**
71    - Spawn a master thread very early in the startup process. Use that
72      master to create worker threads as necessary. Cuts down on memory
73      usage and fixes the "Leaked Scalars" warning (BRAMBLE, SMUELLER)
74    - Fix pluginmanager error dialog for plugin-event failure (BRAMBLE)
75    - Add status messages for Padre::File operations (SEWI)
76    - Select some files to close (SEWI)
77    - Select some files to reload (SEWI)
78    - GotoLine is now called Goto dialog (AZAWAWI)
79    - Goto dialog is now non-modal lazy single instance dialog (AZAWAWI)
80    - Goto dialog has a current positon/line number field (AZAWAWI)
81    - Regex editor dialog is now more compact and it includes regex helper
82      buttons (AZAWAWI)
83    - Regex editor dialog can now highlight matched text (AZAWAWI)
84    - Regex editor dialog can now display regex description (AZAWAWI)
85    - Implemented Replace (aka substitution) in Regex editor (AZAWAWI)
86    - Right click "Edit with Regex Editor" now works on user-selected
87      text (AZAWAWI)
88    - Added "headline" method to Padre::Project, which allows a project
89      to try and intuit the "primary" file in the project (for a CPAN
90      distribution of Foo::Bar this will be lib/Foo/Bar.pm) (ADAMK)
91    - Removed the final usage of the "Provider" phrasing, and made more
92      of the modules used by the Perl help provider run-time loaded (ADAMK)
93    - Moved padre.exe build from bin to win32-loader folder since bin is a
94      bad path for putting the Padre win32 launcher code (SMUELLER, AZAWAWI)
95    - Added "Open in File Browser" in the File and right-click menu (AZAWAWI)
96    - Added "Find in Files" to right-click menu (AZAWAWI)
97    - No need to launch a command shell to execute explorer.exe on
98      win32 (AZAWAWI)
99    - Added "Open with Default System Editor" in "File -> Open..." (AZAWAWI)
100    - Implemented padre --reset to flush and reset the current Padre
101      configuration in otherwise unrecoverable situations, such as now
102      when the Swarm plugin causes the slave-driver code to instantly
103      segfault at startup (ADAMK)
104    - Add mimetype detection for Template::Toolkit and CSS files (SEWI)
105    - Added plugin menu refreshing to the resource locking system (ADAMK)
106    - Fixed three cases where code was still manually calling ->Freeze
107      and ->Thaw on the main window, breaking the resource locked (ADAMK)
108    - Fixed ticket #847: "Implement Mozilla-style about:config for Padre"
109      (AZAWAWI)
110    - Fixed ticket #845: Fix relative filenames from commandline (SEWI)
111    - Added "Open In Command Line" to File menu (AZAWAWI)
112    - Renamed Plugins menus to Tools and moved Preferences into it (ADAMK)
113    - Re-implemented the mechanism for generating a human-oriented list of
114      window names (ADAMK)
115
1160.56 2010.02.01
117    - Plugins may now add their GUI elements to the view menu (SEWI)
118    - Padre now displays a dynamic to-do list generated from comments
119      in your source code (CORION)
120    - Landed new Padre::Startup module which is dramatically faster
121      when loading files into an existing Padre via the single instance
122      server, and finally provides a mechanism for allowing configuration
123      to disable the startup splash image (ADAMK)
124    - Changed a few configuration settings to create a more consistent
125      naming pattern for them (ADAMK)
126    - Audited dependencies and updated a variety of them (ADAMK)
127    - Ctrl-Shift-W is now bound to "Close This Project" (ADAMK)
128    - Added an option for traceing Padre subroutine calls to the
129      developer plugin (SEWI)
130    - Uses correct make from Config.pm for the run menu item -> Build and
131      run tests (KTHAKORE)
132    - Speedup and less false-shows for autocomplete (SEWI)
133    - Speedup while changing tabs (use the correct project dir) (SEWI)
134    - Simple refocus on document after command run (KTHAKORE)
135    - Fixed ticket #822: main window could be off screen on start (BLAKEW)
136    - padre-client allows you to use Padre for commit messages and other
137      synchronous edit events (CORION)
138    - WIN32, Converted the --desktop registry code to Win32::TieRegistry
139      and removed hardcoded strawberry paths (AZAWAWI)
140    - WIN32, padre.exe will run with the same UAC privileges as same as
141      the invoker (AZAWAWI)
142    - Disable debugger menu items when there is no document (AZAWAWI)
143    - Fixed a Padre debugger crash when unsaved document is debugged (AZAWAWI)
144    - Fixed Padre no-document crash with Find Next/Find Previous functionality
145      (AZAWAWI)
146    - Make sure that windows context key shows the refactor menu
147      items in the right-click pop-up menu (AZAWAWI)
148    - Used Module::CoreList::is_deprecated to display deprecated CORE modules
149      in help search title (AZAWAWI)
150    - Padre::Util::Win32::ExecuteProcessAndWait doesn't automatically inherit
151      the same Cwd as the parent process. Added support for explicit cwd
152      parameter and make the syntax checker pass the cwd to it. Syntax checking
153      of test scripts and such should now work as intended on Win32(ADAMK)
154    - Audit uses of Padre::Util::Win32 to only load it via require. Added a
155      TRACE warning to verify it never gets loaded on non-Win32 (ADAMK)
156    - Tuned the locking for ->close_where, which should make a variety of
157      functions like "Close This Project" and "Close Other Projects"
158      noticably faster (ADAMK)
159    - Changed func_foo config variables to feature_foo, in anticipation of
160      of a future equivalent to the Mozilla "about:config" control (ADAMK)
161    - Added feature_cursormemory to allow disabling of Padre's feature to
162      remember the location in the file you were scrolled to (ADAMK)
163    - Added a fast ascii shortcut to the very slow encode detector. Opening
164      files all of a sudden gets much faster if you have ascii files (ADAMK)
165    - Bumped ORLite to 1.38 to get faster ARRAY object support and
166      Class::XSAccessor acceleration support. If they cause problems,
167      these changes can be safely backed out. (ADAMK)
168    - Fixed the mass-error-popups on mimetypes without help provider (SEWI)
169    - During DB locks (which are the most likely place for things to make
170      changes to the database) disable synchronous SQLite writes. This will
171      reduce the time that Padre blocks, at the risk of config.db corruption
172      if there is a hardware failure or operating system crash. (ADAMK)
173    - Fixed ticket #837: padre.exe should be able to be placed in
174      c:\strawberry\perl\site\bin (AZAWAWI)
175    - Improved "Goto Line" dialog to be smarter with better validation/error
176      messages (AZAWAWI)
177    - Open Resource can now display Perl package names for matching resources
178      (AZAWAWI)
179    - Fixed #838: Author tests should all check RELEASE_TESTING and/or
180      AUTOMATED_TESTING (RHEBUS, AZAWAWI)
181    - Fixed Regex Editor dialog destruction bug where multiple ->Show and
182      ->Destroy could lead to a Padre crash on WIN32 (AZAWAWI)
183    - Project detection differentiates between four different subclasses
184      of Perl build systems (three of those correctly) (ADAMK)
185    - Function List has resource locking around it and properly triggers a
186      refresh when we show it for an already open document (ADAMK)
187    - "Goto Line" dialog now supports going to lines and positions (AZAWAWI)
188    - Fixed perl to refactor action prefix for refactor menu for
189      consistency (AZAWAWI)
190    - Fixed ticket #841: Quick Menu Access should show the location of the
191      menu item on the menu system (AZAWAWI)
192
1930.55 2010.01.21
194    - Add full list of file types to the View Document As menu (SZABGAB)
195    - dist-zilla projects detection finally fixed (#489) (JQUELIN)
196    - The directory tree refresh method will shortcut if nothing has
197      changed, which should fix a number of bugs relating to the
198      directory tree "doing things" when it shouldn't be (ADAMK)
199    - Saving files to somewhere other than the current project will now
200      correctly flush the document project state, and triggers a directory
201      tree flush so that we communicate the change in project (ADAMK)
202    - Cloned ORLite::Migrate to a private version as Padre::DB::Migrate
203      so we have a better chance of fixing bug #796 (ADAMK)
204    - Tentatively fixed #796 by spawning migration scripts in a manner which
205      does NOT assume the pre-existance of STDOUT. This is at best a
206      short-term hack, because this STDOUT problem is going to come back and
207      bite us in other ways in the future, for sure (ADAMK)
208    - Tuned the directory tree refresh logic to improve startup speed when
209      launching Padre with specific named files to open (ADAMK)
210    - Tuned the creation and management of tool widgets to remove the need
211      to load or construct tools at startup time that are turned off in the
212      user's configuration.
213    - Tuned lock-release refresh execution to remove low-level refresh
214      methods that are also contained in higher level refresh methods.
215    - Removed a superfluous AUI Update from the refresh method (ADAMK)
216    - Delay loading some additional GUI classes and objects until they
217      definitely needed (ADAMK)
218    - Suppress warnings that occur during plugin loading (ADAMK)
219    - 'Simple' possible fix for #331 to update the tabs when 'save all' is
220      run in Padre. (PLAVEN)
221    - Fixed #819: Don't crash on missing project dir (SEWI)
222    - Upgrading --desktop option from VBScript to a new Win32::Shortcut-based
223      Padre::Desktop. Desktop link creation works on Vista and newer
224      operating systems again (ADAMK)
225    - Tuned menubar refresh to only fire if we change document mimetype,
226      which saves a ton of CPU and seems to reduce flicker (ADAMK)
227
2280.54 2010.01.07
229    - Added experimental support for clickable filenames in Output panel.
230      Currently only matches: <error> at <file> line 5. (PDONELAN)
231    - If all files are closed, the function list would ->Hide itself
232      permanently and never come back. Resolved (ADAMK)
233    - Fix perl interpreter selection (SZABGAB)
234    - Updated DBD::SQLite dependency to 1.27 and ORLite dependency to 1.30.
235      This should now correctly throw an exception on a corrupt padre.db file
236      which will cause an immediate crash at startup with a SQLite-related
237      error message instead of a secondary error message complaining about
238      missing Padre::DB classes (ADAMK)
239    - Moved Padre::HelpProvider::Perl to Padre::Document::Perl::Help to
240      prevent plugin classes from being scattered all over the namespace
241      tree (ADAMK)
242    - Moved Padre::QuickFixProvider::Perl to Padre::Document::Perl::QuickFix
243      to prevent plugin classes from being scattered all over the namespace
244      tree (ADAMK)
245    - During shutdown, be more precise about the order in which we clean up
246      and be more careful to ensure that ->Update is NOT disabled, to prevent
247      segfaults on Windows from the "disabled update at exit" bug (ADAMK)
248    - Added the first PROJECT-backend config_perltidy setting, so that
249      projects can for the first time define a project tidy policy. This
250      project-specific policy isn't being used by the plugin itself yet,
251      but this change clears the way for that kind of functionality (ADAMK)
252    - Added config_perlcritic configuration setting, so that projects can
253      define perlcritic policies (ADAMK)
254    - All tests now run without the need for a visible Padre window (ADAMK)
255    - Ticket #756: Wx::Perl::ProcessStream 0.24 solved this issue
256      Changed the dependency to 0.24 (SEWI)
257
2580.53 2009.12.23
259    - Add initial version of a debugger using Debug::Client (SZABGAB)
260    - Fix crashes when running refactor actions when there
261      is no document (AZAWAWI)
262    - Open resource searches now for user selections (AZAWAWI)
263    - The Open resource's OK button is disabled when the
264      search results list is empty (AZAWAWI)
265    - Help search (F2) now supports *ALL* installed CPAN modules (AZAWAWI)
266    - Fixed "Syntax Check" focus loss bug while switching tabs quickly
267      and a syntax error is in one of them (AZAWAWI)
268    - Help search does not block when loading a long help topics
269      list (AZAWAWI)
270    - Ticket #787: Add a test for breakpoints to testsuite (SEWI)
271    - Fixed missing mime type guessing that caused new Padre documents to
272      default always to Scintilla (AZAWAWI)
273    - Landed new multi-resource locking subsystem. Many operations are now
274      prevented from refreshing the GUI multiple times. Startup, shutdown,
275      open and close multiple files, session changing all much faster (ADAMK)
276    - In Open resource, path is now cleaned from slashes on win32 (AZAWAWI)
277    - Fixed Padre crash when closing a Perl 5 script tab quickly while syntax
278      check is on (AZAWAWI)
279    - Added "No errors/warnings to $project-relative-filename" to syntax
280      checker. (AZAWAWI)
281    - Quick Menu access now displays Padre action label, name and comments
282      in an HTML window instead of a static label (AZAWAWI)
283    - Make the focus on "Find in files" work when called from Quick menu
284      access dialog (AZAWAWI)
285    - Help Search dialog is now bigger in size and fonts. (AZAWAWI)
286    - HTML output in help search dialog for Perl variables and functions has now
287      bigger bold fonts for title (AZAWAWI)
288    - Fixed #758: Autocomplete now also works with backspace (SEWI)
289    - Ctrl-Tab behaviour is now configurable (SEWI)
290    - Rename Padre::Debug to Padre::Logger (SZABGAB)
291    - Reuse the comment field of the menu actions and show them in
292      the toolbar (SZABGAB)
293    - Add comment field to all the menu items that did not have yet (SZABGAB)
294    - Integrated Padre::DB into the Padre::Locker API, so that we can do
295      (very basic) nested transactions (ADAMK)
296    - Audited the startup process for database operations that either weren't
297      being done in a transaction, or were doing crazy bizarre things. Startup
298      is now noticably faster (ADAMK)
299    - Added Preference setting to control autocomplete when editting a
300      script rather than a Module. (PLAVEN)     
301
3020.52 2009.12.14
303    - Add a plugin hook on change of current editor tab (SEWI)
304    - Show the svn revision of Padre's start time at the title bar&about dialog,
305      not the current one (SEWI)
306    - Fixed: Padre command line arguments work again when using dev.pl (SEWI)
307    - Fixed: Menu options get disabled/enabled as needed again, this also
308      fixed ticket #742, #762, #764 and #771 (SEWI)
309    - Alt-Left and Alt-Right switch to the neighbor panels which Ctrl-Tab
310      uses the last-used order (SEWI)
311    - Fix: Double click on the function list jumps to the sub (again) now (SEWI)
312    - Added "Save Intution" to the File menu, to automatically save a new
313      file wherever Padre is confident it is appropriate (ADAMK)
314    - New file creation is now driven by Template Toolkit templates (using
315      Template::Tiny). This should allow even basic new file creation to be
316      somewhat adaptive to the user or project context (ADAMK)
317    - Padre speedup: Limit number of menu bar refreshs (SEWI)
318    - Fixed ticket #790: Ctrl + Caps Lock reduces font size (AZAWAWI)
319    - Re-enabled toggle status bar on win32 (AZAWAWI)
320    - Fixed ticket #750: Ctrl-Tab works again (PLAVEN, SEWI)
321    - Fixed Padre crash in Module Tools/Install Locale/Module/CPAN config (AZAWAWI)
322    - Open Resource restarts search now when project directory or Padre's
323      current directory changes (AZAWAWI)
324
3250.51 2009.12.06
326    - Find all option showing all matches in bottom tab (CODE4PAY)
327    - Improved FTP error handling (SEWI)
328    - Open URLs from command line (SEWI)
329    - Configurable location of the 'perltags' file for autocompletion (SEWI)
330    - Fixed ticket #419: find variable declaration does not work at the end of
331      a variable (PATRICKAS)
332    - Fixed ticket #654: Lexical Rename of Variable - Can't highlight the
333      whole variable (PATRICKAS)
334    - Improved "Find Method Declaration" based on perltags (SMUELLER)
335    - Basic XS-Document support as needed for the full monty in a plugin (SMUELLER)
336    - XS (perlapi) calltips based on the perlapi of 5.10.1
337      by default. Can be configured to show the perlapi of any release of
338      perl back to 5.6.0 if Padre::Plugin::XS is installed. (SMUELLER)
339    - Padre::Action::Queue for auto-processing of Padre actions (SEWI)
340    - Perl autocompletion is much more configurable now (SEWI)
341    - Indentation auto-detection now skips POD for ::Perl documents (SMUELLER)
342    - Find in Files now has a checkbox that shows files that do not match (GARU)
343    - Tests which are not needed for end-user installation now in xt (ADAMK)
344    - Added a test for actions (SEWI)
345    - Re-enabled the beginner error check tests (SEWI)
346    - Better focus transitions during search/replace, which should make
347      them easier to work with quickly (ADAMK)
348    - Rolled back function list improvements that were causing regressions (ADAMK)
349    - Added project sub-path intuition when saving new files (ADAMK)
350    - Fixed a number of search/replace related bugs (ADAMK)
351    - Fixed ticket #421: crash: no documents, F3/F4 (AZAWAWI)
352    - Fixed ticket #678: VACUUM the configuration database at shutdown
353      to keep it small and fast (AZAWAWI)
354    - Fixed ticket #714: [Windows] Have a script to make binary. (AZAWAWI)
355    - Styles now allow configuring of the selected text (ADAMK)
356    - Upgraded tracing to new Padre::Debug that compiles out when not
357      being used. (ADAMK)
358    - Make Capture::Tiny a test prereq in order to eliminate a strange
359      test failure (SZABGAB). 
360    - Added an initial simplistic mime-type + detector for Template Toolkit (ADAMK)
361    - Change Directory label to Project to hint to the user that Padre does
362      actually understand the concept of a project, it's just subtle (ADAMK)
363
3640.50 2009.11.08
365    - Fixed #686 DocBrowser launching Padre help (BRAMBLE)
366    - Add initial version of a regex editor. (SZABGAB)
367    - Fixed ticket #728: Changing locale crashes Padre (AZAWAWI)
368    - Menubar is now configurable but still lacks a dialog for this (SEWI)
369    - Beginner error checks are now configurable (turn each single one on
370      or off) (SEWI)
371    - Fixed ticket #710: share/doc/perlopref.pod missing author/license (AZAWAWI)
372    - Added basic FTP-remote-editing capability (SEWI)
373    - Initial version of "Find Method Declaration" (SZABGAB)
374    - Timeouts an other options for Padre::File::HTTP and ::FTP are now
375      configurable (SEWI)
376
3770.49 2009.11.02
378    - Fixed #691: Extract subroutine does not work for a script without
379      subroutines (PLAVEN)
380    - Bugfix: The split-beginner-error check got false positives (SEWI)
381    - Moved more menu actions to independent actions (SEWI)
382    - Added a readonly flag to the taskbar (AGN)
383    - Fixed #698: Syntax checker leaks files in tmpdir (SEWI)
384    - Syntax checker now also shows a successful check (SEWI)
385    - Added menu option to reload all open files (SEWI)
386    - The current selection or document may be filtered through an external
387      command now (SEWI)
388    - Low-priority popup messages could be moved to the status bar by setting
389      a preferences option (SEWI)
390    - require IPC::Open2 and IPC::Open3 as they are both used in the code (SZABGAB)
391    - Improved autocomplete (always) results (SEWI)
392    - Run make and TDD-tests in one step (KTHAKORE)
393    - Padre is now an XP-themed win32 application (AZAWAWI)
394    - Auto-save session state is now possible (SEWI)
395    - Auto completion usability fixes (AZAWAWI)
396    - Padre syntax images are now 16x16 transparent PNG images instead of 14x7
397      (AZAWAWI)
398    - Fixed ticket:372 "window list should be sorted alphabetically" (AZAWAWI)
399    - Added "shorten common path in window list" to preferences (AZAWAWI)
400    - Fixed ticket:709 "Show editor window listed by project, then project-
401      relative path" (AZAWAWI)
402    - Added a test to run Padre's beginner error checks on the Padre source (SEWI)
403    - Config option for auto-cleanup of files during save for supported
404      document types (SEWI)
405    - Modules/Plugins could now add their panels to the global preferences (SEWI)
406    - Workaround for Test::NoWarnings hiding issue which lead to missing
407      prerequisites or upgrades (#646 SZABGAB)
408
4090.48 2009.10.12
410    - "Last session" now restores the last state even if Padre crashed and not
411      the last stated saved by a planned exit (SEWI)
412    - Fixed Wx::Perl::ProcessStream installation failure on vista/win7 by
413      upgrading to 0.16 (AZAWAWI, Mark Dootson - mdootson)
414    - Fixed the error dialog so that it displays the error icon (AZAWAWI)
415    - Fixed ticket #292: "Split window" command does not work by removing
416      the non-working feature (AZAWAWI)
417    - Added examples for Perl newbies (SEWI)
418    - Added a search field for functions list accessible via ALT-N (AZAWAWI)
419    - Added random instance ID (SEWI)
420    - Added multiple events per action (SEWI)
421    - Fixed win32's context menu key to work exactly as the right click behavior
422      or ALT-/ (AZAWAWI)
423    - Fixed ticket #598: CTRL-L kills clipboard (AZAWAWI)
424    - Case sensitive was labeled case insensitive in replace, fixed. (SEWI)
425    - Windows filename test doesn't run on darwin (Mac) any longer and runs as TODO
426      because a failure must not stop the Padre installation. (SEWI)
427    - Padre::File::HTTP uses environment settings for proxy (SEWI)
428    - First real working version of the PopularityContest - module (SEWI)
429    - Smart highlighting works now in realtime as you select text (AZAWAWI)
430    - Fixed ticket #611: File | Open does not support UNC path (AZAWAWI)
431    - Save session now suggest the name of the last opened session for saving (SEWI)
432    - Fixed ticket #627: Suggestion: Make it possible to copy 'Syntax Check'
433      messages (AZAWAWI)
434    - Require version 0.20 of Wx::Perl::ProcessStream to fix #628 (AZAWAWI, SZABGAB)
435    - Fixed ticket #493: splash image license not suitable for Debian (AZAWAWI)
436    - Fixed t/86-service.t to work again on win32 (AZAWAWI)
437    - Fixed ticket #314: Padre broken on MS Vista when starting with no file
438      to be opened (AZAWAWI)
439    - Added a 'padre --desktop' option that improves Padre-Windows integration.
440      This creates a desktop shortcut and an "Edit with Padre" in the shell
441      context menu (AZAWAWI)
442    - Made beginner error checks report the line where an error was located (SEWI)
443    - Fixed: Syntax checker now only shows errors from current file (SEWI)
444    - padre --version displays a MessageBox under wperl.exe (AZAWAWI)
445    - Option to continue on beginner errors (SEWI)
446    - Made title bar configurable (SEWI)
447    - Autocomplete on every char (enable it in the preferences) (SEWI)
448    - Add logfile so the developer debugger of padre will print there
449      and not on STDERR. (SZABGAB)
450    - Show file size on disk in statistics (SEWI)
451    - Under Linux and BSD, 'padre --desktop' adds a Padre.desktop inside
452      /usr/share/applications (AZAWAWI)
453    - When saving a module for the first time, Padre will attempt to guess the
454      name of the file so you don't need to type it (ADAMK)
455    - Added "Dump Expression" to Developer Plugin to evaluate and dump a single
456      expression within the Padre context (ADAMK)
457    - Perl interpreter for running scripts is now configurable (SEWI)
458    - Added MIME type count to PopularityContest, but it's still not sending
459      anything (SEWI)
460    - Added a runnable-flag to Padre::File and it's current modules (SEWI)
461    - Syntax check now doesn't slow down typing (SEWI)
462    - Add autocomplete feature for new methods (SEWI)
463    - Update directory tree on load session (SEWI)
464    - New Padre launcher for Windows (DOLMEN)
465    - Fixed Open Resource status text display on Linux (AZAWAWI)
466    - Added configuration version checking and prepared auto-config-upgrades (SEWI)
467    - The Perl help search (F2) destroyed the code refernce calling it, so F2
468      was usable only once per Padre start, may also apply to other actions.
469      Fixed. (SEWI)
470    - Ticket #660 - Moved Perl Refactoring tools to it's own Refactor Menu (PLAVEN)
471    - Added the ability to select where to place the "extracted subroutine" in the current
472      document (PLAVEN)
473
4740.47 2009.09.25
475    - Bundled more Perl Operators documentation [perlopref.pod] (AZAWAWI, COWENS)
476    - Fixed crash when inserting a special value without any document (AZAWAWI)
477    - Improved StatusBar - speed (SEWI)
478    - Fixed ticket #573 ESC does not close About window (AZAWAWI)
479    - Fixed ticket #578 Padre's Splash screen should not get in the way (AZAWAWI)
480    - Fixed ticket #579 Commenting/uncommenting comments the last unselected
481      line (AZAWAWI)
482    - Fixed ticket #576 common (beginner) error check has no feedback if no
483      errors found (AZAWAWI)
484    - Added Padre::File as a API for all operations on edited files (SEWI)
485    - Added 13-eol.t to detect non-UNIX EOL-ed files in Padre (AZAWAWI)
486    - Added "Open URL" menu option (SEWI)
487    - Added Padre::File::HTTP (SEWI)
488    - No more "WIN32" as a line ending indicator only "WIN" (AZAWAWI)
489    - The status bar provides more space to display longer mime-type names (AZAWAWI)
490    - The status bar reflects now the current document's line endings as
491      follows (AZAWAWI):
492        - WIN (CR/LF), MAC (CR), UNIX (LF)
493        - Mixed, a mixture of the above which is usually an error
494        - None which is a one-liner/empty script
495    - Beautified the about dialog so that it is includes the splash image. (AZAWAWI)
496    - Fixed ticket #589 Pasting in a UNIX document in win32 corrupts it to
497      MIXEd (AZAWAWI)
498    - Added more beginner-error-checks (SEWI)
499    - Improved Perl menu to be more consistent (AZAWAWI)
500    - Fixed ticket #504 and ticket #586 which are basically about being able to
501      lexically rename a variable when the cursor is over its declaration (AZAWAWI)
502    - Added "Dump PPI Document" to "Padre Developer Tools" core plugin (AZAWAWI)
503    - Added Run/Stop icons to the toolbar per ticket #529 (AZAWAWI)
504    - Fixed ticket #595 F6 (Stop Executing of script) doesnt work with Output
505      window in Windows (AZAWAWI)
506    - Fixed ticket #597: Merged OS detection in Padre::Constant (SEWI)
507    - Fixed ticket #594: F1 key doesn't work (SEWI)
508    - Fixed ticket #593: On Windows, files with / and \ are now the same
509      and files are treated case-insensitive (AZAWAWI, SEWI)
510    - Fixed ticket #591: Save/Save as decision was corrupt (SEWI)
511    - Fixed ticket #582: Run this test/Run Tests are broken on win32 when there
512      is a space in the test file (AZAWAWI)
513    - Fixed ticket #553: Directory browser's "Move to trash" feature is not
514      working on Vista/win32 (AZAWAWI)
515    - Massive refactoring of Plugin Manager. Looks almost exactly the same
516      but now the status information actually updates properly (ADAMK)
517    - Added a padre.exe launcher on win32 (SEWI, GETTY, AZAWAWI)
518    - Reformat filenames to correct OS-dependend syntax (AZAWAWI, SEWI)
519    - Moved add Win32 API functions to one module (AZAWAWI, SEWI)
520    - Fixed ticket #488: allow script to recognize when executed by Padre (AZAWAWI)
521    - Padre now uses cperl() console instead perl() for compatiblity with
522      wperl (AZAWAWI)
523    - Added Perl version, uptime and process information to about box (SEWI)
524    - Fixed ticket #603: Background tasks fail to work under wperl win32 (AZAWAWI)
525    - Added option to open a saved session on startup (SEWI)
526    - Fixed ticket #580: On win32, Perl 5 syntax checker is invoked in strange
527      situations (AZAWAWI)
528    - Padre now warns about the running process at exit and asks whether to kill
529      it and exit or cancel the shutdown (AZAWAWI)
530    - Removed false warnings about duplicated actions/shortcuts when changing
531      Padre's language (AZAWAWI)
532    - Fixed ticket #394: Close DocBrowser with Escape key (AZAWAWI)
533
5340.46 2009.09.13
535    - Fixed Smart highlighting to show a pale green round box instead of an
536      ugly squiggle (AZAWAWI)
537    - Run script waits now after completion for key to continue when run in an
538      external win32 window (AZAWAWI).
539    - Padre now supports the following extensions:
540        - For Perl 5, .pmc and .plx (AZAWAWI, SZABGAB)
541        - For Perl 6, .pl6, .pm6, .p6l and .p6m (AZAWAWI)
542    - Help search handles now http:// and perldoc:// links (AZAWAWI)
543    - Enabled "Syntax Check" tab is now shown when there is a problem without
544      losing editor focus (AZAWAWI)
545    - Handle "Recent files" Padre crash when it is called with a file that no
546      longer exists. The entry is deleted and a message box is shown (AZAWAWI)
547    - Added a "extract subroutine" function (RHEBUS)
548    - Handle "Open all Recent Files" Padre crash when setup_editor is called
549      with a file that no longer exists (AZAWAWI)
550    - Fixed ticket #536 Padre auto converts EOLs automatically (AZAWAWI)
551    - Pod::Perldoc 3.15 is required now. Allowing help on $. and similar. (AZAWAWI)
552    - Fixed Arabic/Hebrew developer/translator names in Padre's about box (AZAWAWI)
553    - Bundled more Perl Operators documentation [perlopref.pod] (AZAWAWI, COWENS)
554    - Made beginner-error-checks work (SEWI)
555
5560.45 2009.09.02
557    - Disabled 'Test Plugin From Local Dir' menu option until it's properly fixed (GARU)
558    - Fixed PluginManager Pod glitch for deprecated Perl5 plugin (ADAMK)
559    - Fixed various open bugs which exist on Gnome but not on Windows (SEWI)
560    - Several translation updates (thanks to all translators!)
561
5620.44 2009.08.24
563    - Help Search now supports perlopref.pod parsing - Perl operator reference
564      (AZAWAWI)
565    - Fixed various "Help Search" dialog bugs for perlvars and CORE modules
566      (AZAWAWI)
567    - "Directory Browser" stability fixes (AZAWAWI)
568    - Refactored "Help Search" to use document help providers. This will make it
569      faster (AZAWAWI)
570    - Help Search looks up words selected or under the cursor (AZAWAWI)
571    - allow the use of $main->open_file_dialog($dir) (SZABGAB)
572    - Moved Ecliptic's Quick Fix to Padre core under the Edit menu (AZAWAWI)
573    - Enable the F12 Save as shortcut again (SZBAGAB)
574    - Added Perl 5 Quick Fix for 'use strict; use warnings;' (AZAWAWI)
575    - Added Insert submenu and dialog, moved snippets into insert submenu (TEEJAY)
576
5770.43 2009.08.16
578    - Revised nice splash screen slightly. Move original artwork
579      to Padre-Artwork (BRAMBLE)
580    - Added a (hopefully) nice splash screen for Padre (GARU)
581    - Added a Padre::Perl API for discovering the location of the system
582      Perl in a way smart enough to handle people that specifically need a
583      command line Perl, or specifically need a windowing Perl (ADAMK)
584    - Temporarily remove PAR support (ADAMK)
585    - Upgrade the plugin internals to support arbitrary class names,
586      simplifying the implementation and clearing the way for
587      Acme::Padre::Plugin::* modules. (ADAMK)
588    - Updated PPI dependencies. Padre now supports 5.10 syntax in PPI-based
589      features (ADAMK)
590    - Find dialog now uses the Padre::Search API. (ADAMK)
591    - New multiple-tabbed About box (ADAMK)
592    - F3 with sub-line selected text converts it directly into an active
593      search without needing to invoke the Find dialog (ADAMK)
594    - Moved Perl 6 Help dialog to Padre core as "Help/Help Search" (AZAWAWI)
595    - Help/Help Search now supports Perl 5 (AZAWAWI)
596    - Moved Ecliptic's Open Resource to Padre core as "Search/Open Resource"
597      (AZAWAWI)
598    - Moved Ecliptic's Quick Menu Access to Padre core as "Search/Quick Menu
599      Access" (AZAWAWI)
600    - Fixed run command in a separate window bug on win32 (AZAWAWI)
601    - Moved Ecliptic's "Open in file browser" to Padre core as "File/Open in
602      File Browser" and integrated it with Directory browser (AZAWAWI)
603    - Moved functionality in Perl 5 plugin to Plugins -> Module Tools (ADAMK)
604    - Implemented "Edit / Next Problem" (AZAWAWI)
605    - Force setting of document (MIME) type when using New->Perl 5 test
606      (#476) (KARL.FORNER) (SZABGAB)
607    - Make sure coloring is update when save-as file or when opening a new
608      file from template. (SZABGAB)
609
6100.42 2009.07.31
611    - Fixed a bug that crashed Padre while moving panels with outline
612      enabled (GARU)
613    - The Directory browser hidden files support now automatically
614      recognises intermediate directories (blib etc) in Perl distributions,
615      and correctly ignores them (ADAMK)
616    - Various performance improvements to directory tree (ADAMK)
617    - New search engine coupled to directory tree with some regex
618      characters support (GABRIELMAD)
619    - Initial Padre actions support which means an action can be re-used
620      by anything running on Padre. Keyboard shortcut conflict warnings are
621      implemented (AZAWAWI)
622    - Added the "Artistic" and "COPYING" (GPLv1) files as well a note to the
623      "README" about licensing per the request of the
624      http://directory.fsf.org/ maintainers. (SHLOMIF)
625    - Added a "right margin" option which will show a line at the specified
626      column (BRICAS)
627    - Now new files belong to the project from where they were created till
628      they are saved (GABRIELMAD)
629    - Directory Tree shows the project directory or if none file is opened
630      the default projects directory (configurable in Preferences > Behavior
631    - none configured, default is user's documents directory) (GABRIELMAD)
632    - Install some of the examples in the share directory and add an
633      Open Example menu option (SZABGAB)
634    - Adding Padre::Wx->add_pane_info convenience method to prevent the need
635      for the stupid ugly Wx::AuiPaneInfo method chaining (ADAMK)
636    - Create the Left panel and moved the Directory tool into it (ADAMK)
637    - Upgrade Wx tree navigation to handle detached floating panels (ADAMK)
638    - Implemented Smart Highlighting. Double click on a word to select it
639      and a green squiggle will be shown for each matching word (AZAWAWI)
640    - Now users can choose which is the project directory that Directory
641      Tree must show (GABRIELMAD)
642    - Moved close operations into Close... submenu (ADAMK)
643    - Added "Close This Project" to close all open files in the same project
644      as the current file (ADAMK)
645    - Added "Close Other Projects" to close all open files in projects other
646      than the project of the current file (ADAMK)
647    - Changed a bunch of documentation from using items or comma-separation
648      to using =head3 pod entries (ADAMK)
649    - Adding new Blue Morpho logo (ADAMK)
650    - Removed dependency on prefork.pm, it was only there to shut up the dev.pl
651      DIE: warnings (ADAMK)
652    - Removed dependency on Test::Most, and with it about 5-10 other excessive
653      test-related dependencies (ADAMK)
654
6550.41 2009.07.23
656    - Remove Experimental mode.
657    - Fixed a bug in Plugin config_write where ->selectrow_array was used
658      instead of ->do to SQL update (Thanks to tlbdk++). (AZAWAWI)
659    - run_command in a separate window now works in win32 to support
660      prompt('...') in Perl 6 and <STDIN> in Perl 5. (AZAWAWI)
661    - Now Padre can find/replace inside selections (GARU)
662    - New Syntax highlighter configuration system. Plugins now can add more
663      syntax highlighters and users can pick one per mime-type. (SZABGAB)
664    - Directory browser new artwork and drag and drop support (GABRIELMAD)
665
6660.40 2009.07.17
667    - Removed about 10 dependencies, including several with lots of FAIL
668      reports in CPAN Testers (ADAMK)
669    - Complete refactoring of the Directory Browser, gaining a lot of
670      performance improvements and new features such as sorted output
671      and context menu options (GABRIELMAD)
672
6730.39 2009.07.09
674    - Some of the refactoring code was moved to PPIx-EditorTools (MGRIMES)
675    - Detection of Moose attributes in Outline view (JQUELIN)
676    - Detection of MooseX::POE events in Outline view (JQUELIN)
677    - Added keywords to META.yml (via Makefile.PL.) (SHLOMIF)
678    - Bumped the required Test::More version to 0.88 - needed for note().
679      (SHLOMIF)
680    - Open Selection (ctrl-Shift-O) now displays all the files it finds
681      and lets the user select (SZABGAB)
682    - Eliminate crash when pressing F3/F4 while there are no open
683      files (#421) (SZABGAB)
684    - Enable/Disable Window menu options when there are (no) open
685      files. (#417) (SZABGAB)
686    - For Cut/Copy/Paste/Select All, use the focused textctrl instead
687      of the editor textctrl (RSN)
688    - Autoupgrade ascii files to be utf-8 on save if user types in wide
689      characters (#304) (SZABGAB)
690    - Allow the user to use external (xterm) to run the scrips. (SZABGAB)
691    - Add menu option to show selection as hexa or as
692      decimal. (#36) (SZABGAB)
693    - Switch to Locale::Msgfmt and generate the .mo files at install
694      time (RSN)
695    - Add number of lines to GoTo line dialog (#439) (SZABGAB)
696
6970.38 2009.06.27
698
699    - Replace regex that needs 5.10 by a split (SZABGAB)
700
7010.37 2009.06.25
702    - "Introduce Temporary Variable" refactoring tool (SMUELLER)
703    - Added a friendly icon on the toolbar to toggle comments (GARU)
704    - Crazy Win32::API AllowSetForegroundWindow hack to allow the
705      Single Instance Server to correctly foreground itself (ADAMK)
706    - Added Padre::Search search and replace API (ADAMK)
707    - Switching to last edited file is now Ctrl-Shift-p (SZABGAB)
708    - Be compatible with older version of File::Path (RYAN52)
709    - Links to Mibbit were replaced by links to our irc.html (SZABGAB)
710    - Merged the code of Padre::Plugin::Encode into Padre (SZABGAB)
711    - Update directory only when switching to new editor (SZABGAB)
712
7130.36 2009.05.30
714    - DocBrowser::POD resolver is now Pod::PerlDoc with benefits
715      DocBrowser attempts to use current padre locale as language hint
716      DocBrowser reuses tabs for same/similar documents (#323) (Andrew Bramble)
717    - Make DocBrowser suck less. Quieter and faster (#322) (Andrew Bramble)
718    - Output should be blank by default at startup (#351) (JQUELIN)
719    - No padre version in window title (#349) (JQUELIN)
720    - Added generic HTTP task support with Padre::Task::LWP (ADAMK)
721    - Implemented first-generation Popularity Contest task (ADAMK)
722    - Reorganized and differentiated Find and Replace dialogs (#348) (THEREK)
723    - Add a set of filename wildcards to filter directory listing in Open File dialog (#343) (THEREK)
724    - Add Chinese (Traditional) translation (BLUET)
725    - Show Perl menu on a Project as well as Document basis (ADAMK)
726    - Disable all Perl 6 code unless the Perl 6 plugin is enabled (ADAMK)
727    - Reshuffle and relabel of some menus to improve asthetics (ADAMK)
728    - Fix no_refresh during multi-file operations (ADAMK)
729    - Added mibbit.com "Live Support" entries to the Help menu (ADAMK)
730    - Removed the use of Class::Autouse, it was slowing down PPI (ADAMK)
731    - Various performance improvements, load cost down by 12Mb (ADAMK)
732    - Fixed the cut/copy/paste problem (#332) (ADAMK)
733
7340.35 2009.05.08
735    - Add Japanese translation (ISHIGAKI)
736    - Implemented experimental Single Instance support (#117) (ADAMK)
737    - Implemented context-sensitive right-click menu for Perl documents (SMUELLER)
738    - Ctrl-left-click on a Perl variable will jump to its definition (SMUELLER)
739    - Ctrl-left-click on a Perl function callwill jump to its definition (SMUELLER)
740    - Left-clicks into documents can now be hooked by the document class (SMUELLER)
741    - Fix to the thread-status display (SMUELLER)
742    - Fixed ticket #300: disabled EVT_SET_FOCUS in preview (THEREK)
743    - Fixed ticket #289: Scrolling in preference window (PZSCHMIDT)
744    - Fixed ticket #301: Fix wx assertion failures (JQUELIN, SMUELLER)
745    - Launching a browser now happens in the background (ADAMK)
746    - Add Czech translation
747
7480.34 2009.04.28
749    - Fix crash in plugin manager when changing locale while window opened (#298) (JQUELIN)
750    - Support for plugin l10n in place (JQUELIN)
751    - Added Preferences->Run Parameters panel instead of Perl->Run Parameters menu option. (THEREK)
752    - Stop refreshing the menues on every keystroke. Instead when the menu is being accessed. (SZABGAB)
753    - Sessions support (#123) (JQUELIN)
754    - Enable tooltips on the toolbar on Windows as well (SZABGAB)
755    - Fix localization change in the Syntax window (#198) (SZABGAB)
756    - Plugin manager correctly localized at startup (JQUELIN)
757    - Plugin manager displaying full plugin names (JQUELIN)
758    - Set file size limit to 500_000 to avoid loading too big files. (#186) (SZABGAB)
759    - Double-clicking on an error now selects the line (#214) (JQUELIN)
760
7610.33 2009.04.04
762    - Fix bug in relative path showing in the Windows menu. (GARU)
763    - Fix the swicthing between ppi mode and none-ppi mode (SZABGAB)
764    - Stop forking at startup. (SZABGAB)
765    - Skip the win32 subtests if the locale is not English. (SZABGAB)
766    - Added debug logging that can be turned on/off via the Developer plugin. (SZABGAB)
767    - Simplified Chinese translation turned on. (FAYLAND, SZABGAB)
768    - Added Polish translation. (THEREK)
769    - Revamped plugin manager. (JQUELIN)
770
7710.32 2009.03.29
772    - Trying to fix again the skipping of Padre::CPAN under the CPAN shell.
773
7740.31 2009.03.29
775    - Avoid creating the ~/.padre during testing by two more tests. (SZABGAB, thanks to AYILMAZ)
776    - Skip testing Padre::CPAN as it cannot be loaded under CPAN. (SZABGAB, thanks to AYILMAZ)
777    - Fix the Directory browser to switch between projects. (SZABGAB)
778    - Add "Run Tests" menu options to, err run tests. (SZABGAB)
779    - Work around painful segmentation faults from multiply freeing
780      AuiManagers (SMUELLER)
781    - Lexical variable replace works for arrays and hashes in all their
782      ugly incantations now (SMUELLER)
783    - Re-enable the taskmanager tests after fixing them. (SMUELLER)
784
7850.30 2009.03.27
786    - Remove Test::Compile from the prereqs as well as it is not in use. (SZABGAB)
787    - New GUI for selecting and installing CPAN modules. (SZABGAB)
788    - CPAN related menu items moved to new Perl5 plugin (SZABGAB)
789    - (Re-)Storing cursor position in file (#206) (JQUELIN)
790    - Reload file keeps cursor position (#220) (JQUELIN)
791    - Preferences windows title should match its menu invocation (#270) (JQUELIN)
792    - Fix error if passed a non-existent filename on command-line (#155) (JQUELIN)
793    - New task_warn/task_print methods in background tasks to easily
794      print to the output pane (SMUELLER)
795    - Fix bug in lexical variable declaration search that would prevent
796      it from finding variables declared in the main doc scope (SMUELLER)
797    - Lexical variable replace works for foreach my $foo too. (SMUELLER)
798
7990.29 2009.03.13
800    - Initial support for directory browser based on the Outline code (SZABGAB)
801    - Improving Padre::Util::get_project_dir (SZABGAB)
802    - Eliminate a test failure on non-English locale. (SZABGAB)
803    - Internal cleanups & documentation for configuration subsystem (JQUELIN)
804    - Require Test::Most for the testing and bail_on compilation errors. (SZABGAB)
805    - Eliminated a huge memory leak by not updating the plugin menu on every keystroke. (SZABGAB)
806
8070.28 2009.03.04
808    - Move Wx::Perl::Dialog back to the Padre tree. (SZABGAB)
809    - Allow the shortening of the the file list in the Window menu. (SZABGAB)
810    - Fix Ctrl-TAB and Ctrl-Shift-TAB. (SZABGAB)
811    - List the available perldiag translations and allow the user to change. (SZABGAB)
812    - Fix a few missed cases of the API change. (SZABGAB)
813    - Some sharedir improvement. (SMUELLER)
814    - List of available perldiag translations. (SZABGAB)
815    - Add prompt method to be used by plugins as well. (SZABGAB)
816
8170.27 2009.02.10
818    - Copyright changed to "The Padre development team as listed in Padre.pm." (SZABGAB)
819    - Some fixes in the search menu.
820    - Improve file type (Perl 5 / Perl 6 ) recognition. (SZABGAB)
821    - Fix the Windows menu to be able to jump to files. (SZABGAB)
822    - Statusbar visibility kept accross startup (#200). (JQUELIN)
823
8240.26 2009.02.01
825    - On X11 based platforms, selecting text using the mouse and pasting it
826      via middle mouse button now works (HJANSEN)
827    - Unifying Padre->inst and Padre->ide (ADAMK)
828    - Complete rewrite of the configuration layer. All access to configuration
829      data is now via methods so that we can add support for project-level
830      customisation of the interface. (ADAMK)
831    - Completely refactored all of the config setting names (ADAMK)
832    - Added first-class configuration support for Plugins (ADAMK)
833    - Moved config data on bookmarks, plugins and historical search/replace
834      strings out of the config file and into the database. (ADAMK)
835    - The output window now understands the color and font-face
836      related ANSI control sequences (SMUELLER)
837    - The long-awaited MainWindow.pm -> Main.pm (ADAMK)
838    - Heavily modified many variables and method names to bring a greater
839      simplicity and consistency to various APIs. Only possible because
840      we were already breaking the config system and Main.pm (ADAMK)
841    - Removed some classes and other code that had (astonishingly for such a
842      young application) become useless and bit-rotten (ADAMK)
843    - Added styles for text/x-patch, text/x-makefile, text/x-yaml,
844      text/css, text/plain(apache conf) file types (KEEDI)
845    - Now style config file supports foreground, background, bold,
846      italic, eolfilled, underline properties (KEEDI)
847    - Output window now uses mono-spaced font by default (SMUELLER)
848    - The 'Crashed' button in the plugin manager dialog is now
849      clickable if an explanation for the failure is
850      available (SMUELLER)
851
8520.25 2009.01.09
853    - Added Chinese (Simplified) translation (FAYLAND)
854    - Various subtle tweaks to the look and feel of the toolbar and
855      the panels. The GUI now looks noticably "sharper" (ADAMK)
856    - Expanded the variety and depth of functionality available in the
857      bundled "Padre Developer Tools" plugin (ADAMK)
858    - Our unattributed redistribution of tango was probably illegal,
859      and made us incompatible with Debian. Switch to gnome for
860      now. They are as ugly as sin, but at least they're legal (ADAMK)
861    - All big MainWindow gui elements are now in their own classes,
862      which should help us spread out feature logic properly (ADAMK)
863    - Moved Padre::Plugin::CPAN functionality into the core so that
864      we can do various sorts of tighter CPAN integration (ADAMK)
865    - Padre::Wx::DocBrowser now uses Padre::Task::DocBrowser (let's
866      hope properly) (Andrew Bramble)
867    - Class correction Padre::Wx::Menu -> Padre::Wx::Menubar (ADAMK)
868    - Class correction Padre::Wx::Submenu -> Padre::Wx::Menu (ADAMK)
869    - Now that Padre::DocBrowser has landed, delete the Padre::Pod
870      family of modules (ADAMK)
871    - Automatic indentation style detection now the default (SMUELLER)
872    - User interface now "locked" by default (SMUELLER)
873    - Updated Italian translation (SBLANDIN)
874    - Addition of contextual (un-) commenting (CLAUDIO)
875
8760.24 2009.01.06
877    - Double-clicking an entry in the function list now faithfully
878      matches the behaviour of the Ultraedit implementation (ADAMK)
879    - Updated German translation (HJANSEN)
880    - Replace Padre::Pod::Frame with Padre::Wx::DocBrowser, hopefully
881      making help more helpful. (Andrew Bramble)
882    - Moving to the glorious RFC4646-based second-generation Padre::Locale
883      implementation. "Portugese" is no longer Brazilian :) (ADAMK)
884    - Added a friendly icon to the ToolBar that displays the status
885      (idle, running, high load) of the background tasks (SMUELLER)
886    - Created Padre::Current, which should simplify everything that needs
887      to know about the current whatever (ADAMK)
888    - Used Padre::Current to kill off the slightly out of place non-class
889      Padre::Documents (ADAMK)
890    - View Document As... (FAYLAND)
891
8920.23 2009.01.04
893    - Updated Italian transation.
894    - Refactored the plugin state hash out into a standalone
895      Padre::PluginHandle class (ADAMK)
896    - Add naive way to locate some of the annoying errors beginners
897      might make that perl does not catch. (SZABGAB)
898    - Makefile.PL tricks EU:MM into not loading every single dependency,
899      making our dependency-heavy Makefile.PL far saner (ADAMK)
900    - Portuguese (Brazilian) translation added (GARU)
901    - Spanish translation added (PacoLinux)
902    - Shutdown process now delays saving the session until after the
903      interface phase (ADAMK)
904    - Shutdown process now disables all the plugins, so they have a
905      change to shut down elegantly too (ADAMK)
906    - Plugins now reload correctly (ADAMK)
907    - Created a basic stub Padre::Manual and moved the information in
908      HACKING.txt into Padre::Manual::Hacking and
909    - Padre::Manual::Translation (ADAMK)
910    - Moved more bits of GUI code out of MainWindow and into their own
911      classes (ADAMK)
912
9130.22 2008.12.23
914    - Various Perl6 and Parrot related snippets of code and
915      functionality have been moved to the respective
916      plugins (SZABGAB and others)
917    - Extended preference dialog with tabs (HJANSEN)
918    - Syntax checker now running in the background (SMUELLER)
919    - Background Tasks can now prevent execution in the prepare
920      hook (SMUELLER)
921    - Added interface for passing events from worker threads to the
922      main thread (SMUELLER)
923    - Added simple example of a Task that sends events to the
924      main thread (SMUELLER)
925    - Tab/Space conversion only converts at the start of each
926      line now (SMUELLER)
927    - Improved comment/uncomment_lines for HTML/XML (FAYLAND)
928    - Rewrote Padre::Wx::Dialog::PluginManager to interact directly with
929      Padre::PluginManager (and not talk to Padre::Config) (ADAMK)
930    - Migrated Padre::DB to use ORLite::Migrate instead of the
931      (increasingly slow) ->setup method (ADAMK)
932    - Allow several coloring styles, add style called 'night' (SZABGAB)
933    - Right-click menu in margin column for code folding now
934      allows to fold/unfold all foldable areas (HJANSEN)
935    - Error list window for run-time errors and diagnostics (PSHANGOV)
936    - Arabic translation added (AZAWAWI)
937    - Italian translation updated (SBLANDIN)
938    - Improved Ack (FAYLAND)
939    - Allow selection of editor font and current line background
940      color (HJANSEN)
941    - Hebrew translation updated (SHLOMIF)
942    - Upped Encode requirement to 2.26, fixes some fatal errors with unicode (TEEJAY)
943    - binmode fix for File::Temp" in SyntaxChecker.pm (TEEJAY)
944
9450.21 2008.12.14
946    - Note: If you are having issues running Padre after upgrading to 0.21,
947      ("Gtk-CRITICAL **: gtk_window_set_modal: assertion `GTK_IS_WINDOW (window)' failed")
948      try moving or deleting your $HOME/.padre directory and check
949      whether that fixes the issues. YMMV and let us know about any
950      problems.
951    - Now using Module::Install for building (ADAMK, SMUELLER, SZABGAB)
952    - Fixed bookmark-related crash (#172) (SvenDowideit)
953    - Fixed syntax-checker related focus glitch (#173) (SvenDowideit)
954    - Removed JavaScript plugin from the main distribution (SZABGAB)
955    - Major menu refactoring. Each menu is now implemented in a seperate
956      class, with independant ->refresh methods and much improved
957      encapsulation as a result. (ADAMK)
958    - Rewrote the Padre bootstrap sequence. Not only does Padre start in
959      a more sane order, but with some additional tweaks using
960      ->Show, ->Freeze and ->Thaw, Padre LOOKS like it starts up
961      and shuts down much much faster (ADAMK)
962    - Reorganised the order and seperators for the View menu (ADAMK)
963    - The Plugins menu no longer shows separators that don't separate
964      anything (ADAMK)
965    - Padre's lib directory now passes all of the rules in Perl::Critic's
966      default Severity 5 policy. (ADAMK)
967    - Changed the names of a number of Padre::Wx::*** classes to more-closely
968      match the underlying Wx::*** classes that they subclass. (ADAMK)
969    - Option to always auto-detect indentation style and adapt for each
970      open document. (SMUELLER)
971    - Default to showing functions in alphabetical order. (SMUELLER)
972    - Option to show functions in alphabetical order, except private methods
973      go last. (SMUELLER)
974    - A bunch of autoindentation fixes. (SMUELLER)
975    - AUI updates to the syntax-checker/output-window GUI elements (HJANSEN)
976    - Various portability and miscellaneous fixes to the syntax checker
977      (ADAMK, HJANSEN)
978    - Add new Perl-specific feature: "Jump to variable declaration"
979      and the experimental "replace lexical variable". (SMUELLER)
980    - The Perl-specific "find unmatched brace" feature now processes
981      the document in the background. (SMUELLER)
982    - Generic Padre::Task::PPI class with tools for PPI-related
983      background tasks. (SMUELLER)
984    - Experimental implementation of the Padre::TaskManager thread pool
985      and Padre::Task background-task-interface for running blocking
986      tasks in additional threads. (SMUELLER)
987    - Italian translation (SBLANDIN)
988    - Show methods in abc order. Allow user to set preference to 'abc' or 'original'
989      ordering of methods. (#163) (SZABGAB)
990    - Open selection prompts user if nothing selected. (#143) (JQUELIN)
991    - Russian translation added (Andrew Shitov)
992    - Dutch translation added (Dirk De Nijs)
993    - Lots and lots of encoding tweaks.
994
9950.20 2008.12.02
996    - Separate tab-width from indentation-level preference (SMUELLER)
997    - Expend auto-detection of indentation style to include the
998      indentation level (SMUELLER)
999    - Apply automatic tab-compression if tab-indentation is used with
1000      an indentation-width != tab-width (SMUELLER)
1001    - Reworked the autoindentation: Now with auto-de-indentation on
1002      closing brace (SMUELLER)
1003    - Now using Class::XSAccessor for generating accessors (SMUELLER)
1004    - Moved the syntax checker from Main.pm into
1005      Padre::Wx::SyntaxChecker (SMUELLER)
1006    - Small improvement to startup time by not refreshing the plugin
1007      menu after loading each plugin (SMUELLER)
1008    - French translation added (JQUELIN)
1009    - Some refactoring, (SZABGAB)
1010    - Display error when reload file failed. (SZABGAB)
1011    - Korean updates. (KEEDI)
1012    - Hungarian updates. (GYU)
1013    - Fix the "cannot save new file bug". (TEEJAY)
1014    - Save files under Mac. #160 (ChrisDolan)
1015    - Restore inner window layout through restart. (HJANSEN)
1016
10170.19 2008.11.28
1018    - Korean translation added (KEEDI)
1019    - Hungarian translation added (GYU)
1020    - Hebrew translation added (Omer Zak)
1021    - Improvement in vi Plugin (SZABGAB)
1022    - Locale switching no longer needs a restart (HJANSEN)
1023    - Moved syntax checking out from experimental state (HJANSEN)
1024    - Prototype of printing support (HJANSEN)
1025    - Adding support for document type registration (ADAMK)
1026    - Adding plugin_name to the Padre::Plugin API (ADAMK)
1027    - Advancing the version numbers of some prereqs (ADAMK)
1028    - Save files in the same encoding as they were read.
1029
10300.18 2008.11.23
1031    - Added a few more directories to the no_index list in Build.PL (ADAMK)
1032    - Implement a reusable Padre::Pod2HTML class so that Padre can develop
1033      a specific look and feel for all HTML generated from Pod. (ADAMK)
1034    - Aggresively bump the Pod::Simple dependency so that the generated
1035      HTML contains support for all the latest developments. (ADAMK)
1036    - Add explicit dependency on HTML::Entities because Pod::Simple
1037      has now made the dependency optional. (ADAMK)
1038    - Aggressivly bump the HTML::Parser dependency so that we have
1039      better support for our Unicode-needing users (ADAMK)
1040    - Recognize when file is changed on disk (#55) (JQUELIN)
1041    - Un/Comment now filetype-dependant (#26) (JQUELIN)
1042    - Moving the vi keybinding code to a Plugin (SZABGAB)
1043    - Jump to the last open window using menu or Ctrl-6 (#137) (SZABGAB)
1044    - Hide the margin of the syntax checker when it is not in use. (SZABGAB)
1045    - Save-as updates the window menu (#145) (JQUELIN)
1046    - Drag and drop file(s) open them (#42) (SZABGAB,JQUELIN)
1047    - padre --index no longer crashes (#79) (JQUELIN)
1048    - Incremental, non-intrusive search a-la Firefox (#60) (JQUELIN)
1049    - New Plug-in system, incompatible with the previous one.
1050    - Plug-in manager dialog.
1051    - Rename Padre::Plugin::MY to Padre::Plugin::My.
1052
10530.17 2008.11.17
1054    - Optional highlighting of current line (via background color) (HJANSEN)
1055    - Code folding (#61) (HJANSEN)
1056    - Word Wrap and "Default word wrap on for each file" in Preferences (FAYLAND)
1057    - Show/Hide Output or Functions (FAYLAND)
1058    - Fix the failing plugin manager test. (SZABGAB)
1059    - Add configuration option to the autoindentation (no, same_level, deep). (SZABGAB)
1060    - Switch to File::ShareDir::PAR 0.03. (SZABGAB)
1061    - Allow opening multiple files at once (#43) (JQUELIN)
1062    - Add Padre::Plugin::MY and set it to be a prefered plugin. (SZABGAB)
1063    - Join lines with Ctrl+J (#128) (JQUELIN)
1064    - Full screen view (#131) (JQUELIN)
1065    - Hide/show white spaces and tabs (#132) (JQUELIN)
1066    - Check minimum App::Ack version (#104). (JQUELIN)
1067    - Selection markers to ease selection (#133) (JQUELIN)
1068    - Drag-n-drop files from Filer Explorer (CORION)
1069    - Add experimantal and basic vi mode. (SZABGAB)
1070    - Fix Shift-TAB (#141) (SZABGAB)
1071    - Add the beginning of second generation plugin support. (ADAMK)
1072    - Limit the plugin names to one deep only. Second level
1073      namespaces are saved for the implementation details. (SZABGAB)
1074    - Experimental perl -c based syntax checking. (HJANSEN)
1075    - Clean recent files list (#126). (FAYLAND)
1076    - Open all recent files (#125). (FAYLAND)
1077    - Alt-1, Alt-2, etc removed. (#122) (SZABGAB)
1078    - Initial Javascript support. (FAYLAND)
1079    - Enable/Disable the subs window via View menu (#100).
1080    - Move between the editor, the output window
1081      and the subs window with some hot-key (#14) (SZABGAB)
1082
10830.16 2008.11.09
1084    - Fix New on the Toolbar (SZABGAB)
1085    - Add Diff menu item to show changes in file. (SZABGAB)
1086    - Change windowing system to AUI solving several requests: (SZABGAB)
1087      Split view
1088      Tab reordering
1089      Tab close button
1090    - Localization and German translation. (HJANSEN)
1091    - Move the content of Padre::Wx::Dialog to Wx::Perl::Dialog 0.02 (SZABGAB)
1092    - Change back the new-file hot-key to be Ctr-N again. (SZABGAB)
1093    - Add experimental PPI based Perl5 syntax highlighting (FAYLAND, SZABGAB)
1094    - Save cursor position between runs of Padre. (FAYLAND)
1095    - Tab/space conversion menu items. (FAYLAND)
1096    - Upper/Lower case conversion menu items. (FAYLAND)
1097    - New icons on the toolbar adding undo/redo/cut/cop/paste/select all. (HJANSEN)
1098    - Also put cut/copy/paste/select all in the edit menu and in the right click menu. (HJANSEN)
1099    - Move Parrot plugin to separate distribution. (SZABGAB)
1100    - Enable switching between German and English. (SZABGAB)
1101
11020.15 2008.11.02
1103    - Don't let opening file that is already open. (SZABGAB)
1104    - Start UTF-8 support. (SZABGAB)
1105    - Switch to File::ShareDir::PAR (SMUELLER)
1106    - Start using File::Which to locate the perl interpreter
1107      (if padre is running from a par archive). (SZABGAB)
1108    - Fix the Split Window menu option to really work. (SZABGAB)
1109    - Adding "Close All but Current" menu option. (SZABGAB)
1110    - Add autoindentation. (SZABGAB)
1111    - Set focus on windows. (SZABGAB)
1112    - Before saving, check if file has changed on disk. (SZABGAB)
1113    - New menu option: "Reload file". (SZABGAB)
1114    - Move style definition to external yaml file. (SZABGAB)
1115    - Separate highlighting definition for PASM files. (SZABGAB)
1116    - Reorganize Menus (make the Perl menu really only perl specific). (SZABGAB)
1117    - Allow the execution of PASM files using parrot if PARROT_PATH
1118      is defined. (SZABGAB)
1119    - Load Parrot::Embed if it is available. (SZABGAB)
1120    - Add Padre::Plugin::Parrot to show how to use pir for plugin writing. (SZABGAB)
1121    - Allow execution of Perl 6 code using Rakudo. (SZABGAB)
1122    - Add copyright/license to all the .pm files as per Debian request. (SZABGAB)
1123    - Ctrl-T is the default new file hot-key just as in Firefox. (ADAMK)
1124    - Dialog cleanups. (SMUELLER, ADAMK, SZABGAB)
1125    - Replace the toolbar icons with icons from the Tango project. (SZABGAB)
1126
11270.14 2008.10.27
1128    - Skip the Test::Compile test if the module is not installed. (SZABGAB)
1129    - Make the add/remove Perl menu work without warnings. (ADAMK + SZABGAB)
1130    - Make brace matching (Ctrl-1) jump to the matching brace. (SZABGAB)
1131    - Allow preference to use tabs (or spaces) when pressing TAB. (SZABGAB)
1132    - Add automatic brace highlighting during. (SZABGAB)
1133
11340.13 2008.10.26
1135    - fix warning when closing Padre with no files open (BRICAS)
1136    - close lone unused document when opening a recent file (now works the same
1137      as file->open) (BRICAS)
1138    - SplitWindow widgets are now used properly (ADAMK)
1139    - Show Output nows correctly hides away the output window when non-visible (ADAMK)
1140    - Refactored out output window to Padre::Wx::Output (ADAMK)
1141    - General refactoring pass over Padre::Wx (ADAMK)
1142    - Padre::Wx forces all the Wx::wxCONSTANT values to be populated,
1143      so that we don't need all the use Wx qw{ wxCONSTANT } imports (ADAMK)
1144    - Make it clear in the main window title if running from SVN checkout (ADAMK)
1145    - Add Padre::PluginBuilder for Padre plugins with extra build targets (SMUELLER)
1146    - Create dialog abstraction in Padre::Wx::Dialog. (SZABGAB)
1147    - Lots of refreshing related fixes. (SZABGAB)
1148    - Create Padre::Documents to return the current or any other document object. (SZABGAB)
1149    - Stop importing Wx directly in the Padre::Wx:: modules. (SZABGAB)
1150    - Compile all modules if Test::Compile is available during tests. (SZABGAB)
1151    - Save button on toolbar is working now when the current document needs saving. (SZABGAB)
1152    - Use binmode :raw in order to help Windows when opening and writing files
1153      fixing the bug that we used to change the newline types whem editing on Windows. (SZABGAB)
1154    - Run Script did not work bug fixed #76 (SZABGAB)
1155    - chdir to directory to be executed with Run Script #69 (SZABGAB)
1156
11570.12 2008.10.23
1158    - All changes below this point by SZABGAB unless noted.
1159    - Stupid bugs left in 0.11 reported by Brian Cassidy.
1160
11610.11 2008.10.23
1162    - Updated ORLite dependency to 0.14 for create => 1 support (ADAMK)
1163    - Rewrote Padre::DB to auto-configure directly from Padre::Config (ADAMK)
1164    - All Padre.pm DBI code converted to Padre::DB calls (ADAMK)
1165    - Removed minor use of Class::Accessor to reduce memory overhead,
1166      namespace pollution and dependency count (ADAMK)
1167    - Removed some superfluous code from the PIR/PASM/Perl6 documents (ADAMK)
1168    - Cleaned up (and shrunk the code for) the bootstrap sequence (ADAMK)
1169    - Moved the "recent files" internal state into the database (ADAMK)
1170    - Removed index pointers unrelated to the IDE from Padre.pm (ADAMK)
1171    - Transaction-wrap exiting to make it much much faster (ADAMK)
1172    - Adding shortcut methods for popup messages/errors (ADAMK)
1173    - Optimised away the non-Wx non-class Padre::Wx::Execute (ADAMK)
1174    - Created Padre::Wx::History::TextDialog so we can have a dialog
1175      box that defaults to whatever the last answer was. (ADAMK)
1176    - Some clean up in the FindDialog window with abstraction.
1177    - Add support to Module::Starter and make it to be a prereq.
1178    - Add all the perl functions to the Calltip keyword list and move
1179      it to a yaml file.
1180    - Fix several bugs that were probably introduced after 0.10.
1181    - Turn the color definition of the syntax highlighting into a hash
1182      for easier maintenance.
1183    - Lots of code refactoring.
1184
11850.10 2008.09.22
1186    - Improve the search tool (include backward search).
1187    - Allow keeping the search window open (or close it and use F3).
1188    - Shift-F3 to jump backwards.
1189    - Add Search and Replace and global search and replace.
1190    - Setup mapping of file extensions to mime-types and to color coding.
1191    - Clean up the MainWindow module, move code to Document and Document::Perl.
1192    - Implement an experimental PASM, PIR and Perl 6 highlighting.
1193    - Allow experimental code to allow the user to execute code within Padre.
1194    - Report if file could not be saved and keep it in unsaved state (bug #74).
1195    - Separate the Padre::Install module from Build.PL.
1196    - Set default mime-type of new files to be perl.
1197    - Change mime-type when saving file to the appropriate new mime-type.
1198
11990.09 2008.09.17
1200    - Move various relevant menu items into a "Window" menu (ADAMK)
1201    - Rename "Enable CallTip" to "Show Call Tips" for consistency (ADAMK)
1202    - Adding more menu seperators to improve the visual look (ADAMK)
1203    - Always show status bar on Win32, as removing it breaks (ADAMK)
1204    - Added experimental Padre::Document::Perl (ADAMK)
1205    - Added experimental PPI intergration (ADAMK)
1206    - Experimental menu refresh closer to being usable (ADAMK)
1207    - Split out Wx-related utility functions into Padre::Wx (ADAMK)
1208    - Adding common platform-detection logic to Padre::Util (ADAMK)
1209    - If we start with a new file and then open another one,
1210      implicitly close the unused new file (ADAMK)
1211    - Some dialog cleanups.
1212    - Make sure we can build stand alon executable for Linux.
1213    - Remove Ctrl-Shift-Z from redo as Ctrl-Y already works.
1214
12150.08 2008.09.11
1216    - Add Ctrl-Shift-O to open a file based on the selection in the current window.
1217    - Enable ack integration even though it is not nice yet but it is working.
1218    - Use real Wx:AboutDialogInfo for the about box.
1219    - Hide method names (in the method window) when they don't start on the first column.
1220    - Add menu option to close all buffers.
1221    - Escape $ signs by default so they will not interpolate during search.
1222    - Open file now opens in the directory where the current file is.
1223    - Add Bookmarks.
1224    - Add toolbar with several icons. Tested on Windows as well.
1225    - Add icon for the application.
1226    - Enable/disable regex in search.
1227    - Add menu option to convert line endings.
1228    - Replace relative path with full path on the command line.
1229    - Implement basic CallTips and add menu option to enable/disable them.
1230
12310.07 2008.09.04
1232    - Allow the user to change the width ot TABs as they are displayed.
1233    - Separate the code to show the preferences window to the Padre::Wx::Preferences module
1234    - Separate code to Padre::Wx::Menu, Padre::Wx::Execute, Padre::Wx::Help
1235    - Allow spliting windows to see two parts of the same document
1236    - Add Zoom-in/Zoom-out/Zoom-reset menu options to change the zoom on all documents
1237    - Allow the use of PAR files as plugins (SMUELLER)
1238    - Stop jumping on selection movement in the list of methods frame.
1239    - Remove Padre::Demo and distribute it separately as Wx::Perl::Dialog. Make Padre depend on it.
1240    - Update the status when the mouse is moved
1241    - Update status works on Windows now.
1242    - Require threaded perl as there is experimental code in Padre to use ack.
1243    - Depend on App::Ack.
1244    - Depend on PAR.
1245    - Clean up the par generation.
1246    - Lots of code cleanup.
1247
12480.06 2008.08.28
1249    - Add some "new file" templates
1250    - Temporarily remove the toolbar
1251    - Change behavior of Padre::Demo, add wxer command line interface
1252    - Remove Demo::App
1253    - Padre::Demo add dir_selector() and password()
1254    - Update list of methods on save as well #54 (vincent)
1255    - Change the list of subs on the right hand side to be sorted
1256    - Set Alt-S to jump to the subs list
1257    - Deal with newlines in files
1258    - Lots of refactoring (ADAMK)
1259    - Remember that application was maximized (ADAMK)
1260    - Better choice of default size (ADAMK)
1261    - Adding a separate compilation test script (ADAMK)
1262    - Adding a ORLite interface to the database Padre::DB (ADAMK)
1263    - Include authors tests for Perl critic and POD in xt/ directory
1264    - Make commenting out and uncommenting out atomic in the undo buffer
1265    - Replace string search by regex search, change the GUI
1266    - Add case insensitive search
1267    - Limit the max number of recent files to 20
1268
12690.05 2008.08.17
1270    - First stab at autocompletition using Ctrl-P. (SZABGAB)
1271    - Allow opening files without extensions (on non-ms-windows systems). (SZABGAB)
1272    - Cleaning up to comply with perlcritic default settings. (ADAMK)
1273    - Adding basic "project" support. (ADAMK)
1274    - Adding Module::Inspector as prereq. (ADAMK)
1275    - Replace YAML with YAML::Tiny (ADAMK)
1276    - Moved bin/padre to script/padre. (ADAMK)
1277    - Moving all globals into a unified object tree. (ADAMK)
1278    - Created standalone Padre::Config (ADAMK)
1279    - Show the filetpe in the status bar. (SZABGAB)
1280    - remove Devel::PerlySense as prereq for now. (SZABGAB)
1281    - List functions of the current file on the right panel. (SZABGAB)
1282    - Syntax highlighting of more file types (PATSPAM)
1283
12840.04 2008.08.08
1285    - Add Devel::PerlySense as prereq
1286    - Stop checking for wx version for now
1287    - Change the create_makefile_pl to passthrough as the traditional did
1288      not do the extra work done by Build.PL
1289    - Mark the buffer that is unsaved with a star.
1290    - Stop saving the content of the loaded file and use GetModify
1291      to find out if the file has been modifyed since last save
1292    - Replace the search_term by search_terms in the config file
1293    - Allow remembering of search terms
1294    - Replace the text dialog by a full dialog box and a Wx::ComboBox
1295    - Setup http://padre.perlide.org/ using trac
1296    - Move the repository to http://svn.perlide.org/padre/
1297
12980.03_02 2008.08.03
1299    - Add experimental code for plugins
1300    - Add experimental version of Padre::Plugin::PAR
1301    - Fix the shortcuts of some of the menues in windows, thanks to Octavian Rasnita
1302    - Replace the AppendSubMenu calls by Append calls to support older version of wxWidgets
1303
13040.03_01 2008.07.31
1305    - Experimental code in Build.PL to avoid test failures when wxWidgets is too old.
1306    - Added ToolBar
1307    - Experimental code to install non-perl files and then use find them using File::ShareDir
1308
13090.03 2008.07.28
1310    - Fix many issues reported by Octavian Rasnita
1311    - Rename some internal modules to get full indexing
1312
13130.02 2008.07.26
1314    - First public release under the name Padre
1315    - Slow improvements
1316    - Nothing special or ground breaking to mention
1317
13180.01 2008.07.20
1319    - First version
Note: See TracBrowser for help on using the browser.