mirror of
https://github.com/wolfpld/tracy
synced 2026-01-19 04:52:09 +00:00
Relase 0.12.1.
This commit is contained in:
13
NEWS
13
NEWS
@@ -2,6 +2,19 @@ Note: There is no guarantee that version mismatched client and server will
|
||||
be able to talk with each other. Network protocol breakages won't be listed
|
||||
here.
|
||||
|
||||
v0.12.1 (2025-06-07)
|
||||
--------------------
|
||||
|
||||
- Fixed window size calculation on macOS, most notably enabling the vertical
|
||||
timeline scroll bar.
|
||||
- Made debug builds of the GUI profiler work with broken Apple compiler.
|
||||
- Fixed profiler compilation when build directory is outside the source
|
||||
directory.
|
||||
- Set proper include path when using CMake integration.
|
||||
- Added the Tracy Metal and CUDA headers to CMake install configuration.
|
||||
- Documented flame graphs.
|
||||
|
||||
|
||||
v0.12.0 (2025-05-30)
|
||||
--------------------
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
project('tracy', ['cpp'], version: '0.12.0', meson_version: '>=1.3.0', default_options : ['cpp_std=c++11'])
|
||||
project('tracy', ['cpp'], version: '0.12.1', meson_version: '>=1.3.0', default_options : ['cpp_std=c++11'])
|
||||
|
||||
# internal compiler flags
|
||||
tracy_compile_args = []
|
||||
|
||||
@@ -5,7 +5,7 @@ namespace tracy
|
||||
{
|
||||
|
||||
constexpr ProtocolHistory_t ProtocolHistoryArr[] = {
|
||||
{ 74, FileVersion( 0, 12, 0 ) },
|
||||
{ 74, FileVersion( 0, 12, 0 ), FileVersion( 0, 12, 1 ) },
|
||||
{ 69, FileVersion( 0, 11, 1 ) },
|
||||
{ 66, FileVersion( 0, 11, 0 ) },
|
||||
{ 64, FileVersion( 0, 10, 0 ) },
|
||||
|
||||
@@ -7,7 +7,7 @@ namespace Version
|
||||
{
|
||||
enum { Major = 0 };
|
||||
enum { Minor = 12 };
|
||||
enum { Patch = 0 };
|
||||
enum { Patch = 1 };
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user