1. 892729c java: add error modes, version() & support diet engine by Nguyen Anh Quynh · 10 years ago
  2. 548b6b5 cython: add comments for all API methods by Nguyen Anh Quynh · 10 years ago
  3. 6f7e3a0 cython: add missing counters for CsDetail. this fixes some crashes when accessing related data. also fixes reg_read() & reg_write() for CsInsn by Nguyen Anh Quynh · 10 years ago
  4. f4e2344 cython: add __dealloc__ method to Cs class to free memory when destroying its object. this fixes a memleak bug by Nguyen Anh Quynh · 10 years ago
  5. 5c7701d python: add some comments for the main APIs by Nguyen Anh Quynh · 10 years ago
  6. 66b3347 java: fix call to cs_close() following core's API change by Nguyen Anh Quynh · 10 years ago
  7. 282c882 python: fix the leftover cs_close() by Nguyen Anh Quynh · 10 years ago
  8. eb1cc13 python: update following the change to cs_close() API in the core by Nguyen Anh Quynh · 10 years ago
  9. b77d1f2 python: add new API cs_version_bind() to return binding's version (might differ from core's) by Nguyen Anh Quynh · 10 years ago
  10. 27a35fe python: fix bugs in test.py & test_lite.py by Nguyen Anh Quynh · 10 years ago
  11. 79b6cc7 cython: raise error when accessing irrelevant data in diet mode by Nguyen Anh Quynh · 10 years ago
  12. d5d06ed Merge branch 'x86' into next by Nguyen Anh Quynh · 10 years ago
  13. 0ea1251 python & java: update instruction constants after the last core update by Nguyen Anh Quynh · 10 years ago
  14. 07dc092 python: define CS_SUPPORT_DIET with relation to CS_ARCH_ALL for clarification by Nguyen Anh Quynh · 10 years ago
  15. 6d05f92 python: fix some wrong comments on diet related code by Nguyen Anh Quynh · 10 years ago
  16. d3500aa python: add a comment regarding CS_SUPPORT_DIET by Nguyen Anh Quynh · 10 years ago
  17. 3d5c0a4 python: cache diet option for better performance by Nguyen Anh Quynh · 10 years ago
  18. 56a5058 python: more check for diet engine in some APIs by Nguyen Anh Quynh · 10 years ago
  19. 51c822d python: raise CS_ERR_DIET error when accessing irrelevant data in diet engine by Nguyen Anh Quynh · 10 years ago
  20. fe45776 python: expose cs_disasm_lite() to __init__.py by Nguyen Anh Quynh · 10 years ago
  21. a5818fc Merge branch 'next' of https://github.com/aquynh/capstone into next by Nguyen Anh Quynh · 10 years ago
  22. a0a8a00 python: add getter for 'diet' & add support() API to Cs class by Nguyen Anh Quynh · 10 years ago
  23. 5ca85ab python: argument of cs_support() is query, not arch by Nguyen Anh Quynh · 10 years ago
  24. 9c715aa java: fix indentation by Nguyen Anh Quynh · 10 years ago
  25. bf723fa java: fix NULL pointr exception introduced by last commit. suggested by Dang Hoang Vu by Nguyen Anh Quynh · 10 years ago
  26. a25a7ad java: verify against core's version before doing anything by Nguyen Anh Quynh · 10 years ago
  27. a6d0d7a cython: verify against core's version before doing anything by Nguyen Anh Quynh · 10 years ago
  28. 0a8cbbe java: support 'diet' mode by Nguyen Anh Quynh · 10 years ago
  29. 972bb5b python: support 'diet' mode by Nguyen Anh Quynh · 10 years ago
  30. f86b21e python: update README for test_lite.py by Nguyen Anh Quynh · 10 years ago
  31. 5d0428e python: add test_lite.py to demonstrate new APIs: cs_disasm_lite() & Cs.disasm_lite() by Nguyen Anh Quynh · 10 years ago
  32. b38a1bf python: add quick/dirty function cs_disasm_lite() that only returns tuples rather than CsInsn objects by Nguyen Anh Quynh · 10 years ago
  33. 5288c2e python: add comments for disasm() & disasm_lite() by Nguyen Anh Quynh · 10 years ago
  34. e7c5695 java: fix memleak in disasm() by Nguyen Anh Quynh · 10 years ago
  35. 0154762 cython: bump package version to 2.1 by Nguyen Anh Quynh · 10 years ago
  36. 22f1c17 python: fix memleak error in Cython's disasm() & disasm_lite() by Nguyen Anh Quynh · 10 years ago
  37. abb48c7 python: fix identation by removing tabs by Nguyen Anh Quynh · 10 years ago
  38. 43cce29 python: implement disasm_lite() for Cython by Nguyen Anh Quynh · 10 years ago
  39. 071a7fb python: bump python package version to 2.1 by Nguyen Anh Quynh · 10 years ago
  40. d53c165 python: implement disasm_lite() method which only return tuples of some critical info. this improves performance by 15% by Nguyen Anh Quynh · 10 years ago
  41. 046902a python & java: update constants following last change to PPC arch by Nguyen Anh Quynh · 10 years ago
  42. 43a9a9d bump API version from 2.0 to 2.1 for core + Python & Java bindings by Nguyen Anh Quynh · 10 years ago
  43. 748e4f8 python & java: update following last update to Mips core by Nguyen Anh Quynh · 10 years ago
  44. 590d1cf python: verify binding's API version with core's & raise error if they are different by Nguyen Anh Quynh · 10 years ago
  45. 5bd0e2e java & python: update instructions following the last x86 core update by Nguyen Anh Quynh · 10 years ago
  46. ea5ed83 python: improve README for cython binding by Nguyen Anh Quynh · 10 years ago
  47. 4edf776 Merge branch 'master' of https://github.com/dannyleates/capstone into next by Nguyen Anh Quynh · 10 years ago
  48. 8bd0fe4 Update README by dannyleates · 10 years ago
  49. b2a8151 Update Readme by dannyleates · 10 years ago
  50. 5d1244d java: update X86_const.java after last update to x86 core by Nguyen Anh Quynh · 10 years ago
  51. f46713b python: update x86_const.py after last update to x86 core by Nguyen Anh Quynh · 10 years ago
  52. fc947e0 python: update Cython for the change on @op_str in the core by Nguyen Anh Quynh · 11 years ago
  53. 9eb9f53 python & java: update following the last change to @op_str by Nguyen Anh Quynh · 11 years ago
  54. 0941042 java: update Mips constants following the change in Mips' core by Nguyen Anh Quynh · 11 years ago
  55. a4e6e2a python: update Mips constants following the change in Mips' core by Nguyen Anh Quynh · 11 years ago
  56. 44cebf2 python & java: pump API to 2.0 by Nguyen Anh Quynh · 11 years ago
  57. 7900458 python: fix Cython binding following the latest core change on @op_str by Nguyen Anh Quynh · 11 years ago
  58. a71a299 java: update @opStr & ARM's @Operands following the changes in core by Nguyen Anh Quynh · 11 years ago
  59. e03da92 python: update @op_str & ARM's @operands following the changes in core by Nguyen Anh Quynh · 11 years ago
  60. a84fe66 python: indentation for cython code. also added author credits to these new files by Nguyen Anh Quynh · 11 years ago
  61. aaaf345 python: update clean target for *.pyx files by Nguyen Anh Quynh · 11 years ago
  62. e61c504 Clean up addition cython code by danghvu · 11 years ago
  63. cfd41dd Improve cython by using CCsInsn when possible by danghvu · 11 years ago
  64. e14556a python: generator yields nothing rather than [] on failure by Nguyen Anh Quynh · 11 years ago
  65. 377bced python: correct comment on default value of @detail by Nguyen Anh Quynh · 11 years ago
  66. 92f8296 python: turn off detail by default, and raise CS_ERR_DETAIL when detail is OFF by Nguyen Anh Quynh · 11 years ago
  67. 4c009c7 python: instructions on installing Cython as dependency by Nguyen Anh Quynh · 11 years ago
  68. d35416a python: add instructions on Cython-based binding to README by Nguyen Anh Quynh · 11 years ago
  69. 5dba289 python: revert the directory name change, so rename 'cython' back to 'pyx' by Nguyen Anh Quynh · 11 years ago
  70. f042e57 python: rename pyx/ to cython/ by Nguyen Anh Quynh · 11 years ago
  71. b49f80d python: make install is the preferred way to install python binding by Nguyen Anh Quynh · 11 years ago
  72. 71fe283 python: make clean should not remove everything in pyx/ by Nguyen Anh Quynh · 11 years ago
  73. 58a3e3e python: cleanup setup*.py by Nguyen Anh Quynh · 11 years ago
  74. f7f15a8 python: cleaning pkg directory before installing by Nguyen Anh Quynh · 11 years ago
  75. 7e0c2cd python: add compile_args for cython by Nguyen Anh Quynh · 11 years ago
  76. b3923cf python: copying code from capstone/ to pyx/ rather than duplicating code by Nguyen Anh Quynh · 11 years ago
  77. 6b8445b python: proper support for cython by Nguyen Anh Quynh · 11 years ago
  78. 8212470 python: another fix for cython by Nguyen Anh Quynh · 11 years ago
  79. 4c259d4 python: temporary fix for cython by Nguyen Anh Quynh · 11 years ago
  80. 99d365f python: cython support - thanks to Tan Sheng Di for helps by Nguyen Anh Quynh · 11 years ago
  81. 2bb6bdb python: CsInsn's errno() method is missing self argument by Nguyen Anh Quynh · 11 years ago
  82. fc4bc12 python: correct CS_OPT_SYNTAX_NOREGNAME & add 1 more test to test.py. issue reported by Dang Hoang Vu by Nguyen Anh Quynh · 11 years ago
  83. 646ca6b python: add missing PPC support to the last commit by Nguyen Anh Quynh · 11 years ago
  84. 02874e6 Shorten python code for getting detail info by danghvu · 11 years ago
  85. c263d35 correct comments on CS_OPT_ON/OFF regarding default detail option by Nguyen Anh Quynh · 11 years ago
  86. 6a1107c java: update following the change to detail mode in the core by Nguyen Anh Quynh · 11 years ago
  87. 428fdcd python: update following the change to detail mode in the core by Nguyen Anh Quynh · 11 years ago
  88. 2ba53f5 python: avoid copying data inside CsInsn by saving raw information and use getters. Idea of Dang Hoang Vu by Nguyen Anh Quynh · 11 years ago
  89. 83dd67e java: OpenJDK 7 is also supported by Nguyen Anh Quynh · 11 years ago
  90. d2f46d7 remove bindings/csharp - we no longer maintain it by Nguyen Anh Quynh · 11 years ago
  91. bc97e6c bump package version to 2.0 by Nguyen Anh Quynh · 11 years ago
  92. 1acfd0b move insn_cache into cs_struct to gurantee thread-safe by Nguyen Anh Quynh · 11 years ago
  93. 1044c3e java: indentation fix by Nguyen Anh Quynh · 11 years ago
  94. fa02175 python: delete redundant .gitignore by Nguyen Anh Quynh · 11 years ago
  95. 61e572b python: update to support PPC by Nguyen Anh Quynh · 11 years ago
  96. 91e532d print out ppc_bh information in test_ppc.c & TestPpc.java by Nguyen Anh Quynh · 11 years ago
  97. c476765 Update java binding for PPC arch by danghvu · 11 years ago
  98. 5611de0 Fix const generator to account for PPC enum style by danghvu · 11 years ago
  99. 5cd6b34 python: add PPC test to test.py & test_detail.py by Nguyen Anh Quynh · 11 years ago
  100. f1d489b ppc: support details information by Nguyen Anh Quynh · 11 years ago