Skip to content

Commit f5a4a99

Browse files
committed
Merge branch 'release-0.63.2'
2 parents f9cdd0a + cfabe5f commit f5a4a99

File tree

9 files changed

+32
-17
lines changed

9 files changed

+32
-17
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.63.2] - 2022-08-16
11+
12+
### Fixed
13+
14+
1. Update logo on the sign in/up page (#1944)
15+
1. Set initial tab from the profile tab to the explorer tab (#1945)
16+
1. Notify user if there is new version available. Disabled unexpectedly and fixed the regression (#1946)
17+
1018
## [0.63.1] - 2022-08-09
1119

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

1742-
[unreleased]: https://github.com/numbersprotocol/capture-lite/compare/0.63.1...HEAD
1750+
[unreleased]: https://github.com/numbersprotocol/capture-lite/compare/0.63.2...HEAD
1751+
[0.63.2]: https://github.com/numbersprotocol/capture-lite/compare/0.63.1...0.63.2
17431752
[0.63.1]: https://github.com/numbersprotocol/capture-lite/compare/0.63.0...0.63.1
17441753
[0.63.0]: https://github.com/numbersprotocol/capture-lite/compare/0.62.0...0.63.0
17451754
[0.62.0]: https://github.com/numbersprotocol/capture-lite/compare/0.61.2...0.62.0

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,14 @@ Install the dependencies.
1818
npm i
1919
```
2020

21-
Set the system environment variables `NUMBERS_STORAGE_BASE_URL`, `NUMBERS_STORAGE_TRUSTED_CLIENT_KEY`, and `NUMBERS_BUBBLE_DB_URL` before building the app by appending the following string in `~/.profile`:
21+
Set the system environment variables `NUMBERS_STORAGE_BASE_URL`, `NUMBERS_STORAGE_TRUSTED_CLIENT_KEY`, `NUMBERS_BUBBLE_DB_URL`, `BUBBLE_API_URL` and `APPS_FLYER_DEV_KEY` before building the app by appending the following string in `~/.profile`:
2222

2323
```txt
2424
export NUMBERS_STORAGE_BASE_URL="THE PRIVATE BASE URL"
2525
export NUMBERS_STORAGE_TRUSTED_CLIENT_KEY="THE TRUSTED CLIENT KEY"
2626
export NUMBERS_BUBBLE_DB_URL="THE BUBBLE DB URL"
27+
export BUBBLE_API_URL="BUBBLE API URL"
28+
export APPS_FLYER_DEV_KEY="APPS FLYER DEV KEY
2729
```
2830

2931
Preview the app in web browser.

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ android {
66
applicationId "io.numbersprotocol.capturelite"
77
minSdkVersion rootProject.ext.minSdkVersion
88
targetSdkVersion rootProject.ext.targetSdkVersion
9-
versionCode 435
10-
versionName "0.63.1"
9+
versionCode 436
10+
versionName "0.63.2"
1111
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1212
}
1313
buildFeatures {

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.63.1",
3+
"version": "0.63.2",
44
"author": "numbersprotocol",
55
"homepage": "https://numbersprotocol.io/",
66
"scripts": {

src/app/features/home/home.page.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ import { PrefetchingDialogComponent } from './onboarding/prefetching-dialog/pref
4545
styleUrls: ['./home.page.scss'],
4646
})
4747
export class HomePage {
48-
private readonly initialTabIndex = 2;
48+
private readonly initialTabIndex = 0;
4949
private readonly afterCaptureTabIndex = 2;
5050
selectedTabIndex = this.initialTabIndex;
5151

@@ -151,8 +151,6 @@ export class HomePage {
151151
}
152152

153153
private async promptAppUpdateIfAny() {
154-
return;
155-
// Not applicable to Web App
156154
if (!this.platform.is('hybrid')) return;
157155

158156
const backendAppInfo = await this.diaBackendService.appInfo$().toPromise();

src/app/features/login/login.page.scss

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,16 @@
22
padding: 0 16px 16px;
33

44
.logo {
5-
width: 100%;
6-
display: flex;
5+
width: 50%;
6+
margin: 0 auto;
77
flex: 1;
88
height: 35vh;
99
justify-content: center;
1010
align-items: center;
11-
background-color: var(--ion-color-primary);
12-
mask: url('/assets/images/capture.svg') no-repeat center;
11+
background-color: white;
12+
/* stylelint-disable-next-line declaration-colon-newline-after */
13+
mask: url('/assets/images/icons/capture-rebrand-wordmark.svg') no-repeat
14+
center;
1315
}
1416

1517
button {

src/app/features/signup/signup.page.scss

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,17 @@
22
padding: 0 16px 16px;
33

44
.logo {
5-
width: 100%;
5+
width: 50%;
6+
margin: 0 auto;
67
display: flex;
78
flex: 1;
89
height: 35vh;
910
justify-content: center;
1011
align-items: center;
11-
background-color: var(--ion-color-primary);
12-
mask: url('/assets/images/capture.svg') no-repeat center;
12+
background-color: white;
13+
/* stylelint-disable-next-line declaration-colon-newline-after */
14+
mask: url('/assets/images/icons/capture-rebrand-wordmark.svg') no-repeat
15+
center;
1316
}
1417

1518
button {
Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)