Compare commits

..

No commits in common. "bb63ae8469d3906f8d92b9e3f27b97c81a71d398" and "de8d18f9e9518aaa9c169f37a40d315be9c5b658" have entirely different histories.

3 changed files with 12 additions and 12 deletions

View File

@ -1,6 +1,12 @@
{ {
"sourceLanguage" : "en", "sourceLanguage" : "en",
"strings" : { "strings" : {
"\n" : {
},
"\n\n" : {
},
"agent_not_running_notice_title" : { "agent_not_running_notice_title" : {
"localizations" : { "localizations" : {
"de" : { "de" : {
@ -3362,12 +3368,6 @@
"value" : "Secretive %1$@" "value" : "Secretive %1$@"
} }
}, },
"pt-BR" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secretive %1$@"
}
},
"zh-Hans" : { "zh-Hans" : {
"stringUnit" : { "stringUnit" : {
"state" : "translated", "state" : "translated",

View File

@ -26,7 +26,7 @@ struct SetupView: View {
} }
} }
} }
.frame(minWidth: 500, idealWidth: 500, minHeight: 500, idealHeight: 500) .frame(idealWidth: 500, idealHeight: 500)
} }

View File

@ -42,16 +42,16 @@ struct UpdateDetailView<UpdaterType: Updater>: View {
if let prefix = split.first { if let prefix = split.first {
switch prefix { switch prefix {
case "#": case "#":
attributed = Text(unprefixed).font(.title) + Text(verbatim: "\n") attributed = Text(unprefixed).font(.title) + Text("\n")
case "##": case "##":
attributed = Text(unprefixed).font(.title2) + Text(verbatim: "\n") attributed = Text(unprefixed).font(.title2) + Text("\n")
case "###": case "###":
attributed = Text(unprefixed).font(.title3) + Text(verbatim: "\n") attributed = Text(unprefixed).font(.title3) + Text("\n")
default: default:
attributed = Text(line) + Text(verbatim: "\n\n") attributed = Text(line) + Text("\n\n")
} }
} else { } else {
attributed = Text(line) + Text(verbatim: "\n\n") attributed = Text(line) + Text("\n\n")
} }
text = text + attributed text = text + attributed
} }