Skip to content

Commit

Permalink
v 0.2.8 (2016_01_19) : --mode=[copy|move|mirror]
Browse files Browse the repository at this point in the history
    o --mode=[copy|move|mirror] replaces from now --mirroronly and --move
    o added fill_readme.py and README.md.template : both are used to
      automatically fill the README.md file from the informations stored
      in katal.py (namely, the __***__ strings) .

    o added CST__ prefix at the beginning of global constants
    o added documentation about global type(s)/constants/variables;
    o added 4 sections at the beginning of the script : project's settings,
      global variables, global constants, global types
    o modified argparse's epilog in read_command_line_arguments()

    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 18, 2016
1 parent c460c9a commit fa6daa1
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 5 deletions.
10 changes: 6 additions & 4 deletions katal/katal.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,15 @@
#===============================================================================
# project's settings
#
# for __version__, see https://www.python.org/dev/peps/pep-0440/ e.g 0.1.2.dev1
# See also https://pypi.python.org/pypi?%3Aaction=list_classifiers
# o for __version__ format string, see https://www.python.org/dev/peps/pep-0440/ :
# e.g. "0.1.2.dev1" or "0.1a"
#
# o See also https://pypi.python.org/pypi?%3Aaction=list_classifiers
#
#===============================================================================
__projectname__ = "Katal"
__version__ = "0.2.8a"
__laststableversion__ = "0.2.7"
__version__ = "0.2.8"
__laststableversion__ = "0.2.8"
__author__ = "Xavier Faure (suizokukan / 94.23.197.37)"
__copyright__ = "Copyright 2015, suizokukan"
__license__ = "GPL-3.0"
Expand Down
16 changes: 15 additions & 1 deletion roadmap.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
v 0.2.8 [intended] : doc about --mirroronly + NTFS(source/target) + caveats
v 0.2.8 (2016_01_19) : --mode=[copy|move|mirror]

o --mode=[copy|move|mirror] replaces from now --mirroronly and --move
o added fill_readme.py and README.md.template : both are used to
automatically fill the README.md file from the informations stored
in katal.py (namely, the __***__ strings) .

o added CST__ prefix at the beginning of global constants
o added documentation about global type(s)/constants/variables;
o added 4 sections at the beginning of the script : project's settings,
global variables, global constants, global types
o modified argparse's epilog in read_command_line_arguments()

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.7 (2016_01_17) : fixed a critical bug

Expand Down

0 comments on commit fa6daa1

Please sign in to comment.