mirror of
https://github.com/ZaidElkurdi/AssistantPlus.git
synced 2025-01-22 11:28:31 +00:00
- Fix for crash when deleting
This commit is contained in:
parent
71a4a4cc47
commit
611764adf4
@ -1 +1 @@
|
||||
42
|
||||
46
|
1
assistant+/.theos/packages/com.zaid.assistant+-1.0.1
Normal file
1
assistant+/.theos/packages/com.zaid.assistant+-1.0.1
Normal file
@ -0,0 +1 @@
|
||||
2
|
Binary file not shown.
Binary file not shown.
@ -1,11 +1,10 @@
|
||||
Package: com.zaid.assistant+
|
||||
Name: Assistant+
|
||||
Depends: libactivator (>= 1.8.3), mobilesubstrate
|
||||
Version: 1.0.1
|
||||
Architecture: iphoneos-arm
|
||||
Description: Assign commands to trigger Activator events from Siri, set up custom replies for Siri, and also use and create plugins for Siri using the Assistant+ plugin framework
|
||||
Maintainer: Zaid Elkurdi
|
||||
Author: Zaid Elkurdi
|
||||
Section: Tweaks
|
||||
Icon: file:///Applications/AssistantPlusApp.app/Icon.png
|
||||
Version: 1.0.0-42
|
||||
Installed-Size: 1592
|
||||
|
@ -170,7 +170,10 @@
|
||||
APActivatorListener *toDelete = [savedListeners objectAtIndex:indexPath.row];
|
||||
[savedListeners removeObject:toDelete];
|
||||
[self saveListenersToFile];
|
||||
[self.listenersTable reloadData];
|
||||
|
||||
[self.listenersTable beginUpdates];
|
||||
[self.listenersTable deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
|
||||
[self.listenersTable endUpdates];
|
||||
}
|
||||
}
|
||||
|
||||
|
Binary file not shown.
@ -141,7 +141,10 @@
|
||||
APCustomReply *toDelete = [savedReplies objectAtIndex:indexPath.row];
|
||||
[savedReplies removeObject:toDelete];
|
||||
[self saveRepliesToFile];
|
||||
[self.repliesTableView reloadData];
|
||||
|
||||
[self.repliesTableView beginUpdates];
|
||||
[self.repliesTableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
|
||||
[self.repliesTableView endUpdates];
|
||||
}
|
||||
}
|
||||
|
||||
|
Binary file not shown.
@ -1,7 +1,7 @@
|
||||
Package: com.zaid.assistant+
|
||||
Name: Assistant+
|
||||
Depends: libactivator (>= 1.8.3), mobilesubstrate
|
||||
Version: 1.0.0
|
||||
Version: 1.0.1
|
||||
Architecture: iphoneos-arm
|
||||
Description: Assign commands to trigger Activator events from Siri, set up custom replies for Siri, and also use and create plugins for Siri using the Assistant+ plugin framework
|
||||
Maintainer: Zaid Elkurdi
|
||||
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user