From bcdd21af47fe5836f32fbdbe12b47202f5d2e33c Mon Sep 17 00:00:00 2001 From: Renato Neves Ribeiro Date: Thu, 28 Jul 2022 13:51:01 +0200 Subject: [PATCH 1/5] Bump versions to 41.0.0-rc1 --- example/config.xml | 2 +- plugin/package.json | 2 +- plugin/plugin.xml | 2 +- plugin/src/android/anyline.gradle | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/example/config.xml b/example/config.xml index c40c52f..2a466d8 100644 --- a/example/config.xml +++ b/example/config.xml @@ -1,5 +1,5 @@ - + Anyline Cordova Example diff --git a/plugin/package.json b/plugin/package.json index 07422c3..f1105a9 100644 --- a/plugin/package.json +++ b/plugin/package.json @@ -1,6 +1,6 @@ { "name": "io-anyline-cordova", - "version": "40.0.0", + "version": "41.0.0-rc1", "description": "The cordova plugin for the Anyline SDK", "cordova": { "id": "io-anyline-cordova", diff --git a/plugin/plugin.xml b/plugin/plugin.xml index 3307e1d..dbfedcd 100644 --- a/plugin/plugin.xml +++ b/plugin/plugin.xml @@ -3,7 +3,7 @@ xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="io-anyline-cordova" - version="40.0.0"> + version="41.0.0-rc1"> AnylineSDK diff --git a/plugin/src/android/anyline.gradle b/plugin/src/android/anyline.gradle index 0ddfd1a..41e4ef6 100644 --- a/plugin/src/android/anyline.gradle +++ b/plugin/src/android/anyline.gradle @@ -1,14 +1,14 @@ repositories{ google() jcenter() - maven { url 'https://anylinesdk.blob.core.windows.net/maven/'} + maven { url 'https://anylinesdk.blob.core.windows.net/testing/'} flatDir { dirs 'libs' } } dependencies { - implementation 'io.anyline:anylinesdk:40.0.0' + implementation 'io.anyline:anylinesdk:41.0.0-rc1' } android { From 1d465cdca851211017126e58aac44e20e8e37016 Mon Sep 17 00:00:00 2001 From: Bernd Kampl <97178352+berndkamplanyline@users.noreply.github.com> Date: Fri, 29 Jul 2022 13:24:34 +0200 Subject: [PATCH 2/5] [SOCA-464] Deprecate meter scan modes (#66) ... the following Meter Scan Modes are deprecated now: ANALOG_METER, DIGITAL_METER, DOT_MATRIX_METER. They are being replaced with AUTO_ANALOG_DIGITAL_METER. --- example/www/js/anyline.energy.js | 22 ++-------------------- 1 file changed, 2 insertions(+), 20 deletions(-) diff --git a/example/www/js/anyline.energy.js b/example/www/js/anyline.energy.js index 8099091..735b5b7 100644 --- a/example/www/js/anyline.energy.js +++ b/example/www/js/anyline.energy.js @@ -120,7 +120,7 @@ anyline.energy = { "plugin": { "id": "Meter_ID", "meterPlugin": { - "scanMode": "ANALOG_METER" + "scanMode": "AUTO_ANALOG_DIGITAL_METER" } }, "cutoutConfig": { @@ -144,15 +144,6 @@ anyline.energy = { "cancelOnResult": true }, "nativeBarcodeEnabled": true, - "segment": { - "titles": ["Analog", "Digital"], - "modes": ["ANALOG_METER", "DIGITAL_METER"], - "tintColor": "CCCCCC", - "offset": { - "x": 0, - "y": 400 - } - } }, energyDigitalConfigWithSegment: @@ -168,7 +159,7 @@ anyline.energy = { "plugin": { "id": "Meter_ID", "meterPlugin": { - "scanMode": "DIGITAL_METER" + "scanMode": "AUTO_ANALOG_DIGITAL_METER" } }, "cutoutConfig": { @@ -192,15 +183,6 @@ anyline.energy = { "cancelOnResult": true, }, "nativeBarcodeEnabled": true, - "segment": { - "titles": ["Analog", "Digital"], - "modes": ["ANALOG_METER", "DIGITAL_METER"], - "tintColor": "CCCCCC", - "offset": { - "x": 0, - "y": 400 - } - } }, dialConfig: From 10da85bf699b3357446025d480719b3603a46d5c Mon Sep 17 00:00:00 2001 From: Renato Neves Ribeiro Date: Fri, 29 Jul 2022 13:28:22 +0200 Subject: [PATCH 3/5] Fix dependency in anyline.gradle --- plugin/src/android/anyline.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/src/android/anyline.gradle b/plugin/src/android/anyline.gradle index 41e4ef6..1660510 100644 --- a/plugin/src/android/anyline.gradle +++ b/plugin/src/android/anyline.gradle @@ -8,7 +8,7 @@ repositories{ } dependencies { - implementation 'io.anyline:anylinesdk:41.0.0-rc1' + implementation 'io.anyline:anylinesdk:41.0.0-rc.2' } android { From 2b1b67bab1cbcbeb12a42dcfa3de38c2a1bbc487 Mon Sep 17 00:00:00 2001 From: Renato Neves Ribeiro Date: Tue, 2 Aug 2022 13:58:59 +0200 Subject: [PATCH 4/5] Changing scanfeedback on tire size to rect instead of contour_rect --- example/www/js/anyline.tire.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/www/js/anyline.tire.js b/example/www/js/anyline.tire.js index 53132a9..894d4a8 100644 --- a/example/www/js/anyline.tire.js +++ b/example/www/js/anyline.tire.js @@ -130,7 +130,7 @@ anyline.tire = { "scanFeedback" : { "animation": "traverse_multi", "animationDuration" : 250, - "style": "contour_rect", + "style": "rect", "strokeWidth": 2, "strokeColor": "0099FF", "beepOnResult": true, From adcbf2b1ab42f3931349e297d235a1414b61bfbf Mon Sep 17 00:00:00 2001 From: Renato Neves Ribeiro Date: Wed, 3 Aug 2022 10:08:04 +0200 Subject: [PATCH 5/5] Change version to 41.0.0 and change repository /maven from /testing --- example/config.xml | 2 +- plugin/package.json | 2 +- plugin/plugin.xml | 4 ++-- plugin/src/android/anyline.gradle | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/example/config.xml b/example/config.xml index 2a466d8..caf832a 100644 --- a/example/config.xml +++ b/example/config.xml @@ -1,5 +1,5 @@ - + Anyline Cordova Example diff --git a/plugin/package.json b/plugin/package.json index f1105a9..cd612f8 100644 --- a/plugin/package.json +++ b/plugin/package.json @@ -1,6 +1,6 @@ { "name": "io-anyline-cordova", - "version": "41.0.0-rc1", + "version": "41.0.0", "description": "The cordova plugin for the Anyline SDK", "cordova": { "id": "io-anyline-cordova", diff --git a/plugin/plugin.xml b/plugin/plugin.xml index dbfedcd..1af4bc3 100644 --- a/plugin/plugin.xml +++ b/plugin/plugin.xml @@ -3,7 +3,7 @@ xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="io-anyline-cordova" - version="41.0.0-rc1"> + version="41.0.0"> AnylineSDK @@ -44,7 +44,7 @@ - +