Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-04-27 | cython: Fix build error after error constant rename | Nikias Bassen | 1 | -2/+2 | |
2016-12-21 | cython: Make sure to pass correct CFLAGS for libplist | Nikias Bassen | 1 | -1/+1 | |
2015-07-10 | lockdown: Add more error codes | Nikias Bassen | 1 | -0/+8 | |
2015-01-27 | installation_proxy: Refactor implementation, add new commands and helpers | Martin Szulecki | 1 | -3/+3 | |
2015-01-12 | cython: Add receive/receive_timeout methods for iDeviceConnection to receive ↵ | Hao Zhou | 2 | -0/+32 | |
data from a connection | |||||
2015-01-12 | cython: Add new FILE_RELAY_E_PERMISSION_DENIED(-6) error to detect ↵ | Hao Zhou | 1 | -0/+2 | |
permission denied on iOS8+ | |||||
2015-01-12 | lockdown: Refactor internal error checking and add more native errors to enum | Martin Szulecki | 1 | -32/+64 | |
2014-12-09 | cython: Add get_path_for_bundle_identifier() method to InstallationProxyClient | Hao Zhou | 1 | -0/+19 | |
2014-12-09 | cython: Add DebugServerClient class to communicate with debugserver | Hao Zhou | 3 | -1/+250 | |
2014-10-14 | cython: Enforce default symbol visibility to make bindings loadable | Martin Szulecki | 1 | -1/+1 | |
2014-10-03 | cython: Use output variables in Makefile instead of relative paths | Martin Szulecki | 1 | -7/+7 | |
2014-09-12 | cython: Don't fail printing an error message with no string description | Kurt Kiefer | 1 | -1/+4 | |
Change-Id: I571e5f01423b505223ef7a9b1faedcb94011acd3 | |||||
2014-09-12 | cython: Add error codes and messages for LOCKDOWN_E_PAIRING_DIALOG_PENDING ↵ | Kurt Kiefer | 1 | -0/+4 | |
and LOCKDOWN_E_USER_DENIED_PAIRING Change-Id: I159fe465ee964c391c130b756404fb80f56e160a | |||||
2014-03-12 | Changes to make cython HouseArrestClient functional. | Kurt Kiefer | 2 | -4/+5 | |
Allow HouseArrestClient to initialize the AfcClient without running afc's normal __cinit__ body, and expose send_command and send_request methods to python. Signed-off-by: Martin Szulecki <m.szulecki@libimobiledevice.org> | |||||
2013-07-01 | cython: Remove erroneous free() | Dawn K. Isabel | 1 | -2/+0 | |
2013-06-06 | cython: Add support for using Python 'with' statement when opening AfcFile | Dawn K. Isabel | 1 | -0/+6 | |
2013-05-31 | cython: Update declaration for LockdownServiceDescriptor to match definition | Martin Szulecki | 1 | -1/+1 | |
2013-05-31 | cython: Explicitly cast ssl_enabled when calling lockdownd_start_session | Dawn K. Isabel | 1 | -1/+1 | |
2013-05-31 | cython: Add Afc2Client class to allow jailbroken filesystem access | Dawn K. Isabel | 1 | -0/+32 | |
2013-05-31 | cython: Initialize some pointers to NULL | Dawn K. Isabel | 1 | -4/+4 | |
2013-05-31 | cython: Add read() method to AfcFile | Dawn K. Isabel | 1 | -0/+14 | |
2013-05-31 | cython: Make LockdownServiceDescriptor inherit from Base, since it calls ↵ | Dawn K. Isabel | 1 | -1/+1 | |
self.handle_error | |||||
2013-02-27 | cython: Add all service protocols which brings Python bindings to 100% coverage | Martin Szulecki | 9 | -0/+661 | |
2013-02-27 | cython: Port all binding code to latest API and fix broken compilation | Martin Szulecki | 12 | -47/+137 | |
2013-02-27 | cython: Add support for receive_with_timeout() method on PropertyListService | Martin Szulecki | 2 | -0/+19 | |
2013-02-27 | cython: Remove custom stdint.pxi and use libc.stdint cimport instead | Martin Szulecki | 3 | -21/+2 | |
2012-05-17 | cython: Do not override final methods as comply to Cython >= 0.16 strict check | Martin Szulecki | 4 | -9/+8 | |
2012-03-22 | Mass replace UUID by UDID, which is the correct term for it | Martin Szulecki | 2 | -19/+19 | |
2012-03-21 | cython: Update mobilesync API definitions to latest C headers | Martin Szulecki | 1 | -15/+19 | |
2012-03-21 | cython: Silence a couple of warnings when generating bindings with Cython | Martin Szulecki | 1 | -1/+1 | |
The Cython team apparently does not care a lot about polishing warnings out, thus we have to supress them here or it looks really ugly. | |||||
2012-03-20 | cython: Update to latest API and fix deprecation warnings with cython 0.13+ | Martin Szulecki | 7 | -25/+27 | |
2012-03-20 | cython: Remove glib2 flags from makefile | Martin Szulecki | 1 | -2/+2 | |
2012-03-20 | Renamed last_sync_time and current_time to device_anchor and host_anchor. | Bryan Forbes | 1 | -4/+4 | |
2012-03-20 | Python bindings for new sync interface. | Bryan Forbes | 4 | -1/+133 | |
2012-03-20 | More memory leak plugging. Some code cleanup too. | Bryan Forbes | 11 | -107/+193 | |
2012-03-20 | Used issubclass to determine if a class object can be passed. | Bryan Forbes | 1 | -1/+1 | |
2012-03-20 | Removed property_list_client.pxi. | Bryan Forbes | 3 | -21/+54 | |
Added notification strings. | |||||
2012-03-20 | Changed some parent class relationships. | Bryan Forbes | 4 | -4/+4 | |
2012-03-20 | Use stdlib.free and plist.plist_free. | Bryan Forbes | 6 | -22/+19 | |
2012-03-20 | Finished wrapping afc interface. | Bryan Forbes | 1 | -3/+28 | |
Implemented open(), lock(), link(), and symlink(). | |||||
2012-03-20 | Implemented hierarchy suggested by Martin S. | Bryan Forbes | 14 | -187/+472 | |
Implemented new BaseService constructors. Moved LockdownClient to lockdown.pxi. Implemented more of the afc interface. | |||||
2012-03-20 | Cleaned up Makefile.am. | Bryan Forbes | 7 | -32/+67 | |
Added the cython m4 files. Cleaned up afc.pxi. Make sure the event callback and installation proxy callback aquire the GIL. Implemented some cleanup before the error handlers raise. | |||||
2012-03-20 | Fixed some class names and inheritance chains. | Bryan Forbes | 4 | -5/+7 | |
2012-03-20 | Added all remaining classes from libimobiledevice. | Bryan Forbes | 12 | -37/+505 | |
2012-03-20 | Added afc.pxi. | Bryan Forbes | 10 | -87/+283 | |
More errors handled. Changed error codes to enums in cython defs. | |||||
2012-03-20 | Added base class for more efficient error handling. | Bryan Forbes | 7 | -67/+113 | |
2012-03-20 | Moved everything but iDevice and LockdownClient to pxi files. | Bryan Forbes | 9 | -198/+311 | |
Added MobileBackupClient and PropertyListService. | |||||
2012-03-20 | Removed stdint.pxi. | Bryan Forbes | 2 | -38/+66 | |
Implemented event_subscribe, event_unsubscribe, get_device_list. Improved Error classes. | |||||
2012-03-20 | Added cython bindings. | Bryan Forbes | 3 | -0/+378 | |