Skip to content

Commit 8799e3a

Browse files
author
ashariyar
committed
Add user filtering; Implement a real incremental load
1 parent 551c221 commit 8799e3a

File tree

17 files changed

+183
-96
lines changed

17 files changed

+183
-96
lines changed

CHANGELOG.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
## NEXT
22

3-
## 0.6.1
3+
## `0.7.0`
4+
* Add filtering based on username
5+
* Implement a real incremental load
6+
7+
## `0.6.1`
48
* Convert the filtering of sources to the standard model
59
* [bug] Fix doublecounting of toot categories
610

7-
## 0.6.0
11+
## `0.6.0`
812
* Allow inverting filters for apps and languages (not just hashtags)
913
* Standardize a `FilterSection` object structure for app, language, hashtag, etc. filtering
1014

11-
## 0.5.1
15+
## `0.5.1`
1216
* Rudimentary ability to keep loading more toots in the background after delivering the first batch
1317

1418
## `0.5.0`

dist/config.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/config.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/feeds/homeFeed.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
import { mastodon } from "masto";
22
import { Toot } from "../types";
3-
export default function getHomeFeed(api: mastodon.rest.Client, numToots?: number | null): Promise<Toot[]>;
3+
export default function getHomeFeed(api: mastodon.rest.Client, numToots?: number | null, maxId?: string | number | null): Promise<Toot[]>;

dist/feeds/homeFeed.js

Lines changed: 14 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/feeds/homeFeed.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/helpers.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)