diff --git a/ADVANCEDSCANNER.rst b/ADVANCEDSCANNER.rst new file mode 100644 index 0000000..25b0256 --- /dev/null +++ b/ADVANCEDSCANNER.rst @@ -0,0 +1,5 @@ +Advanced Scanner +================ + +.. image:: https://i.imgur.com/nmL8HwX.gif + diff --git a/README.rst b/README.rst index 999021d..0bf21ad 100644 --- a/README.rst +++ b/README.rst @@ -60,7 +60,7 @@ Option 1: installing through `pip `__ (Recomm If you are behind a proxy -``$ pip --proxy [username:password@]domain_name:port install -i https://pypi.org/project/Filezen/`` +``$ pip --proxy [username:password@]domain_name:port install Filezen`` **Note:** If you get ``command not found`` then ``$ sudo apt-get install python-pip`` should fix that @@ -109,9 +109,8 @@ Simple Scanner ] }' -- If a file with the same name is already present in the *Output Directory* then ``Simple Scanner`` would ignore the file and leave it to the user. -- The filename which hasn't being because of the reason stated above would be returned in the ``NotMoved`` array of the result. - If no *Output Directory* is specified, then ``Simple Scanner`` would create folders in the *Input Directory* itself. +- `Watch Simple Scanner in action `__. Advanced Scanner ~~~~~~~~~~~~~~~~ @@ -147,9 +146,13 @@ Advanced Scanner ] }' -- Similar to ``Simple Scanner``, if a file with the same name is already present in the *Output Directory* then ``Advanced Scanner`` would ignore the file and leave it to the user. -- The filename which hasn't being because of the reason stated above would be returned in the ``NotMoved`` array of the result. -- If no *Output Directory* is specified, then ``Advanced Scanner`` would read the folders in the *Input Directory* itself and move accordingly. +- If no **Output Directory** is specified, then ``Advanced Scanner`` would read the folders in the **Input Directory** itself and move accordingly. +- `Watch Advanced Scanner in action `__. + +**Note:** If a file with the same name is already present in the **Output Directory** then ``Filezen`` would +ignore the file and leave it to the user. In the resulting JSON, you'll get the all such filenames which +were not moved in the ``NotMoved`` list. + Applications ~~~~~~~~~~~~ diff --git a/SIMPLESCANNER.rst b/SIMPLESCANNER.rst new file mode 100644 index 0000000..d0ec675 --- /dev/null +++ b/SIMPLESCANNER.rst @@ -0,0 +1,4 @@ +Simple Scanner +============== + +.. image:: https://i.imgur.com/V99Myqg.gif \ No newline at end of file diff --git a/docs/source/index.rst b/docs/source/index.rst index e32e6fc..90d8cc0 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -3,6 +3,7 @@ Filezen ======= + |readthedocs.org| |license| |build| |pypi| diff --git a/filezen/version.py b/filezen/version.py index f67cf8e..c990124 100644 --- a/filezen/version.py +++ b/filezen/version.py @@ -1,2 +1,2 @@ # Version of Filezen package -VERSION = "1.3.1" +VERSION = "1.4.0" diff --git a/setup.py b/setup.py index 03bedd8..820b5bb 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ __version__ = VERSION -with open("README.rst", "r", encoding="utf-8") as f: +with open("README.rst", "r") as f: long_description = f.read()