Commit Graph

2220 Commits

Author SHA1 Message Date
ThatOneCalculator
af15d08bd6 fix: correctly display links to self instance URL
Closes #9270

Co-authored-by: GitHub <futchitwo>
2023-05-02 14:45:09 -07:00
Kaity A
38a35bda27 Readd deepClone and move updated into note capture 2023-05-02 22:42:33 +10:00
Kaity A
3731ae82ee allow upstream note updates to propogate 2023-05-02 19:32:36 +10:00
Kaity A
469bee64b1 allow upstream note updates to propogate 2023-05-02 19:30:05 +10:00
Kaity A
5bfe6c0730 Merge remote-tracking branch 'origin/develop' into hk/edit-federation 2023-05-02 18:24:54 +10:00
ThatOneCalculator
eec5c86cb3 disable post imports for now 2023-05-01 23:08:35 -07:00
ThatOneCalculator
59d9811e21 import correctly 2023-05-01 21:09:48 -07:00
ThatOneCalculator
04ce30ffb2 how in the world does this keep getting reversed 2023-05-01 20:54:02 -07:00
ThatOneCalculator
2d0ace0685 chore: formatting 2023-05-01 20:32:18 -07:00
Freeplay
b7b7d6cce4 bring back Show More component 2023-05-01 17:02:43 -04:00
Cleo
cb2fefef19 Fixing post visibility patch
Co-authored-by: Laura Hausmann <laura@hausmann.dev>
2023-05-01 15:42:27 +00:00
Namekuji
7a23aa57e4 Merge branch 'develop' into instance-silence 2023-04-30 22:02:04 -04:00
ThatOneCalculator
d3f7b4c18a chore: theme refactor 2023-04-30 17:57:04 -07:00
Namekuji
2072d41fcd Merge branch 'develop' into instance-silence 2023-04-30 17:52:05 -04:00
Namekuji
c8de7d818c add silenced colour 2023-04-30 17:45:45 -04:00
Namekuji
688d283986 fix params 2023-04-30 17:32:14 -04:00
Namekuji
7c08ea3232 fix meta fetch 2023-04-30 17:06:43 -04:00
ThatOneCalculator
1fb5635a4d chore: format 2023-04-30 13:27:27 -07:00
Kainoa Kanter
4b3a2407c3 Merge pull request 'chore: update mfm-cheat-sheet' (#9967) from naskya/calckey:chore/mfm-cheat-sheet into develop
Reviewed-on: https://codeberg.org/calckey/calckey/pulls/9967
2023-04-30 19:37:35 +00:00
Freeplay
7e2d5c45d2 Merge branch 'develop' of https://codeberg.org/calckey/calckey into keyboard-accessability 2023-04-30 12:31:41 -04:00
Kaity A
6a509637d5 Implement inbound note edit federation 2023-05-01 02:29:50 +10:00
Freeplay
affeb55c01 Fix jumping to top of page when opening menu
I also thought this would maybe fix one of the focustrap errors in the console, but no.
2023-04-30 11:58:36 -04:00
Namekuji
f0b4e10735 use tab instead of page header 2023-04-30 11:47:39 -04:00
naskya
1d37e78ca2 use new styling method 2023-04-30 23:28:17 +09:00
naskya
0db337b977 more search syntax (although it doesn't appear since the description of the search syntax is commented out) 2023-04-30 23:24:19 +09:00
naskya
426f47fdad add blockMath 2023-04-30 23:18:39 +09:00
Namekuji
f2a8d1f680 add toggler 2023-04-30 09:01:42 -04:00
Namekuji
c35f03832d format 2023-04-30 08:08:45 -04:00
Namekuji
ce60660128 instance silence 2023-04-30 07:27:55 -04:00
ThatOneCalculator
622c2fa499 Merge remote-tracking branch 'weblate/develop' into develop 2023-04-29 19:52:43 -07:00
ThatOneCalculator
9336b6dab0 Revert "Merge pull request 'Add show more button to notifications' (#9942) from Freeplay/calckey:notifications into develop"
This reverts commit 8cb321b110dca7f8020f8a7a9af6a49308a0c036, reversing
changes made to 133391122b77c92bff6e0e94f40cfdea542c6f35.
2023-04-29 19:38:26 -07:00
ThatOneCalculator
ee872b3628 Merge branch 'develop' of codeberg.org:calckey/calckey into develop 2023-04-29 19:15:47 -07:00
ThatOneCalculator
1051da8fbf Revert "keyboard accessibility (#9725)"
This reverts commit c1d5922acbe7060c0ea779ccf314e9f0e6b91bb3.
2023-04-29 19:14:36 -07:00
Kaity A
f9a72e1ea6 Add Libre Translate support 2023-04-30 11:09:51 +10:00
Free
08686da50e keyboard accessibility (#9725)
Reviewed-on: https://codeberg.org/calckey/calckey/pulls/9725
Co-authored-by: Free <freeplay@duck.com>
Co-committed-by: Free <freeplay@duck.com>
2023-04-29 22:30:14 +00:00
naskya
dbc608a6c8 fix: centering block math (#9946)
Similar to `inlineCode` and `blockCode`, MFM provides two types of formula syntax, `mathInline` and `mathBlock` (I'm curious why these aren't called `inlineMath`/`blockMath`, but oh well)

Other platforms, like GitHub, **Math**todon, my blog, etc., also support these two types of formula representation, and math blocks are centered on (maybe) all such platforms.

![](https://cdn.discordapp.com/attachments/823878222897741868/1101837026304720997/2023-04-29_201943.png)

But Calckey (Misskey v12) don't center math blocks. I'd say this is a bug, and this makes `blockMath` useless (it's just `inlineMath` in a new line).

![](https://cdn.discordapp.com/attachments/823878222897741868/1101837026027917342/2023-04-29_202008.png)

So I fixed this.

![](https://cdn.discordapp.com/attachments/823878222897741868/1101837183574355978/2023-04-29_202854.png)

Co-authored-by: naskya <m@naskya.net>
Reviewed-on: https://codeberg.org/calckey/calckey/pulls/9946
Co-authored-by: naskya <naskya@noreply.codeberg.org>
Co-committed-by: naskya <naskya@noreply.codeberg.org>
2023-04-29 14:01:24 +00:00
Freeplay
d1cdd58bc1 a 2023-04-29 09:56:28 -04:00
Freeplay
740082a011 Merge branch 'develop' of https://codeberg.org/calckey/calckey into keyboard-accessability 2023-04-29 09:48:10 -04:00
naskya
3e952b3472 chore: update icons on post form 2023-04-29 14:08:11 +09:00
Freeplay
cd4130e22b a 2023-04-28 23:47:13 -04:00
Freeplay
ba21f54469 outline fixes 2023-04-28 23:26:19 -04:00
Freeplay
205c634d41 classic view fixes 2023-04-28 23:18:01 -04:00
Freeplay
a66b334c3f widgets 2023-04-28 22:50:32 -04:00
Freeplay
3647f78747 sidebar focus 2023-04-28 22:40:23 -04:00
Freeplay
bd31d5d0af fix 2023-04-28 22:24:40 -04:00
Freeplay
d21de526ed a 2023-04-28 22:19:02 -04:00
Freeplay
d096d7ea9a focus to media 2023-04-28 22:17:39 -04:00
Freeplay
739e0331a8 make folder dropdown focusable 2023-04-28 22:04:35 -04:00
Freeplay
e52b3cef77 Make accounts in account management page focusable 2023-04-28 21:49:41 -04:00
Freeplay
d8a6ce64a3 Fix focusing avatars in weird places 2023-04-28 21:39:48 -04:00