From 05aae447f773bab97c89c8514673bd2b388aef0e Mon Sep 17 00:00:00 2001 From: PaulGarewal Date: Wed, 4 Dec 2024 14:34:02 -0800 Subject: [PATCH] update version number and add station comments char limit --- .github/workflows/main.yaml | 2 +- ipad.xcodeproj/project.pbxproj | 4 ++-- ipad/Database/Storage.swift | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 59ea8a6..5570140 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -15,7 +15,7 @@ jobs: ARCHIVE_NAME: ${{ 'invasivesbc-mussels.iOS.xcarchive' }} EXPORT_DIR: ${{ 'export' }} IPA_NAME: ${{ 'invasivesbc-mussels.iOS.ipa' }} - APP_BUILD_VERSION: "2.7.1" + APP_BUILD_VERSION: "2.7.2" steps: - uses: maxim-lobanov/setup-xcode@v1 diff --git a/ipad.xcodeproj/project.pbxproj b/ipad.xcodeproj/project.pbxproj index 7483f89..b7dd6f4 100644 --- a/ipad.xcodeproj/project.pbxproj +++ b/ipad.xcodeproj/project.pbxproj @@ -2059,7 +2059,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 2.8.2; + MARKETING_VERSION = 2.8.3; PRODUCT_BUNDLE_IDENTIFIER = ca.bc.gov.InvasivesBC; PRODUCT_NAME = Inspect; PROVISIONING_PROFILE_SPECIFIER = "InvasivesBC Muscles - 2023/24"; @@ -2089,7 +2089,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 2.8.2; + MARKETING_VERSION = 2.8.3; PRODUCT_BUNDLE_IDENTIFIER = ca.bc.gov.InvasivesBC; PRODUCT_NAME = Inspect; PROVISIONING_PROFILE_SPECIFIER = "InvasivesBC Muscles - 2023/24"; diff --git a/ipad/Database/Storage.swift b/ipad/Database/Storage.swift index 0e452be..4ed5dfd 100644 --- a/ipad/Database/Storage.swift +++ b/ipad/Database/Storage.swift @@ -35,7 +35,7 @@ class Storage { let shifts = Storage.shared.getSyncableItems() var invalidShifts: [ShiftModel] = [] for shift in shifts { - if shift.shiftEndComments.count > 300 || shift.shiftStartComments.count > 300 { + if shift.shiftEndComments.count > 300 || shift.shiftStartComments.count > 300 || shift.stationComments.count > 300 { invalidShifts.append(shift) continue }