Skip to content

Commit

Permalink
v 0.2.9 (2016_01_19) : colored console output
Browse files Browse the repository at this point in the history
    o added colors to console messages for the Linux console :
        o added the CST__PLATFORM constant
        o added the ST__LINUXCONSOLECOLORS constant
        o added an argument to msg() function, '_consolecolor'
        o the welcome message in now displayed in white
        o the message displayed if enough diskspace is available is now displayed in white
        o error messages are now displayed in red

    o show_infos_about_source_path() : improved the way extensions are displayed.
      Before this commit, the sort was case sensitive (.JPG, .abc, .jpg, .kl, ...).
      After this commit the sort is case insensitive (.abc, .jpg, .JPG, .kl, ...)
    o in show_infos_about_source_path(), added a counter helping the user no to think
      that the script has freezed.
    o fixed argparse epilog in read_command_line_arguments()
    o improved various messages

    o 6 tests, pylint=10.0 for the four Python scripts
    o version packaged and sent to Pypi (https://pypi.python.org/pypi/Katal)
  • Loading branch information
suizokukan committed Jan 19, 2016
1 parent 445c2a3 commit c737f4c
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#(1) Katal (0.2.8)
#(1) Katal (0.2.9)
A (Python3/GPLv3/OSX-Linux-Windows/CLI) project, using no additional modules than the ones installed with Python3.

Create a catalogue from various source directories, without any duplicate. Add some tags to the files.
Expand Down
4 changes: 2 additions & 2 deletions katal/katal.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@
#
#===============================================================================
__projectname__ = "Katal"
__version__ = "0.2.9a"
__laststableversion__ = "0.2.8"
__version__ = "0.2.9"
__laststableversion__ = "0.2.9"
__author__ = "Xavier Faure (suizokukan / 94.23.197.37)"
__copyright__ = "Copyright 2015, suizokukan"
__license__ = "GPL-3.0"
Expand Down
21 changes: 21 additions & 0 deletions roadmap.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
v 0.2.9 (2016_01_19) : colored console output

o added colors to console messages for the Linux console :
o added the CST__PLATFORM constant
o added the ST__LINUXCONSOLECOLORS constant
o added an argument to msg() function, '_consolecolor'
o the welcome message in now displayed in white
o the message displayed if enough diskspace is available is now displayed in white
o error messages are now displayed in red

o show_infos_about_source_path() : improved the way extensions are displayed.
Before this commit, the sort was case sensitive (.JPG, .abc, .jpg, .kl, ...).
After this commit the sort is case insensitive (.abc, .jpg, .JPG, .kl, ...)
o in show_infos_about_source_path(), added a counter helping the user no to think
that the script has freezed.
o fixed argparse epilog in read_command_line_arguments()
o improved various messages

o 6 tests, pylint=10.0 for the four Python scripts
o version packaged and sent to Pypi (https://pypi.python.org/pypi/Katal)

v 0.2.8 (2016_01_19) : --mode=[copy|move|mirror]

o --mode=[copy|move|mirror] replaces from now --mirroronly and --move
Expand Down

0 comments on commit c737f4c

Please sign in to comment.