Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
akazukin5151 committed Jul 16, 2020
2 parents f551b4b + 67b04a2 commit aa8fcc8
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Note: if you want to make some edits, you should install it in a conda environme
```sh
# Use the latest stable version (recommended for usage)
# Make sure the version number is the latest
git clone -b 'v0.9.1' --depth 1 https://github.com/twenty5151/koneko.git
git clone -b 'v0.9.2' --depth 1 https://github.com/twenty5151/koneko.git
# Use the master branch for upcoming features:
git clone -b master https://github.com/twenty5151/koneko.git
# Use the dev branch for latest features, fixes, and instability (recommended for contributers):
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ For full changelogs please see [releases](https://github.com/twenty5151/koneko/r

#### Features
* lscat app: Display first picture if a mode 2 directory is selected
* This project is now mirrored on gitlab [here](https://gitlab.com/twenty5151/koneko)

#### Bug fixes
* Fixed mode 2 exclusive filter showing mode 1 page dirs
Expand All @@ -119,6 +120,13 @@ For full changelogs please see [releases](https://github.com/twenty5151/koneko/r
* Rename AbstractImageAdjuster.write() to report()
* Added docstrings in assistants.py
* Added image_adjuster.puml, displayed in HACKING.md
* Use namedtuple instead of classes in some tests
* Use mocks instead of repetitive fake classes
* Add AbstractData to puml
* Use new json in some tests
* Test print multiple images with one and two posts
* Add some comments on MVC vs MVA
* Removed unused search_string() method


# Roadmap
Expand Down
2 changes: 1 addition & 1 deletion koneko/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

from blessed import Terminal

__version__ = '0.9.1'
__version__ = '0.9.2'
KONEKODIR = Path('~/.local/share/koneko/cache').expanduser()
TERM = Terminal()
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

setup(
name='koneko',
version='0.9.1',
version='0.9.2',
description='Browse pixiv in the terminal',
long_description=README,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit aa8fcc8

Please sign in to comment.