Skip to content

Commit e3692a5

Browse files
committed
chore: bump app version to 0.103.2
1 parent 0a3b114 commit e3692a5

File tree

5 files changed

+25
-10
lines changed

5 files changed

+25
-10
lines changed

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.103.2] - 2025-09-03
11+
12+
### Fixed
13+
14+
1. Fix bottom navigation tabs overlap on Android 15+ devices with edge-to-edge display [#3348](https://github.com/numbersprotocol/capture-lite/pull/3348)
15+
2. Resolve navigation bar visibility issues on foldable devices (Pixel 9 Pro Fold) [#3348](https://github.com/numbersprotocol/capture-lite/pull/3348)
16+
3. Ensure proper safe area inset detection across different Android navigation modes [#3348](https://github.com/numbersprotocol/capture-lite/pull/3348)
17+
18+
### Changed
19+
20+
1. Upgrade Capacitor core and CLI to version 7.4.3 for improved edge-to-edge support [#3348](https://github.com/numbersprotocol/capture-lite/pull/3348)
21+
2. Install @capawesome/capacitor-android-edge-to-edge-support plugin for advanced system UI control [#3348](https://github.com/numbersprotocol/capture-lite/pull/3348)
22+
3. Configure adjustMarginsForEdgeToEdge to properly handle system navigation bar overlap [#3348](https://github.com/numbersprotocol/capture-lite/pull/3348)
23+
1024
## [0.103.1] - 2025-09-01
1125

1226
### Fixed
@@ -2479,7 +2493,8 @@ This is the first release! _Capture Lite_ is a cross-platform app adapted from [
24792493
- Web - see the demo [here](https://github.com/numbersprotocol/capture-lite#demo-app)
24802494
- Android - the APK file `app-debug.apk` is attached to this release
24812495

2482-
[unreleased]: https://github.com/numbersprotocol/capture-lite/compare/0.103.1...HEAD
2496+
[unreleased]: https://github.com/numbersprotocol/capture-lite/compare/0.103.2...HEAD
2497+
[0.103.2]: https://github.com/numbersprotocol/capture-lite/compare/0.103.1...0.103.2
24832498
[0.103.1]: https://github.com/numbersprotocol/capture-lite/compare/0.103.0...0.103.1
24842499
[0.103.0]: https://github.com/numbersprotocol/capture-lite/compare/0.102.0...0.103.0
24852500
[0.102.0]: https://github.com/numbersprotocol/capture-lite/compare/0.101.1...0.102.0

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
applicationId "io.numbersprotocol.capturelite"
88
minSdkVersion rootProject.ext.minSdkVersion
99
targetSdkVersion rootProject.ext.targetSdkVersion
10-
versionCode 1031
11-
versionName "0.103.1"
10+
versionCode 1032
11+
versionName "0.103.2"
1212
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1313
}
1414
buildFeatures {

ios/App/App.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -388,13 +388,13 @@
388388
CODE_SIGN_ENTITLEMENTS = App/App.entitlements;
389389
CODE_SIGN_IDENTITY = "iPhone Distribution";
390390
CODE_SIGN_STYLE = Manual;
391-
CURRENT_PROJECT_VERSION = 1031;
391+
CURRENT_PROJECT_VERSION = 1032;
392392
DEVELOPMENT_TEAM = G7NB5YCKAP;
393393
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = G7NB5YCKAP;
394394
INFOPLIST_FILE = App/Info.plist;
395395
IPHONEOS_DEPLOYMENT_TARGET = 15.6;
396396
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
397-
MARKETING_VERSION = 0.103.1;
397+
MARKETING_VERSION = 0.103.2;
398398
OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
399399
PRODUCT_BUNDLE_IDENTIFIER = io.numbersprotocol.capturelite;
400400
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -415,13 +415,13 @@
415415
CODE_SIGN_ENTITLEMENTS = App/App.entitlements;
416416
CODE_SIGN_IDENTITY = "iPhone Distribution";
417417
CODE_SIGN_STYLE = Manual;
418-
CURRENT_PROJECT_VERSION = 1031;
418+
CURRENT_PROJECT_VERSION = 1032;
419419
DEVELOPMENT_TEAM = G7NB5YCKAP;
420420
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = G7NB5YCKAP;
421421
INFOPLIST_FILE = App/Info.plist;
422422
IPHONEOS_DEPLOYMENT_TARGET = 15.6;
423423
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
424-
MARKETING_VERSION = 0.103.1;
424+
MARKETING_VERSION = 0.103.2;
425425
PRODUCT_BUNDLE_IDENTIFIER = io.numbersprotocol.capturelite;
426426
PRODUCT_NAME = "$(TARGET_NAME)";
427427
PROVISIONING_PROFILE_SPECIFIER = NumbersAppDistributionV6;

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "capture-lite",
3-
"version": "0.103.1",
3+
"version": "0.103.2",
44
"author": "numbersprotocol",
55
"homepage": "https://numbersprotocol.io/",
66
"scripts": {

0 commit comments

Comments
 (0)