mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-16 06:28:27 +02:00
MESSENGER-5047 Release Bundesmessenger
This commit is contained in:
@@ -1,3 +1,29 @@
|
|||||||
|
Changes in BWI project 2.9.0 (2023-08-31)
|
||||||
|
===================================================
|
||||||
|
|
||||||
|
Upstream merge ✨:
|
||||||
|
|
||||||
|
- v1.10.14
|
||||||
|
|
||||||
|
Features ✨:
|
||||||
|
|
||||||
|
Improvements 🙌:
|
||||||
|
- Maintenance fixes (#4979, #4976)
|
||||||
|
- Maintenance ignore blocking (#4982)
|
||||||
|
- Maintenance adhoc messages (#4295)
|
||||||
|
- Maintenance time zone change (#5071)
|
||||||
|
- Huddle set correct rights (#5035, #4928)
|
||||||
|
|
||||||
|
Bugfix 🐛:
|
||||||
|
- Crosssigning web
|
||||||
|
|
||||||
|
Translations 🗣 :
|
||||||
|
|
||||||
|
SDK API changes ⚠️:
|
||||||
|
|
||||||
|
Build 🧱:
|
||||||
|
|
||||||
|
|
||||||
Changes in BWI project 2.8.0 (2023-08-03)
|
Changes in BWI project 2.8.0 (2023-08-03)
|
||||||
===================================================
|
===================================================
|
||||||
|
|
||||||
|
|||||||
2
Podfile
2
Podfile
@@ -43,7 +43,7 @@ when String # specific MatrixSDK released version
|
|||||||
$matrixSDKVersionSpec = $matrixSDKVersion
|
$matrixSDKVersionSpec = $matrixSDKVersion
|
||||||
end
|
end
|
||||||
|
|
||||||
$matrixSDKVersionSpec = { :git => 'https://dl-gitlab.example.com/bwmessenger/bundesmessenger/bundesmessenger-ios-sdk', :tag => 'v2.9.0_rc3' }
|
$matrixSDKVersionSpec = { :git => 'https://dl-gitlab.example.com/bwmessenger/bundesmessenger/bundesmessenger-ios-sdk', :tag => 'v2.9.0' }
|
||||||
|
|
||||||
# Method to import the MatrixSDK
|
# Method to import the MatrixSDK
|
||||||
def import_MatrixSDK
|
def import_MatrixSDK
|
||||||
|
|||||||
@@ -26,6 +26,33 @@
|
|||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
<b>Version 2.9.0</b>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<b>Neue Funktionen</b>
|
||||||
|
<ul>
|
||||||
|
<li/>Detailierte Abstimmungsergebnisse von Umfragen können jetzt auch im Umfragenverlauf eingesehen werden.
|
||||||
|
</ul>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<b>Verbesserungen</b>
|
||||||
|
<ul>
|
||||||
|
<li/>Wir haben die Schnittstelle für Wartungsfenster erweitert und können jetzt besser über kommende Ereignisse informieren.
|
||||||
|
</ul>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<b>Behobene Bugs</b>
|
||||||
|
<ul>
|
||||||
|
<li/>Die Verifizierung von Websessions ist jetzt zuverlässiger.
|
||||||
|
</ul>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<p>
|
<p>
|
||||||
<b>Version 2.8.0</b>
|
<b>Version 2.8.0</b>
|
||||||
|
|||||||
@@ -75,10 +75,16 @@ final class KeyVerificationSelfVerifyWaitViewController: UIViewController {
|
|||||||
|
|
||||||
self.registerThemeServiceDidChangeThemeNotification()
|
self.registerThemeServiceDidChangeThemeNotification()
|
||||||
self.update(theme: self.theme)
|
self.update(theme: self.theme)
|
||||||
|
}
|
||||||
|
|
||||||
|
// BWI resend verificationrequest after cancling QR Code crosssigning
|
||||||
|
override func viewDidAppear(_ animated: Bool) {
|
||||||
|
super.viewDidAppear(animated)
|
||||||
|
|
||||||
self.viewModel.viewDelegate = self
|
self.viewModel.viewDelegate = self
|
||||||
self.viewModel.process(viewAction: .loadData)
|
self.viewModel.process(viewAction: .loadData)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
override var preferredStatusBarStyle: UIStatusBarStyle {
|
override var preferredStatusBarStyle: UIStatusBarStyle {
|
||||||
return self.theme.statusBarStyle
|
return self.theme.statusBarStyle
|
||||||
|
|||||||
@@ -36,6 +36,10 @@ struct NotificationTimesView: View {
|
|||||||
@AppStorage("NotificationTimes_selectedDay") var selectedDay: Int = 0
|
@AppStorage("NotificationTimes_selectedDay") var selectedDay: Int = 0
|
||||||
@State var weekdays: [NotificationTimesWeekday]
|
@State var weekdays: [NotificationTimesWeekday]
|
||||||
@State var hasChanges = false
|
@State var hasChanges = false
|
||||||
|
|
||||||
|
// MARK: Private
|
||||||
|
|
||||||
|
@Environment(\.theme) private var theme
|
||||||
|
|
||||||
var session: MXSession?
|
var session: MXSession?
|
||||||
|
|
||||||
@@ -83,6 +87,7 @@ struct NotificationTimesView: View {
|
|||||||
.disabled(!hasChanges)
|
.disabled(!hasChanges)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.background(theme.colors.background)
|
||||||
}
|
}
|
||||||
|
|
||||||
private func onDoneButton() {
|
private func onDoneButton() {
|
||||||
|
|||||||
Reference in New Issue
Block a user