diff --git a/README.md b/README.md index caece1a..9b76ba2 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ # Ascently -This is a FOSS app meant to help climbers track their sessions, routes/problems, and overall progress. This app is offline-only and requires no special permissions to run. Its built using Jetpack Compose with Material You support on Android and SwiftUI on iOS. +_Formerly OpenClimb_ + +This is a FOSS app meant to help climbers track their sessions, routes/problems, and overall progress. This app is offline-first, with an optional sync server and integrations with Apple Health and Health Connect. Its built using Jetpack Compose with Material You support on Android and SwiftUI on iOS. ## Download diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index 34bf92b..9793adc 100644 --- a/android/app/build.gradle.kts +++ b/android/app/build.gradle.kts @@ -16,8 +16,8 @@ android { applicationId = "com.atridad.ascently" minSdk = 31 targetSdk = 36 - versionCode = 39 - versionName = "1.9.2" + versionCode = 40 + versionName = "2.0.0" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" } diff --git a/ios/Ascently.xcodeproj/project.pbxproj b/ios/Ascently.xcodeproj/project.pbxproj index 0f0651d..79b2c42 100644 --- a/ios/Ascently.xcodeproj/project.pbxproj +++ b/ios/Ascently.xcodeproj/project.pbxproj @@ -465,7 +465,7 @@ CODE_SIGN_ENTITLEMENTS = Ascently/Ascently.entitlements; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 25; + CURRENT_PROJECT_VERSION = 26; DEVELOPMENT_TEAM = 4BC9Y2LL4B; DRIVERKIT_DEPLOYMENT_TARGET = 24.6; ENABLE_PREVIEWS = YES; @@ -513,7 +513,7 @@ CODE_SIGN_ENTITLEMENTS = Ascently/Ascently.entitlements; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 25; + CURRENT_PROJECT_VERSION = 26; DEVELOPMENT_TEAM = 4BC9Y2LL4B; DRIVERKIT_DEPLOYMENT_TARGET = 24.6; ENABLE_PREVIEWS = YES; diff --git a/ios/Ascently.xcodeproj/project.xcworkspace/xcuserdata/atridad.xcuserdatad/UserInterfaceState.xcuserstate b/ios/Ascently.xcodeproj/project.xcworkspace/xcuserdata/atridad.xcuserdatad/UserInterfaceState.xcuserstate index a9d5978..ea9868f 100644 Binary files a/ios/Ascently.xcodeproj/project.xcworkspace/xcuserdata/atridad.xcuserdatad/UserInterfaceState.xcuserstate and b/ios/Ascently.xcodeproj/project.xcworkspace/xcuserdata/atridad.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/ios/Ascently.xcodeproj/xcshareddata/xcschemes/OpenClimb.xcscheme b/ios/Ascently.xcodeproj/xcshareddata/xcschemes/Ascently.xcscheme similarity index 100% rename from ios/Ascently.xcodeproj/xcshareddata/xcschemes/OpenClimb.xcscheme rename to ios/Ascently.xcodeproj/xcshareddata/xcschemes/Ascently.xcscheme diff --git a/ios/README.md b/ios/README.md index 67d41bc..28aca6d 100644 --- a/ios/README.md +++ b/ios/README.md @@ -1,6 +1,6 @@ # Ascently for iOS -The native iOS, watchOS, and widget client for Ascently, built with Swift and SwiftUI. +The native iOS and widget client for Ascently, built with Swift and SwiftUI. ## Project Structure diff --git a/sync/main.go b/sync/main.go index 040078a..190aaf8 100644 --- a/sync/main.go +++ b/sync/main.go @@ -13,7 +13,7 @@ import ( "time" ) -const VERSION = "1.1.0" +const VERSION = "2.0.0" func min(a, b int) int { if a < b {