New File Sharing APIs #91

Merged
sarah merged 3 commits from filesharing-persist into trunk 2022-07-06 19:48:26 +00:00
2 changed files with 5 additions and 1 deletions
Showing only changes of commit a558ce67d6 - Show all commits

View File

@ -30,3 +30,6 @@ const StateSelectedProfileTime = "state-selected-profile-time"
const BlockUnknownPeersSetting = "blockunknownpeers"
const LocaleSetting = "locale"
const ZoomSetting = "zoom"
// App Experiments
const MessageFormattingExperiment = "message-formatting"

View File

@ -1,6 +1,7 @@
package utils
import (
"git.openprivacy.ca/cwtch.im/libcwtch-go/constants"
path "path/filepath"
"sync"
@ -65,7 +66,7 @@ var DefaultGlobalSettings = GlobalSettings{
Theme: "dark",
PreviousPid: -1,
ExperimentsEnabled: false,
Experiments: make(map[string]bool),
Experiments: map[string]bool{constants.MessageFormattingExperiment: true},
StateRootPane: 0,
FirstTime: true,
BlockUnknownConnections: false,