mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-05-09 17:37:43 +02:00
39 lines
1.2 KiB
Swift
39 lines
1.2 KiB
Swift
//
|
|
/*
|
|
* Copyright (c) 2022 BWI GmbH
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import Foundation
|
|
|
|
@objc class BwiNewFeatureHelper: NSObject {
|
|
|
|
@objc func replaceFeatureHistoryLink() {
|
|
guard let urlPath = Bundle.main.url(forResource: BWIBuildSettings.shared.newFeaturesHTML, withExtension: "html") else {
|
|
return
|
|
}
|
|
|
|
//reading
|
|
do {
|
|
var text = try String(contentsOf: urlPath, encoding: .utf8)
|
|
text = text.replacingOccurrences(of: "$FEATURELINK", with: BWIBuildSettings.shared.bwiFeatureHistoryLink)
|
|
try text.write(to: urlPath, atomically: false, encoding: .utf8)
|
|
}
|
|
catch {
|
|
|
|
}
|
|
}
|
|
}
|
|
|