Author:  Jody Holmes (Skwire)
Date:    2009-09-02
Contact: skwire@dcmembers.com
Site:    http://skwire.dcmembers.com/wb/pages/software/files-2-folder.php
Forum:   http://www.donationcoder.com/Forums/bb/index.php?topic=19770.0


; ------------------------------------------------------------------------
; Version history --------------------------------------------------------
; ------------------------------------------------------------------------

+ added
* changed
- deleted
! bug fixed

v1.0.6 - 2010-04-07
    + Added a second mode when multiple files are selected.  This new mode
      will move each file to individual subfolders based on their names e.g.:
      (Thanks, adrienne)
            
          filename.bat -> .\filename\filename.bat
          filename.txt -> .\filename\filename.txt

v1.0.5 - 2009-10-03
    ! Fixed a replace characters scope issue where the entire path was
      being considered instead of just the new folder.  (Thanks, sizzle) 

v1.0.4 - 2009-09-03
    + Added yet another hidden setting.  "Chars_To_Replace" is now an
      option.  If you have "Replace_Chars" set to one, any characters
      in the "Chars_To_Replace" list will be replaced with a space.
      
      [Settings]
      Replace_Chars=1
      Chars_To_Replace=-_
      
      Example with the above settings:
      
      Filename of:      Test_-_Test
      Resulting folder: Test   Test
      
      Note: This only affects single-selection operations.

v1.0.3 - 2009-09-03
    + Added a couple more hidden settings.  "Remove_Chars" and
      "Chars_To_Remove".  This will allow you to specify of a list of
      characters that will get removed when building the foldername.
      
      [Settings]
      Remove_Chars=1
      Chars_To_Remove=!@#$%^&()
      
      Example with the above settings:
      
      Filename of:      Test!@#$%^&()Test
      Resulting folder: TestTest
      
      Note: This only affects single-selection operations.

v1.0.2 - 2009-09-03
    + Illegal chars in the filename are now checked for.
    + Hidden setting to change dashes/hyphens and underscores into spaces
      when creating the foldername from a single file.  To turn this
      behaviour on, create a config.ini in the app's folder with the
      following text:
      
      [Settings]
      Replace_Chars=1
      
      Note: This does not affect a multiple file selection.

v1.0.1 - 2009-09-03
    * Input box now prepopulates with filename to be used as the foldername.
      It should already be highlighted so, if you don't want to use the
      given name, simply start typing to provide your own foldername to use.
      (Thanks, paarkhi)

v1.0.0 - 2009-09-02
    + Initial forum build.
