Rename "standalone" to "profiler".

This commit is contained in:
Bartosz Taudul 2018-08-07 22:26:37 +02:00
parent 8d053b5179
commit a54191cb3c
22 changed files with 7 additions and 6 deletions

View File

@ -6,10 +6,10 @@ image:
- Ubuntu
build_script:
- cmd: msbuild .\update\build\win32\update.vcxproj
- cmd: msbuild .\standalone\build\win32\Tracy.vcxproj
- cmd: msbuild .\profiler\build\win32\Tracy.vcxproj
- cmd: msbuild .\capture\build\win32\capture.vcxproj
- sh: sudo apt-get update && sudo apt-get -y install libglfw3-dev libgtk2.0-dev
- sh: make -C update/build/unix debug release
- sh: make -C standalone/build/unix debug release
- sh: make -C profiler/build/unix debug release
- sh: make -C capture/build/unix debug release
test: off

7
NEWS
View File

@ -9,6 +9,7 @@ a mistake.
v0.4 (xxxx-xx-xx)
-----------------
- Renamed "standalone" utility to "profiler".
- Added trace update utility, which will convert files saved in previous
versions of tracy to be up-to-date.
- Fix regression causing varying size of profiler window for different
@ -37,9 +38,9 @@ v0.4 (xxxx-xx-xx)
- Added named versions of tracing macros that allow specifying scoped
variable name.
- The main profiler window is now kept at the bottom of windows stack.
- The "standalone" utility will now use a custom embedded font.
- The "profiler" utility will now use a custom embedded font.
- Microseconds are now displayed using correct symbol ('μ' instead of 'u').
- Unix builds of the "standalone" utility will now ask for a file name when
- Unix builds of the "profiler" utility will now ask for a file name when
saving a trace.
- Progress popup is now displayed when a trace file is loading.
- Zones that share source location with a zone that is hovered over are now
@ -47,7 +48,7 @@ v0.4 (xxxx-xx-xx)
- Added ability to zoom-in to a selection range made using middle mouse
button.
- Holding the ctrl key will switch to zoom-out mode.
- The "standalone" utility will use less resources when its window is
- The "profiler" utility will use less resources when its window is
out-of-focus or minimized.
- Added support for cross-DLL profiling.
- Items in options menu (locks, threads, etc.) are now described with number

View File

@ -155,7 +155,7 @@ You should compile the main library with the \texttt{tracy/TracyClient.cpp} sour
\subsection{Running the server}
The easiest way to get going is to build the standalone server, available in the \texttt{standalone} directory. You can connect to localhost or remote clients and view the collected data right away.
The easiest way to get going is to build the standalone server, available in the \texttt{profiler} directory. You can connect to localhost or remote clients and view the collected data right away.
If you prefer to inspect the data only after a trace has been performed, you may use the command line utility in the \texttt{capture} directory. It will save a data dump that may be later opened in the graphical viewer application.