Skip to content

Commit f765b10

Browse files
authored
Merge pull request #1540 from numbersprotocol/build-bump-to-0.54.2
Build bump to 0.54.2
2 parents 2ea5a74 + d474430 commit f765b10

23 files changed

+21
-530
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.54.2 - 2022-04-21
9+
10+
### Changed
11+
12+
- Hide buy NUM button at wallets page
13+
14+
### Removed
15+
16+
- Temporarely remove custom camera ux
17+
818
## 0.54.1 - 2022-04-07
919

1020
### Removed

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 371
10-
versionName "0.54.1"
9+
versionCode 372
10+
versionName "0.54.2"
1111
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1212
}
1313
buildFeatures {

android/app/capacitor.build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ dependencies {
2525
implementation project(':capacitor-share')
2626
implementation project(':capacitor-splash-screen')
2727
implementation project(':capacitor-storage')
28-
implementation project(':numbersprotocol-preview-camera')
2928
implementation project(':numbersprotocol-preview-video')
3029
implementation project(':capacitor-blob-writer')
3130

android/app/src/main/assets/capacitor.plugins.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,6 @@
6363
"pkg": "@capacitor/storage",
6464
"classpath": "com.capacitorjs.plugins.storage.StoragePlugin"
6565
},
66-
{
67-
"pkg": "@numbersprotocol/preview-camera",
68-
"classpath": "io.numbersprotocol.capturelite.plugins.previewcamera.PreviewCameraPlugin"
69-
},
7066
{
7167
"pkg": "@numbersprotocol/preview-video",
7268
"classpath": "io.numbersprotocol.capturelite.plugins.previewvideo.PreviewVideoPlugin"

android/capacitor.settings.gradle

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,6 @@ project(':capacitor-splash-screen').projectDir = new File('../node_modules/@capa
5050
include ':capacitor-storage'
5151
project(':capacitor-storage').projectDir = new File('../node_modules/@capacitor/storage/android')
5252

53-
include ':numbersprotocol-preview-camera'
54-
project(':numbersprotocol-preview-camera').projectDir = new File('../node_modules/@numbersprotocol/preview-camera/android')
55-
5653
include ':numbersprotocol-preview-video'
5754
project(':numbersprotocol-preview-video').projectDir = new File('../node_modules/@numbersprotocol/preview-video/android')
5855

android/variables.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ext {
22
minSdkVersion = 21
3-
compileSdkVersion = 31
3+
compileSdkVersion = 30
44
targetSdkVersion = 30
55
androidxActivityVersion = '1.2.0'
66
androidxAppCompatVersion = '1.2.0'

ios/App/Podfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ def capacitor_pods
2525
pod 'CapacitorShare', :path => '../../node_modules/@capacitor/share'
2626
pod 'CapacitorSplashScreen', :path => '../../node_modules/@capacitor/splash-screen'
2727
pod 'CapacitorStorage', :path => '../../node_modules/@capacitor/storage'
28-
pod 'NumbersprotocolPreviewCamera', :path => '../../node_modules/@numbersprotocol/preview-camera'
2928
pod 'NumbersprotocolPreviewVideo', :path => '../../node_modules/@numbersprotocol/preview-video'
3029
pod 'CapacitorBlobWriter', :path => '../../node_modules/capacitor-blob-writer'
3130
end

package-lock.json

Lines changed: 4 additions & 40 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 & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "capture-lite",
3-
"version": "0.54.1",
3+
"version": "0.54.2",
44
"author": "numbersprotocol",
55
"homepage": "https://numbersprotocol.io/",
66
"scripts": {
@@ -57,7 +57,6 @@
5757
"@ngx-formly/core": "^5.10.22",
5858
"@ngx-formly/material": "^5.10.22",
5959
"@ngx-formly/schematics": "^5.10.22",
60-
"@numbersprotocol/preview-camera": "github:numbersprotocol/preview-camera",
6160
"@numbersprotocol/preview-video": "github:numbersprotocol/preview-video",
6261
"async-mutex": "^0.3.2",
6362
"buffer": "^5.7.1",
@@ -66,7 +65,6 @@
6665
"immutable": "^4.0.0-rc.14",
6766
"lodash-es": "^4.17.21",
6867
"material-design-icons-iconfont": "^6.1.0",
69-
"ng-circle-progress": "^1.6.0",
7068
"ngx-long-press2": "^2.0.0",
7169
"ngx-pinch-zoom": "^2.6.0",
7270
"process": "^0.11.10",

src/app/features/home/custom-camera/custom-camera-routing.module.ts

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)