cwtch/model/constants/experiments.go

22 lines
876 B
Go
Raw Permalink Normal View History

2021-12-19 00:15:05 +00:00
package constants
const GroupsExperiment = "tapir-groups-experiment"
2021-12-19 00:34:07 +00:00
// FileSharingExperiment Allows file sharing
2021-12-19 00:15:05 +00:00
const FileSharingExperiment = "filesharing"
2021-12-19 00:34:07 +00:00
// ImagePreviewsExperiment Causes images (up to ImagePreviewMaxSizeInBytes, from accepted contacts) to auto-dl and preview
2021-12-19 00:15:05 +00:00
// requires FileSharingExperiment to be enabled
const ImagePreviewsExperiment = "filesharing-images"
2021-12-19 00:34:07 +00:00
// ImagePreviewMaxSizeInBytes Files up to this size will be autodownloaded using ImagePreviewsExperiment
2021-12-19 00:15:05 +00:00
const ImagePreviewMaxSizeInBytes = 20971520
const MessageFormattingExperiment = "message-formatting"
2021-12-19 00:34:07 +00:00
// AutoDLFileExts Files with these extensions will be autodownloaded using ImagePreviewsExperiment
var AutoDLFileExts = [...]string{".jpg", ".jpeg", ".png", ".gif", ".webp", ".bmp"}
// BlodeuweddExperiment enables the Blodeuwedd Assistant
const BlodeuweddExperiment = "blodeuwedd"