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
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Unreleased
## v11.0.1 (2022-08-24)

* Fixes ArgsRegistry import on iOS
* Fixes a typo in Instabug.setPrimaryColor causing the API not to work
Expand Down Expand Up @@ -26,7 +26,6 @@
* Removes Surveys.setThresholdForReshowingSurveyAfterDismiss
* Removes BugReporting.invocationModes enum


## v9.1.7 (2021-05-11)

* Adds support for Azerbaijani and Danish locales
Expand Down
2 changes: 1 addition & 1 deletion example/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 18 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,22 @@
{
"name": "instabug-cordova",
"version": "11.0.0",
"description": "The purpose of this plugin is to simplify the process of integrating the Instabug SDK in a hybrid application, as well as to provide an interface to interfacing with the SDK through JavaScript.",
"main": "www/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Instabug/instabug-cordova"
},
"author": "Instabug <https://instabug.com>",
"description": "Cordova plugin for integrating the Instabug SDK.",
"version": "11.0.1",
"author": "Instabug (https://instabug.com)",
"repository": "github:Instabug/Instabug-Cordova",
"homepage": "https://www.instabug.com/platforms/cordova",
"bugs": "https://github.com/Instabug/Instabug-Cordova/issues",
"license": "Apache 2.0 License",
"bugs": {
"url": "https://github.com/Instabug/instabug-cordova/issues"
},
"dependencies": {},
"homepage": "https://github.com/Instabug/instabug-cordova#readme"
"main": "www/index.js",
"keywords": [
"ecosystem:cordova",
"cordova",
"cordova-android",
"cordova-ios",
"instabug",
"debugging",
"errors",
"exceptions",
"logging"
]
}
16 changes: 6 additions & 10 deletions plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,15 @@
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="instabug-cordova"
version="11.0.0">
version="11.0.1">

<name>instabug-cordova</name>

<description>Cordova plugin for integrating Instabug in your application.</description>

<repo>https://github.com/Instabug/instabug-cordova</repo>

<keyword>instabug, crash reports, in-app feedback</keyword>

<description>Cordova plugin for integrating the Instabug SDK.</description>
<author>Instabug</author>
<repo>https://github.com/Instabug/Instabug-Cordova</repo>
<issue>https://github.com/Instabug/Instabug-Cordova/issues</issue>
<license>Apache 2.0 License</license>

<author>Elizabeth Rego , Hossam Hassan</author>
<keywords>ecosystem:cordova,cordova,cordova-android,cordova-ios,instabug,debugging,errors,exceptions,logging</keywords>

<!-- cordova -->
<engines>
Expand Down