Skip to content

Commit

Permalink
Merge pull request #25 from taras-omelchuk/file-transfer
Browse files Browse the repository at this point in the history
FileTransfer plugin v1.3.0
  • Loading branch information
MSohm authored May 25, 2022
2 parents eab16ca + 4f96e47 commit 093337a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 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-bbd-file-transfer",
"version": "1.2.0",
"version": "1.3.0",
"description": "BlackBerry Dynamics Cordova File Transfer Plugin",
"types": "./types/index.d.ts",
"license": "SEE LICENSE IN LICENSE",
Expand All @@ -14,7 +14,7 @@
},
"repository": {
"name": "cordova-plugin-bbd-file-transfer",
"version": "1.2.0",
"version": "1.3.0",
"private": true,
"type": "git",
"url": "https://github.com/blackberry/BlackBerry-Dynamics-Cordova-Plugins/tree/file-transfer"
Expand Down
6 changes: 3 additions & 3 deletions plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>

<!--
Copyright (c) 2021 BlackBerry Limited. All Rights Reserved.
Copyright (c) 2022 BlackBerry Limited. All Rights Reserved.
Some modifications to the original cordova-plugin-file-transfer
from https://github.com/apache/cordova-plugin-file-transfer/
Expand All @@ -23,7 +23,7 @@
under the License.
-->

<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-bbd-file-transfer" version="1.2.0">
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-bbd-file-transfer" version="1.3.0">
<name>cordova-plugin-bbd-file-transfer</name>
<description>BlackBerry Dynamics Cordova File Transfer Plugin</description>
<license>SEE LICENSE IN LICENSE</license>
Expand All @@ -35,7 +35,7 @@
Original Cordova FileTransfer plugin link: https://github.com/apache/cordova-plugin-file-transfer
</info>

<dependency id="cordova-plugin-bbd-file" url="git+https://github.com/blackberry/blackberry-dynamics-cordova-plugins#file" version="^1.2.0" />
<dependency id="cordova-plugin-bbd-file" url="git+https://github.com/blackberry/blackberry-dynamics-cordova-plugins#file" version="^1.3.0" />

<js-module src="www/FileTransferError.js" name="FileTransferError">
<clobbers target="window.FileTransferError" />
Expand Down
7 changes: 6 additions & 1 deletion src/ios/CDVFileTransferBD.m
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright (c) 2021 BlackBerry Limited. All Rights Reserved.
Copyright (c) 2022 BlackBerry Limited. All Rights Reserved.
Some modifications to the original Cordova FileTransfer plugin
from https://github.com/apache/cordova-plugin-file-transfer/
Expand Down Expand Up @@ -31,7 +31,12 @@ Licensed to the Apache Software Foundation (ASF) under one
#import <CFNetwork/CFNetwork.h>

#import <BlackBerryDynamics/GD/GDFileManager.h>

#ifdef BBD_CAPACITOR
#import "GDCordovaLogger.h"
#else
#import <BbdBasePlugin/GDCordovaLogger.h>
#endif

#ifndef DLog
#ifdef DEBUG
Expand Down

0 comments on commit 093337a

Please sign in to comment.