Skip to content

Commit 960f2f6

Browse files
committed
Fixes lost events after project rename.
1 parent 006735e commit 960f2f6

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed
-32 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

build/extension.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<extension xmlns="http://ns.adobe.com/air/extension/32.0">
22
<id>com.github.airext.NativeKeyboardText</id>
3-
<versionNumber>0.20.0</versionNumber>
3+
<versionNumber>0.21.0</versionNumber>
44
<platforms>
55
<platform name="iPhone-ARM">
66
<applicationDeployment>

native-keyboard-text-air/native-keyboard-text-debug-simple/NativeKeyboardTextDebugSimple-app.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
Values can also be 1-part or 2-part. It is not necessary to have a 3-part value.
2424
An updated version of application must have a versionNumber value higher than the previous version. Required for namespace >= 2.5.
2525
For iOS Apps, this represents build number. -->
26-
<versionNumber>1.0.4</versionNumber>
26+
<versionNumber>1.0.5</versionNumber>
2727

2828
<!-- A string value (such as "v1", "2.5", or "Alpha 1") that represents the version of the application, as it should be shown to users.
2929
For iOS Apps, this represents application version number and format should be (<0-999>.<0-999>.<0-999>).

native-keyboard-text-air/native-keyboard-text-debug/NativeKeyboardTextDebug-app.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
Values can also be 1-part or 2-part. It is not necessary to have a 3-part value.
2424
An updated version of application must have a versionNumber value higher than the previous version. Required for namespace >= 2.5.
2525
For iOS Apps, this represents build number. -->
26-
<versionNumber>1.0.4</versionNumber>
26+
<versionNumber>1.0.5</versionNumber>
2727

2828
<!-- A string value (such as "v1", "2.5", or "Alpha 1") that represents the version of the application, as it should be shown to users.
2929
For iOS Apps, this represents application version number and format should be (<0-999>.<0-999>.<0-999>).

native-keyboard-text-ios/NativeKeyboardText/FloatingKeyboard/ANXNativeKeyboardText.m

+3-3
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ @implementation ANXNativeKeyboardText (UITextFieldDelegate)
403403

404404
- (BOOL)textFieldShouldReturn:(UITextField *)textField {
405405
[self hideKeyboard:nil];
406-
[self dispatch:@"FloatingKeyboard.Keyboard.Input" withLevel:textField.text];
406+
[self dispatch:@"NativeKeyboardText.Keyboard.Input" withLevel:textField.text];
407407
return NO;
408408
}
409409

@@ -425,13 +425,13 @@ - (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRang
425425

426426
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField {
427427
NSLog(@"[NativeKeyboardText textFieldShouldBeginEditing]");
428-
[self dispatch:@"FloatingKeyboard.Keyboard.Show" withLevel:@""];
428+
[self dispatch:@"NativeKeyboardText.Keyboard.Show" withLevel:@""];
429429
return YES;
430430
}
431431

432432
- (void)textFieldDidEndEditing:(UITextField *)textField reason:(UITextFieldDidEndEditingReason)reason {
433433
NSLog(@"[NativeKeyboardText textFieldDidEndEditing]");
434-
[self dispatch:@"FloatingKeyboard.Keyboard.Hide" withLevel:[NSString stringWithFormat:@"{\"oldText\":\"%@\", \"newText\":\"%@\"}", _params.text ? _params.text : @"", textField.text]];
434+
[self dispatch:@"NativeKeyboardText.Keyboard.Hide" withLevel:[NSString stringWithFormat:@"{\"oldText\":\"%@\", \"newText\":\"%@\"}", _params.text ? _params.text : @"", textField.text]];
435435
}
436436

437437
@end

0 commit comments

Comments
 (0)