diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f12adc42..b3300eb64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 To check the difference between the last releaes and the latest dev status, click the link above. +## [0.75.1] - 20230-03-02 + +### Fixed + +1. Hotfix set FAQ iframe url to live version + ## [0.75.0] - 2023-03-02 ### Added @@ -2057,7 +2063,8 @@ This is the first release! _Capture Lite_ is a cross-platform app adapted from [ - Web - see the demo [here](https://github.com/numbersprotocol/capture-lite#demo-app) - Android - the APK file `app-debug.apk` is attached to this release -[unreleased]: https://github.com/numbersprotocol/capture-lite/compare/0.75.0...HEAD +[unreleased]: https://github.com/numbersprotocol/capture-lite/compare/0.75.1...HEAD +[0.75.1]: https://github.com/numbersprotocol/capture-lite/compare/0.75.0...0.75.1 [0.75.0]: https://github.com/numbersprotocol/capture-lite/compare/0.74.2...0.75.0 [0.74.2]: https://github.com/numbersprotocol/capture-lite/compare/0.74.1...0.74.2 [0.74.1]: https://github.com/numbersprotocol/capture-lite/compare/0.74.0...0.74.1 diff --git a/android/app/build.gradle b/android/app/build.gradle index e22220633..2ebd65774 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -6,8 +6,8 @@ android { applicationId "io.numbersprotocol.capturelite" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 750 - versionName "0.75.0" + versionCode 751 + versionName "0.75.1" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildFeatures { diff --git a/ios/App/App.xcodeproj/project.pbxproj b/ios/App/App.xcodeproj/project.pbxproj index 0992a8b5c..1236d7ac1 100644 --- a/ios/App/App.xcodeproj/project.pbxproj +++ b/ios/App/App.xcodeproj/project.pbxproj @@ -368,13 +368,13 @@ CODE_SIGN_ENTITLEMENTS = App/App.entitlements; CODE_SIGN_IDENTITY = "iPhone Distribution"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 750; + CURRENT_PROJECT_VERSION = 751; DEVELOPMENT_TEAM = G7NB5YCKAP; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = G7NB5YCKAP; INFOPLIST_FILE = App/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MARKETING_VERSION = 0.75.0; + MARKETING_VERSION = 0.75.1; OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\""; PRODUCT_BUNDLE_IDENTIFIER = io.numbersprotocol.capturelite; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -395,13 +395,13 @@ CODE_SIGN_ENTITLEMENTS = App/App.entitlements; CODE_SIGN_IDENTITY = "iPhone Distribution"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 750; + CURRENT_PROJECT_VERSION = 751; DEVELOPMENT_TEAM = G7NB5YCKAP; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = G7NB5YCKAP; INFOPLIST_FILE = App/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MARKETING_VERSION = 0.75.0; + MARKETING_VERSION = 0.75.1; PRODUCT_BUNDLE_IDENTIFIER = io.numbersprotocol.capturelite; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = NumbersAppDistributionV4; diff --git a/package-lock.json b/package-lock.json index 5eaa4379e..fee1bcb89 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "capture-lite", - "version": "0.75.0", + "version": "0.75.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "capture-lite", - "version": "0.75.0", + "version": "0.75.1", "dependencies": { "packages": "^0.0.8", "@angular/animations": "^14.2.0", diff --git a/package.json b/package.json index 2b4273d24..b0507e8fd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "capture-lite", - "version": "0.75.0", + "version": "0.75.1", "author": "numbersprotocol", "homepage": "https://numbersprotocol.io/", "scripts": { diff --git a/src/app/features/faq/faq.page.ts b/src/app/features/faq/faq.page.ts index ed09e3c57..48bda1deb 100644 --- a/src/app/features/faq/faq.page.ts +++ b/src/app/features/faq/faq.page.ts @@ -15,7 +15,7 @@ import { NetworkService } from '../../shared/network/network.service'; }) export class FaqPage { readonly networkConnected$ = this.networkService.connected$; - readonly iframeUrl = `${BUBBLE_IFRAME_URL}/version-v230207-sam/faq`; + readonly iframeUrl = `${BUBBLE_IFRAME_URL}/faq`; readonly iframeLoaded$ = new BehaviorSubject(false); constructor(