Skip to content

Commit

Permalink
Merge branch 'release-0.63.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
bafu committed Aug 16, 2022
2 parents f9cdd0a + cfabe5f commit f5a4a99
Show file tree
Hide file tree
Showing 9 changed files with 32 additions and 17 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.63.2] - 2022-08-16

### Fixed

1. Update logo on the sign in/up page (#1944)
1. Set initial tab from the profile tab to the explorer tab (#1945)
1. Notify user if there is new version available. Disabled unexpectedly and fixed the regression (#1946)

## [0.63.1] - 2022-08-09

### Fixed
Expand Down Expand Up @@ -1739,7 +1747,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.63.1...HEAD
[unreleased]: https://github.com/numbersprotocol/capture-lite/compare/0.63.2...HEAD
[0.63.2]: https://github.com/numbersprotocol/capture-lite/compare/0.63.1...0.63.2
[0.63.1]: https://github.com/numbersprotocol/capture-lite/compare/0.63.0...0.63.1
[0.63.0]: https://github.com/numbersprotocol/capture-lite/compare/0.62.0...0.63.0
[0.62.0]: https://github.com/numbersprotocol/capture-lite/compare/0.61.2...0.62.0
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,14 @@ Install the dependencies.
npm i
```

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`:
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`:

```txt
export NUMBERS_STORAGE_BASE_URL="THE PRIVATE BASE URL"
export NUMBERS_STORAGE_TRUSTED_CLIENT_KEY="THE TRUSTED CLIENT KEY"
export NUMBERS_BUBBLE_DB_URL="THE BUBBLE DB URL"
export BUBBLE_API_URL="BUBBLE API URL"
export APPS_FLYER_DEV_KEY="APPS FLYER DEV KEY
```

Preview the app in web browser.
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 435
versionName "0.63.1"
versionCode 436
versionName "0.63.2"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildFeatures {
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.63.1",
"version": "0.63.2",
"author": "numbersprotocol",
"homepage": "https://numbersprotocol.io/",
"scripts": {
Expand Down
4 changes: 1 addition & 3 deletions src/app/features/home/home.page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ import { PrefetchingDialogComponent } from './onboarding/prefetching-dialog/pref
styleUrls: ['./home.page.scss'],
})
export class HomePage {
private readonly initialTabIndex = 2;
private readonly initialTabIndex = 0;
private readonly afterCaptureTabIndex = 2;
selectedTabIndex = this.initialTabIndex;

Expand Down Expand Up @@ -151,8 +151,6 @@ export class HomePage {
}

private async promptAppUpdateIfAny() {
return;
// Not applicable to Web App
if (!this.platform.is('hybrid')) return;

const backendAppInfo = await this.diaBackendService.appInfo$().toPromise();
Expand Down
10 changes: 6 additions & 4 deletions src/app/features/login/login.page.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@
padding: 0 16px 16px;

.logo {
width: 100%;
display: flex;
width: 50%;
margin: 0 auto;
flex: 1;
height: 35vh;
justify-content: center;
align-items: center;
background-color: var(--ion-color-primary);
mask: url('/assets/images/capture.svg') no-repeat center;
background-color: white;
/* stylelint-disable-next-line declaration-colon-newline-after */
mask: url('/assets/images/icons/capture-rebrand-wordmark.svg') no-repeat
center;
}

button {
Expand Down
9 changes: 6 additions & 3 deletions src/app/features/signup/signup.page.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,17 @@
padding: 0 16px 16px;

.logo {
width: 100%;
width: 50%;
margin: 0 auto;
display: flex;
flex: 1;
height: 35vh;
justify-content: center;
align-items: center;
background-color: var(--ion-color-primary);
mask: url('/assets/images/capture.svg') no-repeat center;
background-color: white;
/* stylelint-disable-next-line declaration-colon-newline-after */
mask: url('/assets/images/icons/capture-rebrand-wordmark.svg') no-repeat
center;
}

button {
Expand Down
1 change: 1 addition & 0 deletions src/assets/images/icons/capture-rebrand-wordmark.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f5a4a99

Please sign in to comment.