Skip to content

Commit

Permalink
[v1.1.0] Version up to 1.1.0
Browse files Browse the repository at this point in the history
The major update is that rename the binary from `awesome` to `awesome-hub`
  • Loading branch information
mingrammer committed Oct 11, 2017
1 parent ed45ec0 commit 080f02a
Show file tree
Hide file tree
Showing 5 changed files with 67 additions and 6 deletions.
52 changes: 52 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,52 @@
# Changelog

All notable changes to this project will be documented in this file.

## [1.1.0](https://github.com/mingrammer/awesome-finder/releases/tag/v1.1.0) - 2017-10-12

#### Added

* Create CHANGELOG.md
* Add `--version` option
* Add `requirements.txt`

#### Changed

* Rename the `awesome` binary to `awesome-hub` to avoid the conflict with awesome binary of `awesome-wm`

## [1.0.6](https://github.com/mingrammer/awesome-finder/releases/tag/v1.0.6) - 2017-09-29

#### Changed

* Improve the parsing regex for that make it possible to recognize the emoji text


#### Fixed

* Fix parsing problems for `awesome-java` and `awesome-php`

## [1.0.5](https://github.com/mingrammer/awesome-finder/releases/tag/v1.0.5) - 2017-09-13

#### Added

* Add parsers for awesome-android/ios

#### Fixed

* Fix a bug for trying to open the non exist link of empty matched blocks

## [1.0.4](https://github.com/mingrammer/awesome-finder/releases/tag/v1.0.4) - 2017-09-11

#### Fixed

* Fix a bug that cache directory was not created


## [1.0.0](https://github.com/mingrammer/awesome-finder/releases/tag/v1.0.0) - 2017-09-11

#### Added

* Parses the awesome repository
* Supports some awesome repository
* Open a link on awesome finder
* Supports multiple keywords query
12 changes: 9 additions & 3 deletions README.md
Expand Up @@ -28,13 +28,13 @@ pip install awesome-finder # or pip3 install awesome-finder

```bash
# Find awesome things from awesome-<topic>
awesome <topic>
awesome-hub <topic>

# Find awesome things from latest awesome-<topic> (not use cache)
awesome <topic> -f (--force)
awesome-hub <topic> -f (--force)

# Show help messages (can see supported awesome topics)
awesome -h (--help)
awesome-hub -h (--help)
```

There are some helper keys:
Expand Down Expand Up @@ -76,6 +76,12 @@ Details on [CONTRIBUTING](CONTRIBUTING.md)

<br>

## Changelog

Details on [CHANGELOG](CHANGELOG.md)

<br>

## TODO

* [ ] Query highlighting
Expand Down
4 changes: 2 additions & 2 deletions awesome/__init__.py
@@ -1,6 +1,6 @@
"""
awesome - a TUI, for finding awesome list
awesome-hub - a TUI, for finding curated awesome list
"""
__version__ = '1.0.6'
__version__ = '1.1.0'
__author__ = 'mingrammer'
__license__ = 'MIT'
3 changes: 3 additions & 0 deletions awesome/__main__.py
Expand Up @@ -3,6 +3,7 @@
import argparse
import os

from . import __author__, __version__
from .parser_loader import load_parsers
from .tui import SearchScreen

Expand All @@ -23,6 +24,8 @@ def get_awesome_blocks(awesome_title, force):
def parse_command():
parser = argparse.ArgumentParser(description='awesome command')

parser.add_argument('--version', action='version', version='awesome-finder version {version}, (c) 2017-2017 by {author}.'.format(version=__version__, author=__author__))

subparsers = parser.add_subparsers(dest='title', title='title',
description='The title of awesome you want to find')
subparsers.required = True
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -70,7 +70,7 @@ def run(self):
keywords='awesome finder curses tui',
packages=find_packages(),
entry_points={
'console_scripts': ['awesome=awesome.__main__:main'],
'console_scripts': ['awesome-hub=awesome.__main__:main'],
},
install_requires=REQUIRED,
include_package_data=True,
Expand Down

0 comments on commit 080f02a

Please sign in to comment.