Skip to content

Commit

Permalink
chore(release): release 2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
c0mtru1se committed Sep 29, 2023
1 parent 5f040be commit efec824
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-plugin-smartlook",
"version": "2.0.2",
"version": "2.0.3",
"description": "Official Smartlook SDK plugin for Cordova Android and iOS applications.",
"platforms": [
"android",
Expand All @@ -15,7 +15,7 @@
},
"engines": {
"cordovaDependencies": {
"2.0.2": {
"2.0.3": {
"cordova": ">=10.0.0",
"cordova-android": ">=10.1.1"
}
Expand Down
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-smartlook" version="2.0.2">
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-smartlook" version="2.0.3">

<name>Smartlook</name>
<description>Official Smartlook SDK plugin for Cordova Android and iOS applications.</description>
Expand Down
2 changes: 1 addition & 1 deletion src/js/cordova-plugin-smartlook.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const SMARTLOOK_PLUGIN = 'SmartlookPlugin';

// Smartlook framework info
export const SMARTLOOK_FRAMEWORK_VERSION = '-';
export const SMARTLOOK_FRAMEWORK_PLUGIN_VERSION = '2.0.2';
export const SMARTLOOK_FRAMEWORK_PLUGIN_VERSION = '2.0.3';

// API methods names
export enum Command {
Expand Down
2 changes: 1 addition & 1 deletion tests/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-smartlook-tests" version="1.8.0">
xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-smartlook-tests" version="2.0.3">

<name>Smartlook Tests</name>
<license>MIT</license>
Expand Down
10 changes: 5 additions & 5 deletions www/cordova-plugin-smartlook.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export declare const SMARTLOOK_FRAMEWORK_VERSION = "-";
export declare const SMARTLOOK_FRAMEWORK_PLUGIN_VERSION = "2.0.1";
export declare const SMARTLOOK_FRAMEWORK_PLUGIN_VERSION = "2.0.3";
export declare enum Command {
START = "start",
STOP = "stop",
Expand Down Expand Up @@ -292,16 +292,16 @@ export interface Smartlook {
}, successCallback?: SuccessCallback<string>, errorCallback?: ErrorCallback): void;
/**
* @description Sets whether or not the SDK should use the adaptive framerate feature to capture video.
*
* @kind **iOS only**
*
* @kind **iOS only**
*/
setAdaptiveFrameRateEnabled(options: {
isEnabled: boolean;
}, successCallback?: SuccessCallback<string>, errorCallback?: ErrorCallback): void;
/**
* @description A boolean that determines whether the SDK uses the adaptive framerate functionality for video capture.
*
* @kind **iOS only**
*
* @kind **iOS only**
*/
getAdaptiveFrameRateEnabled(successCallback: SuccessCallback<boolean>, errorCallback?: ErrorCallback): void;
/**
Expand Down
2 changes: 1 addition & 1 deletion www/cordova-plugin-smartlook.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ exports.enableLogs = exports.setRecordingMask = exports.removeRecordingStatusCha
var SMARTLOOK_PLUGIN = 'SmartlookPlugin';
// Smartlook framework info
exports.SMARTLOOK_FRAMEWORK_VERSION = '-';
exports.SMARTLOOK_FRAMEWORK_PLUGIN_VERSION = '2.0.1';
exports.SMARTLOOK_FRAMEWORK_PLUGIN_VERSION = '2.0.3';
// API methods names
var Command;
(function (Command) {
Expand Down

0 comments on commit efec824

Please sign in to comment.