feat(RES-33): Generation de l'architecture compatible Swift 6 (#13)
Some checks failed
gitea-openium/resgen.swift/pipeline/head There was a failure building this commit
Some checks failed
gitea-openium/resgen.swift/pipeline/head There was a failure building this commit
Reviewed-on: #13
This commit is contained in:
parent
57cedd37bb
commit
8442c89944
@ -55,7 +55,7 @@ struct ConfigurationArchitecture: Codable {
|
||||
|
||||
func getClass(generateStaticProperty: Bool = true) -> String {
|
||||
guard children?.isEmpty == false else {
|
||||
return "class \(classname) {}"
|
||||
return "final class \(classname): Sendable {}"
|
||||
}
|
||||
|
||||
let classDefinition = [
|
||||
|
@ -73,7 +73,7 @@ struct ParsedImage {
|
||||
Images.exit(withError: error)
|
||||
}
|
||||
|
||||
return String(data: data, encoding: .utf8)
|
||||
return String(decoding: data, as: UTF8.self)
|
||||
}
|
||||
|
||||
func generateImageContent(isVector: Bool) -> AssetContent {
|
||||
|
@ -137,9 +137,7 @@ class StringsFileGenerator {
|
||||
|
||||
let json = try encoder.encode(rootObject)
|
||||
|
||||
if let jsonString = String(data: json, encoding: .utf8) {
|
||||
return jsonString
|
||||
}
|
||||
return String(decoding: json, as: UTF8.self)
|
||||
|
||||
} catch {
|
||||
debugPrint("Failed to encode: \(error)")
|
||||
|
Loading…
x
Reference in New Issue
Block a user