Skip to content

Commit

Permalink
Merge branch 'release/0.3.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
craigmaloney committed Dec 23, 2017
2 parents af9b5f2 + 61cd4b1 commit 6122f1f
Show file tree
Hide file tree
Showing 6 changed files with 447 additions and 91 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,25 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

### Release
### [0.3.2] - TBD

#### Added
- Reworked the Tootstream Parser to add styling, link-shortening, link retrieval, and emoji code shortening
- About shows current version of Tootstream and the connected instance
- Notifications may now be filtered

#### Fixed
- Replies no longer include the logged-in user
- Allow user to edit a toot when an API error occurs
- Compatibility with Mastodon.py 1.2.1

### Release
### [0.3.1] - 2017-11-21

#### Fixed
- Compatibility with Mastodon 1.1.2 fix

### Release
### [0.3.0] - 2017-11-17
### Dedicated to the memory of Natalie Nguyen (aka Tipsy Tentacle). May she live on in our hearts and our changelog.
Expand Down
8 changes: 8 additions & 0 deletions README.md
Expand Up @@ -62,6 +62,14 @@ $ tootstream
```
3: Close the environment with `$ deactivate`

## Ubuntu and Unicode

Tootstream relies heavily on Unicode fonts. The best experience can be had by installing the following package:

```
$ sudo apt-get install ttf-ancient-fonts
```

## Contributing

Contributions welcome! Please read the [contributing guidelines](CONTRIBUTING.md) before getting started.
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
@@ -1,4 +1,5 @@
click>=6.7
Mastodon.py==1.1.2
Mastodon.py==1.2.1
colored>=1.3.5
humanize>=0.5.1
emoji>=0.4.5
4 changes: 2 additions & 2 deletions setup.py
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
setup(
name="tootstream",
version="0.3.1",
version="0.3.2",
python_requires=">=3",
install_requires=[line.strip() for line in open('requirements.txt')],

Expand All @@ -12,7 +12,7 @@

author="Sara Murray",
author_email="saramurray@protonmail.com",
description="A command line interface for interacting with Mastodon instances",
description="A command line interface for interacting with Mastodon instances", # nopep8
license="MIT",
keywords="mastodon, mastodon.social, toot, tootstream",
url="http://www.github.com/magicalraccoon/tootstream",
Expand Down

0 comments on commit 6122f1f

Please sign in to comment.