Skip to content

Commit

Permalink
invalid license on iOS 13 #105
Browse files Browse the repository at this point in the history
  • Loading branch information
EddyVerbruggen committed Sep 27, 2019
1 parent a438fbd commit 42ae837
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 65 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-plugin-native-keyboard",
"version": "2.0.3",
"version": "2.0.4",
"description": "This plugin aims to solve common keyboard problems encountered with Cordova / PhoneGap apps. The messenger component (see screenshots) is ready for production, but this plugin will have more tricks up its sleeve. I'll document those once they're ready for primetime as well.",
"cordova": {
"id": "cordova-plugin-native-keyboard",
Expand Down
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-native-keyboard"
version="2.0.3">
version="2.0.4">

<name>Native Keyboard</name>

Expand Down
53 changes: 0 additions & 53 deletions src/ios/lib/NativeKeyboard.framework/Headers/IonIcons-iOS.h

This file was deleted.

55 changes: 45 additions & 10 deletions src/ios/lib/NativeKeyboard.framework/Headers/IonIcons.h
Original file line number Diff line number Diff line change
@@ -1,18 +1,53 @@
//
// ionicons.h
// ionicons
//
// Created by sweetman on 5/1/17.
// Copyright © 2017 David Sweetman. All rights reserved.
// IonIcons.h
// ionicons-iOS is Copyright 2013 David Sweetman and released under the MIT license.
// http://www.taptemplate.com
// ==========================
//

#import <UIKit/UIKit.h>

//! Project version number for ionicons.
FOUNDATION_EXPORT double ioniconsVersionNumber;
#import "ionicons-codes.h"

@interface IonIcons : NSObject

//================================
// Font and Label Methods
//================================

/*! Convenience method to get the ionicons font.
*/
+ (UIFont*)fontWithSize:(CGFloat)size;

/*! Convenience method to make a sized-to-fit UILabel containing an icon in the given font size and color.
*/
+ (UILabel*)labelWithIcon:(NSString*)icon_name
size:(CGFloat)size
color:(UIColor*)color;

/*! Adjust an existing UILabel to show an ionicon.
*/
+ (void)label:(UILabel*)label
setIcon:(NSString*)icon_name
size:(CGFloat)size
color:(UIColor*)color
sizeToFit:(BOOL)shouldSizeToFit;

//================================
// Image Methods
//================================

//! Project version string for ionicons.
FOUNDATION_EXPORT const unsigned char ioniconsVersionString[];
/*! Create a UIImage of an ionocin, making the image and the icon the same size:
*/
+ (UIImage*)imageWithIcon:(NSString*)icon_name
size:(CGFloat)size
color:(UIColor*)color;

#import "IonIcons-iOS.h"
/*! Create a UIImage of an ionocin, and specify different sizes for the image and the icon:
*/
+ (UIImage*)imageWithIcon:(NSString*)icon_name
iconColor:(UIColor*)color
iconSize:(CGFloat)iconSize
imageSize:(CGSize)imageSize;

@end
Binary file modified src/ios/lib/NativeKeyboard.framework/Info.plist
Binary file not shown.
Binary file modified src/ios/lib/NativeKeyboard.framework/NativeKeyboard
Binary file not shown.

0 comments on commit 42ae837

Please sign in to comment.