Skip to content

Commit 567c4f5

Browse files
committed
final polish
1 parent 097e479 commit 567c4f5

File tree

3 files changed

+21
-13
lines changed

3 files changed

+21
-13
lines changed

README.md

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ line interface, having syntax similar to cli's linux, with options args and help
88

99
![image][]
1010

11-
Access [KevBoyz-Docs/lash](https://kevboyz.github.io/KevBoyz-Docs/sub-pages/documentations/lash/index.html) for the full documentation.
11+
**Installing:** `pip install lash`
12+
**Executing:** `python -m lash`
1213

13-
## Lash overview
14+
Access [KevBoyz-Docs/lash](https://kevboyz.github.io/KevBoyz-Docs/sub-pages/documentations/lash/index.html) for documentation.
1415

15-
*Installing:* `pip install lash`
16-
*Executing*: `python -m lash`
16+
## Some examples
1717

18-
## Compress file in zip archive
18+
### Compress file in zip archive
1919

2020
$ py -m lash zip compress C:\Users\User\Documents
2121
Compacting archives, please wait...
@@ -29,7 +29,7 @@ Access [KevBoyz-Docs/lash](https://kevboyz.github.io/KevBoyz-Docs/sub-pages/docu
2929
process completed, 206 files compacted
3030

3131

32-
# Scheduling commands execution
32+
### Scheduling commands execution
3333

3434
$ py -m lash sched run --help
3535
Usage: -m sched run [OPTIONS] command <hours> <minutes> <seconds>
@@ -56,9 +56,17 @@ You can get the config.py path with `lash getconfig` command
5656

5757
# Release notes
5858

59-
## v1.2.0 - General Upgrade
60-
61-
*
59+
## v1.2.0x - General upgrade
60+
61+
* Image handling implemented: Flip\Resize
62+
* *Sched* group upgraded: better syntax and display
63+
* *Zip* group upgraded: better syntax, display, no errors and new options
64+
* `spy crypt` upgraded: better syntax and new options (-cl, -ex)
65+
* `autoclick` upgraded: only single and double click option
66+
* `web new` fixed, generting files correctly now
67+
* `random upgraded`: Generate random sequences with numbers letters and specials
68+
* New command for `web` : `ghscrape` → scrap a Github profile
69+
* New command for `zip`: `zipview` → view the files inside a zip archive
6270

6371
## v1.1.3.1 - Readme from Pypi page
6472

lash/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
@group('global')
1010
def Global():
1111
"""\b
12-
- Lash 1.2.0 by KevBoyz ~ https://github.com/KevBoyz/Lash
12+
- Lash 1.2.0x by KevBoyz ~ https://github.com/KevBoyz/Lash
1313
"""
1414
...
1515

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
setuptools.setup(
66
name='lash',
7-
version='1.2.0',
7+
version='1.2.0x',
88
license='GNU GPLv3',
99
author='Kevin Emmanuel',
1010
author_email='kevboyz@pm.me',
@@ -17,8 +17,8 @@
1717
Thinking about being simple and effective, Lash was developed with a command
1818
line interface, having syntax similar to cli's linux, with options args and help sections.
1919
20-
Full ReadMe in page `Github <https://github.com/KevBoyz/lash>` page.
21-
Access the documentation on `KevBoyz Docs <https://kevboyz.github.io/KevBoyz-Docs/sub-pages/documentations/lash/index.html>`
20+
Full ReadMe in page `Github <https://github.com/KevBoyz/lash>`_ page.
21+
Documentation on `KevBoyz Docs <https://kevboyz.github.io/KevBoyz-Docs/sub-pages/documentations/lash/index.html>`_
2222
""",
2323
url='https://github.com/KevBoyz/Lash',
2424
keywords='''

0 commit comments

Comments
 (0)