Final changes before release branch

This commit is contained in:
Arnfried Griesert
2023-08-04 12:02:43 +00:00
parent c6305b0ed4
commit e213313374
6 changed files with 56 additions and 5 deletions

View File

@@ -1,3 +1,27 @@
Changes in BWI project 2.8.0 (2023-08-03)
===================================================
Upstream merge ✨:
- v1.10.14
Features ✨:
- New show participants toggle for polls (#4393)
Improvements 🙌:
- Migration progress information (#4905)
- Additional information for maintance (#4295)
- Poll history information (#4484)
- Notification times (#3580)
Bugfix 🐛:
Translations 🗣 :
SDK API changes ⚠️:
Build 🧱:
Changes in BWI project 2.7.0 (2023-07-04)
===================================================
@@ -27,7 +51,7 @@ Bugfix 🐛:
- Show app logo in pin code screen (#4828)
- Update "all chats" filter on logout/login (#4573)
Translations 🗣 :
Translations 🗣 :
- English translations passphrase (#4706)
SDK API changes ⚠️:

View File

@@ -504,7 +504,7 @@ class BWIBuildSettings: NSObject {
var passwordIndicatorOnLogin = true
// MARK: Displays the element base version on the settings screen
var elementBaseVersion = "1.10.12"
var elementBaseVersion = "1.10.14"
var showElementBaseVersion = true

View File

@@ -43,7 +43,7 @@ when String # specific MatrixSDK released version
$matrixSDKVersionSpec = $matrixSDKVersion
end
$matrixSDKVersionSpec = { :git => 'https://dl-gitlab.example.com/bwmessenger/bundesmessenger/bundesmessenger-ios-sdk', :tag => 'v0.26.12_bwi_beta_4905' }
$matrixSDKVersionSpec = { :git => 'https://dl-gitlab.example.com/bwmessenger/bundesmessenger/bundesmessenger-ios-sdk', :tag => 'v0.26.12_bwi_beta_3' }
# Method to import the MatrixSDK
def import_MatrixSDK

View File

@@ -26,6 +26,33 @@
</style>
</head>
<body>
<div>
<p>
<b>Version 2.8.0</b>
</p>
<p>
<b>Neue Funktionen</b>
<ul>
<li/>Umfragen lassen sich jetzt so konfigurieren, dass man sehen kann wer für welche Antwortmöglichkeit gestimmt hat sobald man selbst an der Umfrage teilgenommen hat.
<li/>Mit dem neuen Feature Ruhezeiteneinstellung lassen sich Benachrichtigungen nach Wochentag und Uhrzeit ein- bzw stummschalten.
</ul>
</p>
<p>
<b>Verbesserungen</b>
<ul>
<li/>Der Code zur Verschlüsselung von Nachrichten wurde komplett neu geschrieben was die Performance und Stabilität verbessert.
</ul>
</p>
<p>
<b>Behobene Bugs</b>
<ul>
<li/>Der Hinweis auf Wartungsfenster wurde in einigen Fällen nicht angezeigt so dass der Benutzer nicht informiert werden konnte ab wann der Server nicht erreichbar sein wird.
</ul>
</p>
</div>
<div>
<p>
<b>Version 2.7.0</b>

View File

@@ -23,7 +23,7 @@ struct ServerDowntime : Codable {
let endTime: String
let type: String
let description: String
let blocking: Bool
let blocking: Bool?
private enum CodingKeys: String, CodingKey {
case warningStartTime = "warning_start_time"

View File

@@ -313,7 +313,7 @@ extension ServerDowntimeDefaultService : ServerDowntimeService {
return false
}
return downTime.blocking
return downTime.blocking ?? false
}
@objc func saveCurrentStatus() {