From 2ccc5c2755d3674c2d53e86ab0ce3ad3b0ed72e8 Mon Sep 17 00:00:00 2001 From: Tomasz Kurylik Date: Mon, 4 Nov 2024 13:31:40 +0100 Subject: [PATCH 1/6] 1 --- MijickPopups.podspec | 2 +- Sources/Internal/View Models/ViewModel+VerticalStack.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MijickPopups.podspec b/MijickPopups.podspec index b5f3103bba..792438e9ea 100644 --- a/MijickPopups.podspec +++ b/MijickPopups.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |s| s.name = 'MijickPopups' s.summary = 'Popups, popovers, sheets, alerts, toasts, banners, (...) presentation made simple. Written with and for SwiftUI.' s.description = <<-DESC - MijickPopups is a free and open-source library dedicated for SwiftUI that makes the process of presenting popups easier and much cleaner. + MijickPopups solves two seemingly contradictory problems - to allow developers to create fully customizable popup, and to make the process as simple as possible. DESC s.version = '3.0.1' diff --git a/Sources/Internal/View Models/ViewModel+VerticalStack.swift b/Sources/Internal/View Models/ViewModel+VerticalStack.swift index 568189cf8c..74f336732a 100644 --- a/Sources/Internal/View Models/ViewModel+VerticalStack.swift +++ b/Sources/Internal/View Models/ViewModel+VerticalStack.swift @@ -314,7 +314,7 @@ private extension VM.VerticalStack { } // MARK: Attributes -private extension VM.VerticalStack { +extension VM.VerticalStack { var stackScaleFactor: CGFloat { 0.025 } var stackOverlayFactor: CGFloat { 0.1 } var maxStackOverlayFactor: CGFloat { 0.48 } From e2a6af1a56967a52dd92e815007e06de24d1d114 Mon Sep 17 00:00:00 2001 From: "Tomasz K." Date: Mon, 4 Nov 2024 13:38:12 +0100 Subject: [PATCH 2/6] Update run-tests.yml --- .github/workflows/run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 1acb12c0e5..fc1924dd46 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -7,7 +7,7 @@ on: workflow_dispatch: jobs: build: - runs-on: macos-15 + runs-on: ios-18 steps: - uses: actions/checkout@v4 - name: Build From a06b39ad2e5c11b6a3ae50eff36917b23d815d40 Mon Sep 17 00:00:00 2001 From: "Tomasz K." Date: Mon, 4 Nov 2024 13:47:34 +0100 Subject: [PATCH 3/6] Update run-tests.yml --- .github/workflows/run-tests.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index fc1924dd46..1d4323d7b4 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -10,7 +10,5 @@ jobs: runs-on: ios-18 steps: - uses: actions/checkout@v4 - - name: Build - run: swift build -v - name: Run tests - run: swift test -v + run: xcodebuild test -scheme MijickPopups -destination 'platform=iOS Simulator,OS=18.0,name=iPhone 13 Pro' From c7b6e4fdd978a67602d725cbf386d1aeca951e50 Mon Sep 17 00:00:00 2001 From: "Tomasz K." Date: Mon, 4 Nov 2024 13:47:54 +0100 Subject: [PATCH 4/6] Update run-tests.yml --- .github/workflows/run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 1d4323d7b4..8a1994847f 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -7,7 +7,7 @@ on: workflow_dispatch: jobs: build: - runs-on: ios-18 + runs-on: macos-15 steps: - uses: actions/checkout@v4 - name: Run tests From f37dc4bace2b304e3fca8e52492cdea942ede1a6 Mon Sep 17 00:00:00 2001 From: "Tomasz K." Date: Mon, 4 Nov 2024 13:49:57 +0100 Subject: [PATCH 5/6] Update run-tests.yml --- .github/workflows/run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 8a1994847f..71d23bd88c 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -11,4 +11,4 @@ jobs: steps: - uses: actions/checkout@v4 - name: Run tests - run: xcodebuild test -scheme MijickPopups -destination 'platform=iOS Simulator,OS=18.0,name=iPhone 13 Pro' + run: xcodebuild test -scheme MijickPopups -destination 'platform=iOS Simulator,OS=18.0,name=iPhone 16 Pro' From a284771911caf527f35344caf89c67f5febc158a Mon Sep 17 00:00:00 2001 From: Tomasz Kurylik Date: Mon, 4 Nov 2024 13:53:32 +0100 Subject: [PATCH 6/6] 1 --- MijickPopups.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MijickPopups.podspec b/MijickPopups.podspec index 792438e9ea..5cced8735a 100644 --- a/MijickPopups.podspec +++ b/MijickPopups.podspec @@ -5,7 +5,7 @@ Pod::Spec.new do |s| MijickPopups solves two seemingly contradictory problems - to allow developers to create fully customizable popup, and to make the process as simple as possible. DESC - s.version = '3.0.1' + s.version = '3.0.2' s.ios.deployment_target = '14.0' s.osx.deployment_target = '12.0' s.tvos.deployment_target = '15.0'