Skip to content

Commit 90c4f55

Browse files
committed
add lifetime product to checked products
1 parent b7d8cd5 commit 90c4f55

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ script:
1414
branches:
1515
only:
1616
- master
17+
- prod

appveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ test: off
1515
branches:
1616
only:
1717
- master
18+
- prod

src/common/licensing/licensing.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import SETTINGS from '../utils/settings'
44

55
const BASE_URL = 'https://my.plottr.com'
66
const V2_OLD_PRODUCT_ID = is.macos ? '11321' : '11322'
7-
export const PRODUCT_IDS = [33345, V2_OLD_PRODUCT_ID] // NOTE: if this order changes, change the productMapping array at the bottom too
7+
// NOTE: if this order changes, change the productMapping array at the bottom too
8+
export const PRODUCT_IDS = [33347, 33345, V2_OLD_PRODUCT_ID]
89
export const WRONG_PRODUCT_ERRORS = [
910
'invalid_item_id',
1011
'key_mismatch',
@@ -96,6 +97,7 @@ function getGracePeriodEnd() {
9697
}
9798

9899
export const productMapping = {
100+
33347: mapPro,
99101
33345: mapPro,
100102
11321: mapV2old,
101103
11322: mapV2old,

0 commit comments

Comments
 (0)