* #92 Create `TimelineStyle` and store it in user defaults * #92 Create `TimelineStyler` observable environment object * #92 Use timeline list row insets from the styler * #92 remove sender view, move header into the styler views * #92 Add timeline style option in settings * #92 Add changelog * #92 refactor some code duplications * #92 Fix `TimelineStyle`targets * #92 Fix `TimelineStyle` targets * #92 Fix PR remarks * #92 Fix inline PR comments * #92 Fix UI tests * #92 Rename bubbled to bubbles
30 lines
853 B
Swift
30 lines
853 B
Swift
//
|
|
// BuildSettings.swift
|
|
// ElementX
|
|
//
|
|
// Created by Ismail on 2.06.2022.
|
|
// Copyright © 2022 Element. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
final class BuildSettings {
|
|
|
|
// MARK: - Bug report
|
|
static let bugReportServiceBaseUrlString = "https://riot.im/bugreports"
|
|
static let bugReportSentryEndpoint = "https://f39ac49e97714316965b777d9f3d6cd8@sentry.tools.element.io/44"
|
|
// Use the name allocated by the bug report server
|
|
static let bugReportApplicationId = "riot-ios"
|
|
static let bugReportUISIId = "element-auto-uisi"
|
|
|
|
static let bugReportGHLabels: [String] = ["Element-X"]
|
|
|
|
// MARK: - Settings screen
|
|
static let settingsCrashButtonVisible: Bool = true
|
|
static let settingsShowTimelineStyle: Bool = true
|
|
|
|
// MARK: - Room screen
|
|
static let defaultRoomTimelineStyle: TimelineStyle = .bubbles
|
|
|
|
}
|