Skip to content

Commit 6636bbe

Browse files
Merge pull request #1 from CoderGamester/develop
Release 0.1.1
2 parents 348611f + 8b5f501 commit 6636bbe

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this package will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [0.1.1] - 2020-07-31
8+
9+
**Fixed**:
10+
- Package now working properly with iOS
11+
712
## [0.1.0] - 2020-07-30
813

914
- Initial submission for package distribution

Runtime/Plugins/iOS/NativeUi.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ void AlertMessage (bool isSheet, char* title, char* message, char* buttonsText[]
1313

1414
for (int i = 0; i < buttonsLength; i++)
1515
{
16-
NSString *buttonText = ToNSString(buttons[i]);
16+
NSString *buttonText = ToNSString(buttonsText[i]);
1717
int index = i;
1818
UIAlertAction * button = [UIAlertAction actionWithTitle:buttonText style:(UIAlertActionStyle)buttonsStyle[i] handler:^(UIAlertAction * action)
1919
{

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "com.gamelovers.nativeui",
33
"displayName": "Native UI",
4-
"version": "0.1.0",
4+
"version": "0.1.1",
55
"unity": "2019.4",
66
"description": "This package provides the OS functionality to show the native UI alerts, Game Review PopUp and message Toasts",
77
"type": "library"

0 commit comments

Comments
 (0)