Skip to content

Commit

Permalink
v3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeex committed Dec 18, 2013
1 parent a81e326 commit 6698c2d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
Changes in version 3.6
======================

o Added SAMPGDK_TIMER_CALL macro for timer callbacks (expands to SAMPGDK_CALL)
o Added new functions for calling natives dynamically:

- sampgdk_find_native(const char *name)
- sampgdk_call_native(AMX_NATIVE native, cell *params)
- sampgdk_invoke_native(AMX_NATIVE, const char *format, ...)

o Minor code and build system improvements

Changes in version 3.5
======================

Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ option(SAMPGDK_STATIC "Build static library instead" OFF)
option(SAMPGDK_BUILD_PLUGINS "Build example plugins" OFF)

set(SAMPGDK_VERSION_MAJOR "3")
set(SAMPGDK_VERSION_MINOR "5")
set(SAMPGDK_VERSION_MINOR "6")
set(SAMPGDK_VERSION_PATCH "0")
set(SAMPGDK_VERSION_TWEAK "0")
set(SAMPGDK_VERSION_STRING "3.5")
set(SAMPGDK_VERSION_STRING "3.6")

list(APPEND CMAKE_MODULE_PATH
"${CMAKE_CURRENT_SOURCE_DIR}/cmake"
Expand Down

0 comments on commit 6698c2d

Please sign in to comment.