mirror of
https://iceshrimp.dev/limepotato/jormungandr-patches.git
synced 2024-11-09 12:51:25 -07:00
organize
This commit is contained in:
parent
8d5957fc1c
commit
7b70d6cf94
4 changed files with 31 additions and 2 deletions
|
@ -10,10 +10,11 @@ To apply a patch ``git am --keep-cr --signoff < {patch}``
|
||||||
|
|
||||||
### Explanations
|
### Explanations
|
||||||
|
|
||||||
- [Beep/Rebeeps/Creatures/Observers](./patches/beeps/): Renames Posts and Boosts to Beeps and Rebeeps respectively, as well as Users to Creatures, and Followers/Following to Observers/Observing
|
- [Beep/Rebeeps/Creatures](./patches/beeps/): Renames Posts and Boosts to Beeps and Rebeeps respectively, as well as Users to Creatures.
|
||||||
- [Builtin Catppuccin Themes](./patches/builtin-catppuccin-themes.patch): All catppuccin themes (and accents), built-in
|
- [Builtin Catppuccin Themes](./patches/builtin-catppuccin-themes.patch): All catppuccin themes (and accents), built-in
|
||||||
- [Configurable Pinned Post Limit](./patches/configurable-pinLimit.patch): Allows admin to configure pinned post limit in config file
|
- [Configurable Pinned Post Limit](./patches/configurable-pinLimit.patch): Allows admin to configure pinned post limit in config file
|
||||||
- [Fix Find Server Link](./patches/fix-findserver-link.patch): the link for "Find servers" on the signup page for locked registration instances leads to a dead page, so this replaces the link with fedidb.org
|
- [Fix Find Server Link](./patches/fix-findserver-link.patch): the link for "Find servers" on the signup page for locked registration instances leads to a dead page, so this replaces the link with fedidb.org
|
||||||
- [Remove Maintainer-info Nag](./patches/remove-maintainer-info-nag.patch): Removes nag if you dont input maintainer information
|
- [Remove Maintainer-info Nag](./patches/remove-maintainer-info-nag.patch): Removes nag if you dont input maintainer information
|
||||||
- [Post Form Height](./patches/textarea.patch): Increases the post form height for usability
|
- [Post Form Height](./patches/textarea.patch): Increases the post form height for usability
|
||||||
- [Remove Chats](./patches/remove-messaging.patch): Removes the pages and buttons referring to the local chats feature
|
- [Remove Chats](./patches/remove-messaging.patch): Removes the pages and buttons referring to the local chats feature
|
||||||
|
- [Observers] Renames Followers/Following to Observers/Observing, as well as replaces the hand icon with an eye
|
6
patches/Observers/README.md
Normal file
6
patches/Observers/README.md
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
# Observers Patch
|
||||||
|
|
||||||
|
The observers patch, assumes you have applied beeps, repeeps, creatures, and iceshrimp-bite.
|
||||||
|
|
||||||
|
[Observers Lang Patch](./observers.patch)
|
||||||
|
[Change following icon to an eye](./eyefollow.patch)
|
22
patches/Observers/eyefollow.patch
Normal file
22
patches/Observers/eyefollow.patch
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
From 3770a44c3a8f2f71c815d07a38671f91cc5cad12 Mon Sep 17 00:00:00 2001
|
||||||
|
From: limepotato <limepot@protonmail.ch>
|
||||||
|
Date: Thu, 11 Jul 2024 11:54:32 -0600
|
||||||
|
Subject: [PATCH] replace follow notif icon with open eye (hopefully)
|
||||||
|
|
||||||
|
---
|
||||||
|
packages/client/src/components/MkNotification.vue | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/packages/client/src/components/MkNotification.vue b/packages/client/src/components/MkNotification.vue
|
||||||
|
index 80f6b3ac2..71a007300 100644
|
||||||
|
--- a/packages/client/src/components/MkNotification.vue
|
||||||
|
+++ b/packages/client/src/components/MkNotification.vue
|
||||||
|
@@ -25,7 +25,7 @@
|
||||||
|
<div class="sub-icon" :class="notification.type">
|
||||||
|
<i
|
||||||
|
v-if="notification.type === 'follow'"
|
||||||
|
- class="ph-hand-waving ph-bold"
|
||||||
|
+ class="ph-eye ph-bold"
|
||||||
|
></i>
|
||||||
|
<i
|
||||||
|
v-else-if="notification.type === 'receiveFollowRequest'"
|
Loading…
Reference in a new issue