Skip to content

Commit 59968a2

Browse files
committed
Add version 1.2.0
1 parent 2288066 commit 59968a2

File tree

6 files changed

+26
-6
lines changed

6 files changed

+26
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [1.2.0]
2+
3+
### Changed
4+
5+
* Updated VideoEditor SDK for iOS to version 10.5.0.
6+
17
## [1.1.0]
28

39
### Added

README.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
<p align="center">
2-
<img src="https://video.photoeditorsdk.com/assets/img/vesdk-logo-s.svg" alt="VideoEditor SDK Logo"/>
2+
<a href="https://www.videoeditorsdk.com/?utm_campaign=Projects&utm_source=Github&utm_medium=VESDK&utm_content=React-Native">
3+
<img src="https://video.photoeditorsdk.com/assets/img/vesdk-logo-s.svg" alt="VideoEditor SDK Logo"/>
4+
</a>
5+
</p>
6+
<p align="center">
7+
<a href="https://npmjs.org/package/react-native-videoeditorsdk">
8+
<img src="https://img.shields.io/npm/v/react-native-videoeditorsdk.svg" alt="NPM version">
9+
</a>
10+
<a href="http://twitter.com/VideoEditorSDK">
11+
<img src="https://img.shields.io/badge/twitter-@VideoEditorSDK-blue.svg?style=flat" alt="Twitter">
12+
</a>
313
</p>
414

515
# React Native module for VideoEditor SDK
@@ -19,7 +29,7 @@ yarn react-native run-ios
1929
Import the module in your `App.js`:
2030

2131
```js
22-
import {Configuration, VESDK} from 'react-native-videoeditorsdk';
32+
import {VESDK, Configuration} from 'react-native-videoeditorsdk';
2333
```
2434

2535
Unlock VideoEditor SDK with a license file:
@@ -36,6 +46,10 @@ VESDK.openEditor(require('./video.mov'));
3646

3747
Please see the [code documentation](./index.d.ts) for more details and additional [customization and configuration options](./configuration.ts).
3848

49+
## Example
50+
51+
Please see our [example project](https://github.com/imgly/vesdk-react-native-demo) which demonstrates how to use the React Native module for VideoEditor SDK.
52+
3953
## License Terms
4054

4155
Make sure you have a [commercial license](https://account.photoeditorsdk.com/pricing?product=vesdk&?utm_campaign=Projects&utm_source=Github&utm_medium=VESDK&utm_content=React-Native) for VideoEditor SDK before releasing your app.

RNVideoEditorSDK.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ Pod::Spec.new do |s|
1717

1818
s.dependency 'React'
1919
s.dependency 'React-RCTImage'
20-
s.dependency 'VideoEditorSDK', '10.4.0'
20+
s.dependency 'VideoEditorSDK', '10.5.0'
2121
end

index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ declare class VESDK {
2828
): Promise<{image: string, hasChanges: boolean, serialization: object}>
2929

3030
/**
31-
* Unlock the VideoEditor SDK with a license.
31+
* Unlock VideoEditor SDK with a license.
3232
*
3333
* @param {string | object} license The license used to unlock the SDK. Can be either an URI
3434
* pointing to a local `file://` resource that contains the license, the license as a string,

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ class VESDK {
114114
}
115115

116116
/**
117-
* Unlock the VideoEditor SDK with a license.
117+
* Unlock VideoEditor SDK with a license.
118118
*
119119
* @param {string | object} license The license used to unlock the SDK. Can be either an URI
120120
* pointing to a local `file://` resource that contains the license, the license as a string,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-native-videoeditorsdk",
33
"title": "React Native module for VideoEditor SDK",
4-
"version": "1.1.0",
4+
"version": "1.2.0",
55
"description": "A React Native module for VideoEditor SDK. Integrate the video editor into your own HTML5, iOS or Android app - in minutes!",
66
"main": "index.js",
77
"typings": "index.d.ts",

0 commit comments

Comments
 (0)