Skip to content

Commit

Permalink
recpermissions-1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
turulomio committed Nov 14, 2018
1 parent 64f82a7 commit 972f139
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ What is RecPermissions
======================
It's a script to change Linux permissions and ownership in one step. It can delete empty directories when necessary.

This script doesn't work on Windows.

Usage
=====

Expand Down Expand Up @@ -43,6 +45,10 @@ Dependencies

Changelog
=========
1.4.0
* Improved man pages
* If recpermissions is executed on Windows, just exists script, instead of crash.

1.3.0
* If file owner isn't in /etc/passwd now remains its uid, and desn't crash
* Code of conduct is added to the project
Expand Down
2 changes: 1 addition & 1 deletion doc/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = RecPermissions
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 1.3.0
PROJECT_NUMBER = 1.4.0

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion locale/recpermissions.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-11-14 16:17+0100\n"
"POT-Creation-Date: 2018-11-14 16:29+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
Expand Down
2 changes: 0 additions & 2 deletions recpermissions/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,6 @@ def main(arguments=None):
args=parser.parse_args(arguments)

colorama_init(autoreset=True)

if platform.system()

# Sets locale to get integer format localized strings
try:
Expand Down
4 changes: 2 additions & 2 deletions recpermissions/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import datetime

__versiondate__ = datetime.date(2018, 11, 3)
__version__ = '1.3.0'
__versiondate__ = datetime.date(2018, 11, 14)
__version__ = '1.4.0'

0 comments on commit 972f139

Please sign in to comment.