Skip to content

Commit

Permalink
Merge pull request #2417 from numbersprotocol/release-0.71.2
Browse files Browse the repository at this point in the history
Release 0.71.2
  • Loading branch information
bafu authored Dec 23, 2022
2 parents 38a2d4d + 78cc7b2 commit 7023e3d
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 11 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.71.2] - 2022-12-23

### Fixed

1. Fix custom camera header, footer sizes (#2415)

## [0.71.1] - 2022-12-21

### Changed
Expand Down Expand Up @@ -1956,7 +1962,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.71.1...HEAD
[unreleased]: https://github.com/numbersprotocol/capture-lite/compare/0.71.2...HEAD
[0.71.2]: https://github.com/numbersprotocol/capture-lite/compare/0.71.1...0.71.2
[0.71.1]: https://github.com/numbersprotocol/capture-lite/compare/0.71.0...0.71.1
[0.71.0]: https://github.com/numbersprotocol/capture-lite/compare/0.70.0...0.71.0
[0.70.0]: https://github.com/numbersprotocol/capture-lite/compare/0.69.3...0.70.0
Expand Down
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ android {
applicationId "io.numbersprotocol.capturelite"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 456
versionName "0.71.1"
versionCode 457
versionName "0.71.2"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildFeatures {
Expand Down
4 changes: 2 additions & 2 deletions ios/App/App.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@
INFOPLIST_FILE = App/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 0.71.1;
MARKETING_VERSION = 0.71.2;
OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
PRODUCT_BUNDLE_IDENTIFIER = io.numbersprotocol.capturelite;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -401,7 +401,7 @@
INFOPLIST_FILE = App/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 0.71.1;
MARKETING_VERSION = 0.71.2;
PRODUCT_BUNDLE_IDENTIFIER = io.numbersprotocol.capturelite;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = NumbersAppDistributionV4;
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "capture-lite",
"version": "0.71.1",
"version": "0.71.2",
"author": "numbersprotocol",
"homepage": "https://numbersprotocol.io/",
"scripts": {
Expand Down
6 changes: 3 additions & 3 deletions src/app/features/home/custom-camera/custom-camera.page.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$camera-header-height: calc(86px - env(safe-area-inset-top));
$camera-zoom-slider-height: calc(58px - env(safe-area-inset-bottom));
$camera-footer-height: calc(168px - env(safe-area-inset-bottom));
$camera-header-height: calc(64px);
$camera-zoom-slider-height: calc(58px);
$camera-footer-height: calc(168px);
$camera-preview-height: calc(
100% - #{$camera-header-height} - #{$camera-zoom-slider-height} - #{$camera-footer-height}
);
Expand Down

0 comments on commit 7023e3d

Please # to comment.