diff --git a/.travis.yml b/.travis.yml index df71a327e..1f2ef7959 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,3 +14,4 @@ script: branches: only: - master + - prod diff --git a/appveyor.yml b/appveyor.yml index 341dc97ce..8066bb29e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -15,3 +15,4 @@ test: off branches: only: - master + - prod diff --git a/src/common/licensing/licensing.js b/src/common/licensing/licensing.js index 6c15fd0eb..14b8ebe5a 100644 --- a/src/common/licensing/licensing.js +++ b/src/common/licensing/licensing.js @@ -4,7 +4,8 @@ import SETTINGS from '../utils/settings' const BASE_URL = 'https://my.plottr.com' const V2_OLD_PRODUCT_ID = is.macos ? '11321' : '11322' -export const PRODUCT_IDS = [33345, V2_OLD_PRODUCT_ID] // NOTE: if this order changes, change the productMapping array at the bottom too +// NOTE: if this order changes, change the productMapping array at the bottom too +export const PRODUCT_IDS = [33347, 33345, V2_OLD_PRODUCT_ID] export const WRONG_PRODUCT_ERRORS = [ 'invalid_item_id', 'key_mismatch', @@ -96,6 +97,7 @@ function getGracePeriodEnd() { } export const productMapping = { + 33347: mapPro, 33345: mapPro, 11321: mapV2old, 11322: mapV2old,