Skip to content

Commit

Permalink
v1.1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
yuyu04 committed Nov 16, 2023
1 parent 2a610b7 commit 771258a
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 10 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
## 1.0.0
## 1.1.1

Features:

- PallyConMultiDrmSDK has been updated to version 1.0.0
- PallyConMultiDrmSDK has been updated to version 1.1.1
- Fixed bug for iOS

## 1.1.0

Features:

- PallyConMultiDrmSDK has been updated to version 1.1.0
- PallyConMultiDrmSDK 1.0.0 is based on react-native.
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,8 @@ class PallyConSdk constructor(val context: Context) {
url = config.contentUrl,
localPath = "",
drmConfig = drmConfig,
cookie = config.contentCookie
cookie = config.contentCookie,
httpHeaders = contentHeaders
)
}
}
2 changes: 1 addition & 1 deletion examples/advanced/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ android {
}

dependencies {
implementation (name:"PallyConLicenseCipher", ext:"aar")
// implementation (name:"PallyConLicenseCipher", ext:"aar")

// The version of react-native is set by the React Native Gradle Plugin
implementation("com.facebook.react:react-android")
Expand Down
2 changes: 1 addition & 1 deletion examples/advanced/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"dependencies": {
"@react-navigation/native": "^6.1.5",
"@react-navigation/native-stack": "^6.9.11",
"pallycon-react-native-sdk": "file:../../package_v1.1.0_b37.tgz",
"pallycon-react-native-sdk": "file:../../package_v1.1.0_b40.tgz",
"react": "^18.2.0",
"react-native": "0.71.2",
"react-native-base64": "^0.2.1",
Expand Down
6 changes: 3 additions & 3 deletions examples/advanced/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5680,9 +5680,9 @@
"resolved" "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz"
"version" "2.2.0"

"pallycon-react-native-sdk@file:../../package_v1.1.0_b37.tgz":
"integrity" "sha512-xWOST62LMby70C4T561bKxf4TbwXqATC4pLviGxaAy9iyj0MZ34rl2u0hGE4K3PXPfvLJYbRp83CZqpf/jZHaA=="
"resolved" "file:../../package_v1.1.0_b37.tgz"
"pallycon-react-native-sdk@file:../../package_v1.1.0_b40.tgz":
"integrity" "sha512-zkQ0CVnuhAUwvhREWAo+rcnT4qn0r2jYWq8n89AN8TsQb6XeRcbvQUTGBVJMXbwOXDroP/zhKxIEOqzxyF2Lkg=="
"resolved" "file:../../package_v1.1.0_b40.tgz"
"version" "1.1.0"
dependencies:
"@types/react-native-base64" "^0.2.0"
Expand Down
2 changes: 1 addition & 1 deletion examples/basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"@react-native-community/cli-platform-android": "^10.1.3",
"@react-navigation/native": "^6.1.5",
"@react-navigation/native-stack": "^6.9.11",
"pallycon-react-native-sdk": "file:../../package_v1.0.0_b37.tgz",
"pallycon-react-native-sdk": "^1.1.0",
"react": "18.2.0",
"react-native": "0.71.2",
"react-native-video": "file:../react-native-video/react-native-video-6.0.0-alpha.5_b09.tgz"
Expand Down
1 change: 1 addition & 0 deletions ios/Util/EventEmitter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ class EventEmitter {
PallyConEventType.networkConnectedError.name,
PallyConEventType.detectedDeviceTimeModifiedError.name,
PallyConEventType.migrationError.name,
PallyConEventType.licenseCipherError.name,
PallyConEventType.unknownError.name,
PallyConEventType.progress.name,
]
Expand Down
2 changes: 2 additions & 0 deletions ios/models/PallyConEventType.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ enum PallyConEventType {
case networkConnectedError
case detectedDeviceTimeModifiedError
case migrationError
case licenseCipherError
case unknownError
case progress
}
Expand All @@ -32,6 +33,7 @@ extension PallyConEventType {
case .networkConnectedError: return "networkConnectedError"
case .detectedDeviceTimeModifiedError: return "detectedDeviceTimeModifiedError"
case .migrationError: return "migrationError"
case .licenseCipherError: return "licenseCipherError"
case .unknownError: return "unknownError"
case .progress: return "progress"
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pallycon-react-native-sdk",
"version": "1.1.0",
"version": "1.1.1",
"description": "pallyCon multi-drm react-native sdk",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down

0 comments on commit 771258a

Please sign in to comment.