Skip to content

Commit

Permalink
fix(popular): add everywhere geo filter
Browse files Browse the repository at this point in the history
  • Loading branch information
corenting committed Mar 30, 2024
1 parent 2632981 commit f61185f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
# Version 0.8.4

- For the popular page, set the geo filter to "everywhere"

# Version 0.8.3

- Spoof the official Android app to bypass rate-limiting. Thanks to [redlib](https://github.com/redlib-org/redlib) for the Android app spoofing code.

# Version 0.8.2

- Fix settings cookies expiration as reported by [ValiumBear](https://github.com/ValiumBear) [in](https://github.com/corenting/eddrit/issues/143)
- Fix settings cookies expiration as reported by [ValiumBear](https://github.com/ValiumBear) in [#143](https://github.com/corenting/eddrit/issues/143)
- Fix search page not working

# Version 0.8.1
Expand Down
2 changes: 1 addition & 1 deletion eddrit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from eddrit import config

__version__ = "0.8.3"
__version__ = "0.8.4"

logger.remove()
logger.add(sys.stderr, level=config.LOG_LEVEL)
2 changes: 1 addition & 1 deletion eddrit/reddit/fetch.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ async def get_frontpage_posts(
) -> tuple[list[models.Post], models.Pagination]:
ret = await _get_posts_for_url(
http_client,
f"{get_reddit_base_url()}/.json",
f"{get_reddit_base_url()}/.json?geo_filter=GLOBAL",
pagination,
is_popular_or_all=True,
)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "eddrit"
version = "0.8.3"
version = "0.8.4"
description = "Alternative Reddit frontend"
authors = ["corenting <corenting@gmail.com>"]
license = "MIT"
Expand Down

0 comments on commit f61185f

Please sign in to comment.