Commit Graph

989 Commits

Author SHA1 Message Date
CutestNekoAqua
d0a3c2c2b7 remove not needed middleware handlers 2023-02-23 15:46:12 +01:00
CutestNekoAqua
f5537af8a1 aaa 2023-02-23 00:31:14 +01:00
CutestNekoAqua
684f2e883a fix mastodon api stats 2023-02-22 09:44:47 +01:00
ThatOneCalculator
de17a10bb6
fix: 🐛 Don't show image previews if NSFW
Closes #9636
2023-02-18 12:02:25 -08:00
ThatOneCalculator
8f2ae33511
Masto API meta 2023-02-18 11:58:02 -08:00
ThatOneCalculator
2d59e363c0
feat: Show time for users 2023-02-18 11:33:25 -08:00
CutestNekoAqua
0c73344966 fix oopsie 2023-02-18 17:24:58 +01:00
CutestNekoAqua
d418fee933 debug print users 2023-02-18 17:22:43 +01:00
CutestNekoAqua
22ce676cf9 make relationshiops work 2023-02-18 17:14:16 +01:00
daikei
09ad8b9621 Merge branch 'develop' into develop 2023-02-17 21:12:04 +00:00
ThatOneCalculator
7a88a0dedd
chore: formatting 2023-02-17 13:01:14 -08:00
ThatOneCalculator
d5508535b9
chore: remove hard-to-see gradient 2023-02-17 00:16:35 -08:00
ThatOneCalculator
9469e4d399
perf: emoji lib performance fix 2023-02-17 00:01:22 -08:00
ThatOneCalculator
071071663e
fix: 🐛 pagination for "/api/channels/followed"
Co-authored-by: takonomura <@takonomura@github.com>
2023-02-15 10:31:10 -08:00
ThatOneCalculator
81cc4b3f49
fix: 💄 admin overview style 2023-02-13 20:21:42 -08:00
ThatOneCalculator
22188b9709
attempt fix 2023-02-13 19:48:57 -08:00
cutestnekoaqua
0cc81624b5
try again 2023-02-13 20:41:42 +01:00
cutestnekoaqua
e923172bec
actually return value 2023-02-13 20:38:11 +01:00
cutestnekoaqua
45929f95f4
uwu 2023-02-13 20:36:13 +01:00
cutestnekoaqua
44990a1ddb
mew 2023-02-13 20:28:23 +01:00
ThatOneCalculator
e9d55ff44b
chore: formatting 2023-02-13 11:17:07 -08:00
cutestnekoaqua
48b53428d0
Revert "parse query stuff with bools"
This reverts commit 4eb695f3c3.
2023-02-13 19:39:14 +01:00
cutestnekoaqua
4eb695f3c3
parse query stuff with bools 2023-02-13 19:34:41 +01:00
cutestnekoaqua
8a69a9c90e
initial bool parsing in mastodon 2023-02-13 18:54:38 +01:00
cutestnekoaqua
ad46ccfd33
nya 2023-02-13 17:08:48 +01:00
cutestnekoaqua
b1ef858b49
meow 2023-02-13 17:02:51 +01:00
cutestnekoaqua
9dd3ad6445
changes typings 2023-02-13 16:58:42 +01:00
cutestnekoaqua
14f40f0051
change types 2023-02-13 16:58:18 +01:00
cutestnekoaqua
a480e1be55
add debug to error 2023-02-13 16:53:56 +01:00
cutestnekoaqua
113a1ebe59
basic account lookup 2023-02-13 16:12:21 +01:00
cutestnekoaqua
68b2dcfd75
feat: #9614 2023-02-13 15:12:21 +01:00
ThatOneCalculator
abff66eada
fix: 🐛 first user gets admin
Closes #9620

Co-authored-by: @Johann150
2023-02-12 20:19:16 -08:00
ThatOneCalculator
9f8bebf5f8
Merge branch 'develop' of codeberg.org:calckey/calckey into develop 2023-02-12 12:07:15 -08:00
ThatOneCalculator
4fe24fec1a
feat: remote featured notes 2023-02-12 12:07:07 -08:00
Kio-td
ec79e1c143 Merge branch 'develop' of https://codeberg.org/calckey/calckey into develop 2023-02-12 12:11:21 -05:00
Kaity A
f2371daff3 invalidate local user cache on user update 2023-02-12 07:54:59 +00:00
ThatOneCalculator
b30814913f
fix: correct megalodon import 2023-02-11 17:23:30 -08:00
ThatOneCalculator
69da6fa295
chore: formatting 2023-02-11 17:22:05 -08:00
Kaity A
4ca445b587 Implementation of an instances wide antenna source. (#9604)
This PR contains new source for antenna posts, which is a list of instance hostnames to process all posts from.

Using this mode, a user can filter for keywords on an instance wide basis.

This change includes a new antenna source called `instances` and a new database column in the `antenna` table called `instances` to store the instance names.

On the antenna editor, there's also an "Add an instance" finder dialog to allow users to search through the known instance hostnames.

Co-authored-by: Kaity A <supakaity@blahaj.zone>
Reviewed-on: https://codeberg.org/calckey/calckey/pulls/9604
Co-authored-by: Kaity A <supakaity@noreply.codeberg.org>
Co-committed-by: Kaity A <supakaity@noreply.codeberg.org>
2023-02-12 01:20:17 +00:00
Kaity A
653c71dad5 Enable reply update/display in detailed view. (#9606)
This PR establishes a new replied note stream update for subscribed notes, which gets fired off whenever a note receives a reply and the user is subscribed to the note for updates.

It specifically does not provide note details as part of the update, just the note id of the reply, so that they must go and retrieve the note and be subject to the proper permission and visibility checks.

The detailed note component has then been updated to watch for the replied notification so it can add new replies to the thread as they are created.

This allows both seeing new replies while on the page, and also to see your own replies appear after you post them without having to reload the page.

This PR relies on https://codeberg.org/calckey/calckey.js/pulls/2 to add the replied type to the calkey.js module.

Co-authored-by: Kaity A <supakaity@blahaj.zone>
Reviewed-on: https://codeberg.org/calckey/calckey/pulls/9606
Co-authored-by: Kaity A <supakaity@noreply.codeberg.org>
Co-committed-by: Kaity A <supakaity@noreply.codeberg.org>
2023-02-12 01:19:43 +00:00
Kainoa Kanter
5c88cef03b Merge pull request 'fix: 🐛 100vh body background color' (#9608) from GeopJr/calckey:fix/100vh-body-bg-color into develop
Reviewed-on: https://codeberg.org/calckey/calckey/pulls/9608
2023-02-12 00:29:33 +00:00
ThatOneCalculator
cbdd09dd4a
Merge branch 'develop' of codeberg.org:calckey/calckey into develop 2023-02-11 16:22:00 -08:00
ThatOneCalculator
3e1048d3b1
chore: calckey megalodon 2023-02-11 16:20:57 -08:00
cutestnekoaqua
6eee77cbc5
is this too spec? 2023-02-12 00:35:39 +01:00
cutestnekoaqua
69efbf8fda
oof 2023-02-12 00:33:52 +01:00
cutestnekoaqua
b862402ce9
eow 2023-02-12 00:29:52 +01:00
cutestnekoaqua
63cd831cf6
simplify code 2023-02-12 00:25:51 +01:00
cutestnekoaqua
7ea17df2ba
try this instead 2023-02-12 00:19:35 +01:00
cutestnekoaqua
209cd8a7c8
refine error msg 2023-02-12 00:14:03 +01:00
cutestnekoaqua
631355c2c8
add account lookup 2023-02-12 00:10:10 +01:00