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

Commit ece1bee

Browse files
committed
Merge branch 'release-v0.7.4'
2 parents 2866e01 + c5fcff3 commit ece1bee

26 files changed

+300
-185
lines changed

.gitlab-ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@ python-3.10:
3939
extends: .python
4040
image: python:3.10
4141

42+
python-3.12:
43+
stage: tests
44+
extends: .python
45+
image: python:3.12
46+
4247
python-3.11:
4348
stage: tests
4449
before_script:

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change log
22

3+
## Version 0.7.4 (2024/01/13)
4+
5+
**twootfeed** is no longer maintained. This is the latest version.
6+
7+
No new features, only dependencies update
8+
9+
310
## Version 0.7.3 (2023/06/14)
411

512
No new features, only dependencies update

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
# python-twootfeed
2+
3+
> ⚠️ **twootfeed** is no longer maintained.
4+
25
**generate an RSS feed from parsed Twitter or Mastodon search and Mastodon bookmarks/favorites/home timeline**
36

47
[![PyPI version](https://img.shields.io/pypi/v/twootfeed.svg)](https://pypi.org/project/twootfeed/)
58
[![Python Version](https://img.shields.io/badge/python-3.8+-brightgreen.svg)](https://python.org)
6-
[![Flask Version](https://img.shields.io/badge/flask-2.3-brightgreen.svg)](http://flask.pocoo.org/)
9+
[![Flask Version](https://img.shields.io/badge/flask-3.0-brightgreen.svg)](http://flask.pocoo.org/)
710
[![code style: black](https://img.shields.io/badge/code%20style-black-black)](https://black.readthedocs.io/en/stable/)
811
[![type check: mypy](https://img.shields.io/badge/type%20check-mypy-blue)](http://mypy-lang.org/)
912
[![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.3
1+
0.7.4

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: 6a0d8fb1b304246f1219988c1a61d67e
3+
config: 67870d4fa2dd826e8c1804bbcc4aaaf7
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

docs/_sources/changelog.md.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change log
22

3+
## Version 0.7.4 (2024/01/13)
4+
5+
**twootfeed** is no longer maintained. This is the latest version.
6+
7+
No new features, only dependencies update
8+
9+
310
## Version 0.7.3 (2023/06/14)
411

512
No new features, only dependencies update

docs/_sources/features.rst.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Features
22
########
33

4+
.. warning::
5+
6+
| **twootfeed** is no longer maintained.
7+
8+
49
Description
510
~~~~~~~~~~~
611

docs/_sources/index.rst.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ Welcome to twootfeed's documentation!
88

99
**twootfeed** generates an RSS feed from parsed Twitter or Mastodon search and from Mastodon bookmarks, favorites and home timeline.
1010

11+
.. warning::
12+
13+
| ⚠️ **twootfeed** is no longer maintained.
14+
1115
.. toctree::
1216
:maxdepth: 1
1317
:caption: Contents

docs/_static/basic.css

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,10 @@ a.headerlink {
237237
visibility: hidden;
238238
}
239239

240+
a:visited {
241+
color: #551A8B;
242+
}
243+
240244
h1:hover > a.headerlink,
241245
h2:hover > a.headerlink,
242246
h3:hover > a.headerlink,
@@ -670,6 +674,16 @@ dd {
670674
margin-left: 30px;
671675
}
672676

677+
.sig dd {
678+
margin-top: 0px;
679+
margin-bottom: 0px;
680+
}
681+
682+
.sig dl {
683+
margin-top: 0px;
684+
margin-bottom: 0px;
685+
}
686+
673687
dl > dd:last-child,
674688
dl > dd:last-child > :last-child {
675689
margin-bottom: 0;
@@ -738,6 +752,14 @@ abbr, acronym {
738752
cursor: help;
739753
}
740754

755+
.translated {
756+
background-color: rgba(207, 255, 207, 0.2)
757+
}
758+
759+
.untranslated {
760+
background-color: rgba(255, 207, 207, 0.2)
761+
}
762+
741763
/* -- code displays --------------------------------------------------------- */
742764

743765
pre {

docs/_static/documentation_options.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
var DOCUMENTATION_OPTIONS = {
2-
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
3-
VERSION: '0.7.3',
1+
const DOCUMENTATION_OPTIONS = {
2+
VERSION: '0.7.4',
43
LANGUAGE: 'en',
54
COLLAPSE_INDEX: false,
65
BUILDER: 'html',

0 commit comments

Comments
 (0)