forked from AkkomaGang/akkoma
Add conversationDisplay to settings
This commit is contained in:
parent
6223e2ea3e
commit
de1bbc0281
2 changed files with 9 additions and 10 deletions
|
@ -312,7 +312,6 @@
|
||||||
logo: "/static/logo.svg",
|
logo: "/static/logo.svg",
|
||||||
logoMargin: ".1em",
|
logoMargin: ".1em",
|
||||||
logoMask: true,
|
logoMask: true,
|
||||||
minimalScopesMode: false,
|
|
||||||
noAttachmentLinks: false,
|
noAttachmentLinks: false,
|
||||||
nsfwCensorImage: "",
|
nsfwCensorImage: "",
|
||||||
postContentType: "text/plain",
|
postContentType: "text/plain",
|
||||||
|
@ -324,7 +323,8 @@
|
||||||
showInstanceSpecificPanel: false,
|
showInstanceSpecificPanel: false,
|
||||||
subjectLineBehavior: "email",
|
subjectLineBehavior: "email",
|
||||||
theme: "pleroma-dark",
|
theme: "pleroma-dark",
|
||||||
webPushNotifications: false
|
webPushNotifications: false,
|
||||||
|
conversationDisplay: "linear"
|
||||||
},
|
},
|
||||||
masto_fe: %{
|
masto_fe: %{
|
||||||
showInstanceSpecificPanel: true
|
showInstanceSpecificPanel: true
|
||||||
|
|
|
@ -1226,6 +1226,13 @@
|
||||||
type: :boolean,
|
type: :boolean,
|
||||||
description: "Enables green text on lines prefixed with the > character"
|
description: "Enables green text on lines prefixed with the > character"
|
||||||
},
|
},
|
||||||
|
%{
|
||||||
|
key: :conversationDisplay,
|
||||||
|
label: "Conversation display style",
|
||||||
|
type: :string,
|
||||||
|
description: "How to display conversations (linear or tree)",
|
||||||
|
suggestions: ["linear", "tree"]
|
||||||
|
},
|
||||||
%{
|
%{
|
||||||
key: :hideFilteredStatuses,
|
key: :hideFilteredStatuses,
|
||||||
label: "Hide Filtered Statuses",
|
label: "Hide Filtered Statuses",
|
||||||
|
@ -1274,14 +1281,6 @@
|
||||||
"By default it assumes logo used will be monochrome with alpha channel to be compatible with both light and dark themes. " <>
|
"By default it assumes logo used will be monochrome with alpha channel to be compatible with both light and dark themes. " <>
|
||||||
"If you want a colorful logo you must disable logoMask."
|
"If you want a colorful logo you must disable logoMask."
|
||||||
},
|
},
|
||||||
%{
|
|
||||||
key: :minimalScopesMode,
|
|
||||||
label: "Minimal scopes mode",
|
|
||||||
type: :boolean,
|
|
||||||
description:
|
|
||||||
"Limit scope selection to Direct, User default, and Scope of post replying to. " <>
|
|
||||||
"Also prevents replying to a DM with a public post from PleromaFE."
|
|
||||||
},
|
|
||||||
%{
|
%{
|
||||||
key: :nsfwCensorImage,
|
key: :nsfwCensorImage,
|
||||||
label: "NSFW Censor Image",
|
label: "NSFW Censor Image",
|
||||||
|
|
Loading…
Reference in a new issue