Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.59.0 - 2222-06-21
## 0.59.1 - 2022-06-22

### Changed

- Change In App Purchase IDs

## 0.59.0 - 2022-06-21

### Added

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 410
versionName "0.59.0"
versionCode 411
versionName "0.59.1"
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.59.0",
"version": "0.59.1",
"author": "numbersprotocol",
"homepage": "https://numbersprotocol.io/",
"scripts": {
Expand Down
8 changes: 4 additions & 4 deletions src/app/shared/in-app-store/in-app-store.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -243,10 +243,10 @@ export class InAppStoreService implements OnDestroy {
}

export enum CaptureInAppProductIds {
BRONZE_PACK = 'cap_lite_consumable_bronze_pack_099',
SLIVER_PACK = 'cap_lite_consumable_silver_pack_199',
GOLD_PACK = 'cap_lite_consumable_gold_pack_299',
PLATINUM_PACK = 'cap_lite_consumable_platinum_pack_399',
BRONZE_PACK = 'capture_lite_consumable_bronze_pack_099',
SLIVER_PACK = 'capture_lite_consumable_silver_pack_199',
GOLD_PACK = 'capture_lite_consumable_gold_pack_299',
PLATINUM_PACK = 'capture_lite_consumable_platinum_pack_399',
}

interface InAppProductsWithNumPoint {
Expand Down