Skip to content
This repository was archived by the owner on Jan 13, 2024. It is now read-only.

Commit 7d5ff0d

Browse files
committed
Merge branch 'release-v0.7.2'
2 parents 70b44cd + 5c3ebf9 commit 7d5ff0d

38 files changed

+477
-222
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Change log
22

3+
## Version 0.7.2 (2022/08/27)
4+
5+
#### Bugs Fixed
6+
7+
* [Issue 32](https://github.com/SamR1/python-twootfeed/issues/32) - GIFs not showing
8+
9+
In this release 1 issue was closed.
10+
11+
312
## Version 0.7.1 (2022/07/16)
413

514
#### Misc
@@ -34,7 +43,7 @@ Note: **twootfeed** still using **Twitter** API v1.1
3443
* [Issue 27](https://github.com/SamR1/python-twootfeed/issues/27) - generate documentation with sphinx
3544
* [Issue 26](https://github.com/SamR1/python-twootfeed/issues/26) - [Mastodon] add feed with user's bookmarks
3645

37-
In this release 2 issue were closed.
46+
In this release 2 issues were closed.
3847

3948

4049
## Version 0.6.6 (2019/10/20)

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ serve:
4141
$(FLASK) run --with-threads -h $(HOST) -p $(PORT)
4242

4343
run:
44-
echo 'Running on http://$(HOST):$(PORT)'
45-
FLASK_ENV=production && $(GUNICORN) -b 127.0.0.1:5000 "$(FLASK_APP):create_app()" --error-logfile $(GUNICORN_LOG)
44+
echo 'Running on http://localhost:$(PORT)'
45+
FLASK_ENV=production && $(GUNICORN) -b 127.0.0.1:$(PORT) "$(FLASK_APP):create_app()" --error-logfile $(GUNICORN_LOG)
4646

4747
venv:
4848
test -d $(VENV) || $(PYTHON_VERSION) -m venv $(VENV)

Makefile.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ PORT = 5000
33
APP_PATH = $(PWD)/twootfeed
44

55
export FLASK_APP = twootfeed
6-
export FLASK_ENV=development
6+
export FLASK_DEBUG=1
77
export TWOOTFEED_CONFIG_DIR=$(APP_PATH)/
88
export TWOOTFEED_CONFIG_FILE=$(APP_PATH)/config.yml
99
export TWOOTFEED_LOG=twootfeed.log

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![PyPI version](https://img.shields.io/pypi/v/twootfeed.svg)](https://pypi.org/project/twootfeed/)
55
[![Downloads](https://pepy.tech/badge/twootfeed)](https://pepy.tech/project/twootfeed)
66
[![Python Version](https://img.shields.io/badge/python-3.7+-brightgreen.svg)](https://python.org)
7-
[![Flask Version](https://img.shields.io/badge/flask-2.1-brightgreen.svg)](http://flask.pocoo.org/)
7+
[![Flask Version](https://img.shields.io/badge/flask-2.2-brightgreen.svg)](http://flask.pocoo.org/)
88
[![code style: black](https://img.shields.io/badge/code%20style-black-black)](https://black.readthedocs.io/en/stable/)
99
[![type check: mypy](https://img.shields.io/badge/type%20check-mypy-blue)](http://mypy-lang.org/)
1010
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/14d1c00121c04cd2b81453c597639ca6)](https://www.codacy.com/app/SamR1/python-twootfeed)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.7.1
1+
0.7.2

docs/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: a60a5b8ce7a38d3ffa6039003e56360f
3+
config: 7075c05ace5d0aeb460624acaa55bf96
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

docs/_sources/changelog.md.txt

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Change log
22

3+
## Version 0.7.2 (2022/08/27)
4+
5+
#### Bugs Fixed
6+
7+
* [Issue 32](https://github.com/SamR1/python-twootfeed/issues/32) - GIFs not showing
8+
9+
In this release 1 issue was closed.
10+
11+
312
## Version 0.7.1 (2022/07/16)
413

514
#### Misc
@@ -34,7 +43,7 @@ Note: **twootfeed** still using **Twitter** API v1.1
3443
* [Issue 27](https://github.com/SamR1/python-twootfeed/issues/27) - generate documentation with sphinx
3544
* [Issue 26](https://github.com/SamR1/python-twootfeed/issues/26) - [Mastodon] add feed with user's bookmarks
3645

37-
In this release 2 issue were closed.
46+
In this release 2 issues were closed.
3847

3948

4049
## Version 0.6.6 (2019/10/20)

docs/_sources/features.rst.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Features
44
Description
55
~~~~~~~~~~~
66

7-
**twootfeed** generate an RSS feed from **Twitter** or **Mastodon** search and from **Mastodon** bookmarks/favorites/home timeline.
7+
**twootfeed** generates an RSS feed from **Twitter** or **Mastodon** search and from **Mastodon** bookmarks/favorites/home timeline.
88

99
The feed displays only the original tweets (not the retweets) and toots, with:
1010

@@ -15,8 +15,9 @@ The feed displays only the original tweets (not the retweets) and toots, with:
1515
- usernames
1616

1717
- URLs
18-
- images
19-
- source
18+
- images, video (mp4) and animated gif (as mp4 video)
19+
- image description (only for Mastodon)
20+
- source if available
2021
- location (only for Twitter)
2122
- visibility (only for Mastodon)
2223
- numbers of retweets and likes for tweets and boosts and favourites for toots

docs/_sources/how-to-developers.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Dependencies
66

77
- `Flask <http://flask.pocoo.org/>`_
88
- `Feedgenerator <https://pypi.python.org/pypi/feedgenerator)>`_
9-
- `Tweepy <https://github.com/tweepy/tweepy>`_ (only tested with the `Twitter Standard API <https://developer.twitter.com/en/docs/tweets/search/overview/standard.html>`_)
9+
- `Tweepy <https://github.com/tweepy/tweepy>`_ (only tested with the `Twitter Standard v1.1 API <https://developer.twitter.com/en/docs/tweets/search/overview/standard.html>`_)
1010
- `Mastodon.py <https://github.com/halcy/Mastodon.py>`_
1111
- `pytz <https://pypi.python.org/pypi/pytz/>`_
1212
- `pyYAML <https://github.com/yaml/pyyaml>`_

docs/_sources/index.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Welcome to twootfeed's documentation!
77
=====================================
88

9-
**twootfeed** generate an rss feed from parsed Twitter or Mastodon search and from Mastodon bookmarks, favorites and home timeline.
9+
**twootfeed** generates an RSS feed from parsed Twitter or Mastodon search and from Mastodon bookmarks, favorites and home timeline.
1010

1111
.. toctree::
1212
:maxdepth: 1

0 commit comments

Comments
 (0)