commit 216029410b61e0268a754ae135b5c5f2aa2be2db parent a5b2a5c8b9e65c557d5244a53584c4fc79c04d8b Author: William Casarin <jb55@jb55.com> Date: Fri, 23 Jun 2023 11:48:12 +0200 nozaps: add nozaps setting This will be used to restore functionality in the future Diffstat:
M | damus/Models/UserSettingsStore.swift | | | 4 | ++++ |
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/damus/Models/UserSettingsStore.swift b/damus/Models/UserSettingsStore.swift @@ -126,6 +126,10 @@ class UserSettingsStore: ObservableObject { @Setting(key: "truncate_timeline_text", default_value: false) var truncate_timeline_text: Bool + /// Nozaps mode gimps note zapping to fit into apple's content-tipping guidelines. It can not be configurable to end-users on the app store + @Setting(key: "nozaps", default_value: true) + var nozaps: Bool + @Setting(key: "truncate_mention_text", default_value: true) var truncate_mention_text: Bool