diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 4a067b0..4b2df91 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -5,8 +5,8 @@ on: - cron: "0 8 * * *" jobs: build: -# runs-on: macOS-latest - runs-on: macos-13 +# runs-on: macOS-latest-xlarge + runs-on: macos-13-xlarge timeout-minutes: 10 steps: - uses: actions/checkout@v4 @@ -20,7 +20,7 @@ jobs: APPLE_API_KEY_ID: ${{ secrets.APPLE_API_KEY_ID }} run: ./.github/scripts/signing.sh - name: Set Environment - run: sudo xcrun xcode-select -s /Applications/Xcode_15.1.app + run: sudo xcrun xcode-select -s /Applications/Xcode_15.2.app - name: Update Build Number env: RUN_ID: ${{ github.run_id }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1a2d404..a64be2c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,8 +6,8 @@ on: - '*' jobs: test: -# runs-on: macOS-latest - runs-on: macos-13 +# runs-on: macOS-latest-xlarge + runs-on: macos-13-xlarge timeout-minutes: 10 steps: - uses: actions/checkout@v4 @@ -21,7 +21,7 @@ jobs: APPLE_API_KEY_ID: ${{ secrets.APPLE_API_KEY_ID }} run: ./.github/scripts/signing.sh - name: Set Environment - run: sudo xcrun xcode-select -s /Applications/Xcode_15.1.app + run: sudo xcrun xcode-select -s /Applications/Xcode_15.2.app - name: Test run: | pushd Sources/Packages @@ -43,7 +43,7 @@ jobs: APPLE_API_KEY_ID: ${{ secrets.APPLE_API_KEY_ID }} run: ./.github/scripts/signing.sh - name: Set Environment - run: sudo xcrun xcode-select -s /Applications/Xcode_15.1.app + run: sudo xcrun xcode-select -s /Applications/Xcode_15.2.app - name: Update Build Number env: TAG_NAME: ${{ github.ref }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bebae21..a7f3230 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,13 +3,13 @@ name: Test on: [push, pull_request] jobs: test: -# runs-on: macOS-latest - runs-on: macos-13 +# runs-on: macOS-latest-xlarge + runs-on: macos-13-xlarge timeout-minutes: 10 steps: - uses: actions/checkout@v4 - name: Set Environment - run: sudo xcrun xcode-select -s /Applications/Xcode_15.1.app + run: sudo xcrun xcode-select -s /Applications/Xcode_15.2.app - name: Test run: | pushd Sources/Packages diff --git a/Sources/Secretive/Localizable.xcstrings b/Sources/Secretive/Localizable.xcstrings index 85b760a..34c1307 100644 --- a/Sources/Secretive/Localizable.xcstrings +++ b/Sources/Secretive/Localizable.xcstrings @@ -1,12 +1,6 @@ { "sourceLanguage" : "en", "strings" : { - "\n" : { - - }, - "\n\n" : { - - }, "agent_not_running_notice_title" : { "localizations" : { "de" : { @@ -3428,6 +3422,12 @@ "value" : "Secretive %1$@" } }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Secretive %1$@" + } + }, "zh-Hans" : { "stringUnit" : { "state" : "translated", diff --git a/Sources/Secretive/Views/SetupView.swift b/Sources/Secretive/Views/SetupView.swift index 2cf6e51..ffd142c 100644 --- a/Sources/Secretive/Views/SetupView.swift +++ b/Sources/Secretive/Views/SetupView.swift @@ -26,7 +26,7 @@ struct SetupView: View { } } } - .frame(idealWidth: 500, idealHeight: 500) + .frame(minWidth: 500, idealWidth: 500, minHeight: 500, idealHeight: 500) } diff --git a/Sources/Secretive/Views/UpdateView.swift b/Sources/Secretive/Views/UpdateView.swift index 17fe641..a997d3a 100644 --- a/Sources/Secretive/Views/UpdateView.swift +++ b/Sources/Secretive/Views/UpdateView.swift @@ -42,16 +42,16 @@ struct UpdateDetailView: View { if let prefix = split.first { switch prefix { case "#": - attributed = Text(unprefixed).font(.title) + Text("\n") + attributed = Text(unprefixed).font(.title) + Text(verbatim: "\n") case "##": - attributed = Text(unprefixed).font(.title2) + Text("\n") + attributed = Text(unprefixed).font(.title2) + Text(verbatim: "\n") case "###": - attributed = Text(unprefixed).font(.title3) + Text("\n") + attributed = Text(unprefixed).font(.title3) + Text(verbatim: "\n") default: - attributed = Text(line) + Text("\n\n") + attributed = Text(line) + Text(verbatim: "\n\n") } } else { - attributed = Text(line) + Text("\n\n") + attributed = Text(line) + Text(verbatim: "\n\n") } text = text + attributed }