doc: Make changelog snippets uniform

This commit is contained in:
Jakob Bornecrantz 2020-05-29 09:57:24 +01:00
parent 9c44f2194d
commit f9ed82914b
47 changed files with 84 additions and 51 deletions

View file

@ -1 +1,2 @@
tracking: Add image undistort/normalize cache mechanism, to avoid needing to remap every frame.
tracking: Add image undistort/normalize cache mechanism, to avoid needing to
remap every frame.

View file

@ -1 +1,2 @@
tracking: Remove all path hardcoded calibration data loading and saving functions.
tracking: Remove all path hardcoded calibration data loading and saving
functions.

View file

@ -1 +1,2 @@
threading: New helper functions and structs for doing threaded work, these are on a higher level then the one in os wrappers.
threading: New helper functions and structs for doing threaded work, these are
on a higher level then the one in os wrappers.

View file

@ -1 +1,7 @@
Support optional systemd socket-activation: if not disabled at configure time, `monado-service` can be launched by systemd as a service with an associated socket. If the service is launched this way, it will use the systemd-created domain socket instead of creating its own. (If launched manually, it will still create its own as normal.) This allows optional auto-launching of the service when running a client (OpenXR) application. Associated systemd unit files are also included.
Support optional systemd socket-activation: if not disabled at configure time,
`monado-service` can be launched by systemd as a service with an associated
socket. If the service is launched this way, it will use the systemd-created
domain socket instead of creating its own. (If launched manually, it will still
create its own as normal.) This allows optional auto-launching of the service
when running a client (OpenXR) application. Associated systemd unit files are
also included.

View file

@ -1 +1 @@
Fix XCB memory leaks and correctly use XCB/Xlib interop.
main: Fix XCB memory leaks and correctly use XCB/Xlib interop.

View file

@ -1 +1 @@
Shorten Vulkan initializers.
main: Shorten Vulkan initializers.

View file

@ -1 +1 @@
Port XCB and direct mode back ends to plain C.
main: Port XCB and direct mode back ends to plain C.

View file

@ -1 +1,2 @@
Add support for Vive Pro, Valve Index, Oculus DK1, DK2 and CV1 to NVIDIA direct mode.
main: Add support for Vive Pro, Valve Index, Oculus DK1, DK2 and CV1 to NVIDIA
direct mode.

View file

@ -1 +1 @@
Split RandR and NVIDIA direct mode window back ends.
main: Split RandR and NVIDIA direct mode window back ends.

View file

@ -1 +1 @@
Improve synchronization and remove redundant vkDeviceWaitIdle calls.
main: Improve synchronization and remove redundant vkDeviceWaitIdle calls.

View file

@ -1 +1,2 @@
main: Delay the destruction of swapchains until a time where it is safe, this allows swapchains to be destroyed from other threads.
main: Delay the destruction of swapchains until a time where it is safe, this
allows swapchains to be destroyed from other threads.

View file

@ -1 +1,2 @@
client: Propegate the supported formats from the real compositor to the client ones.
client: Propegate the supported formats from the real compositor to the client
ones.

View file

@ -0,0 +1 @@
main: Add support for multiple projection layers.

View file

@ -0,0 +1 @@
main: Implement quad layers.

View file

@ -1,2 +0,0 @@
Implement quad layers.
Add support for multiple projection layers.

View file

@ -1 +1 @@
Add a driver for the Google Daydream View controller.
dd: Add a driver for the Google Daydream View controller.

View file

@ -1 +1 @@
Use new pre-filter and 3-DoF filter in drivers.
all: Use new pre-filter and 3-DoF filter in drivers.

View file

@ -1 +1,2 @@
Added a Arduino based flexible input device driver, along with Arduino C++ code for it.
arduino: Added a Arduino based flexible input device driver, along with Arduino
C++ code for it.

View file

@ -1,2 +1,2 @@
Add basic 3DOF driver for Vive Wand Controller with full input support and
vive: Add basic 3DOF driver for Vive Wand Controller with full input support and
Valve Index Controller with partial input support.

View file

@ -3,4 +3,5 @@
- mr.238
- mr.240
---
Refactor CMake build system to make static (not object) libraries and explicitly describe dependencies.
build: Refactor CMake build system to make static (not object) libraries and
explicitly describe dependencies.

View file

@ -1 +1,2 @@
util: Add some bit manipulation helper functions in `util/u_bitwise.c` and `util/u_bitwise.c`.
util: Add some bit manipulation helper functions in `util/u_bitwise.c` and
`util/u_bitwise.c`.

View file

@ -1 +1,2 @@
os: Add utility functionality for accessing Bluetooth Low-Energy (Bluetooth LE or BLE) over D-Bus, in `os/os_ble.h` and `os/os_ble_dbus.c`.
os/ble: Add utility functionality for accessing Bluetooth Low-Energy (Bluetooth
LE or BLE) over D-Bus, in `os/os_ble.h` and `os/os_ble_dbus.c`.

View file

@ -1 +1,2 @@
tracking: Make stereo_camera_calibration reference counted, and have the prober, not the calibration, call the save function.
tracking: Make stereo_camera_calibration reference counted, and have the prober,
not the calibration, call the save function.

View file

@ -1 +1,2 @@
math: Expand algebraic math functions in `math/m_api.h`, `math/m_vec3.h` and `math/m_base.cpp`.
math: Expand algebraic math functions in `math/m_api.h`, `math/m_vec3.h` and
`math/m_base.cpp`.

View file

@ -1 +1 @@
Unify inputs for generated files between CMake and Meson builds.
build: Unify inputs for generated files between CMake and Meson builds.

View file

@ -1 +1 @@
Enable the build system to install `monado-cli` and `monado-gui`.
build: Enable the build system to install `monado-cli` and `monado-gui`.

View file

@ -1,4 +1,4 @@
---
- issue.62
---
Support building with system cJSON instead of bundled copy.
build: Support building with system cJSON instead of bundled copy.

View file

@ -1 +1,3 @@
ci: Perform test builds using the Android NDK (for armeabi-v7a and armv8-a). This is not a full Android port (missing a compositor, etc) but it ensures we don't add more Android porting problems.
ci: Perform test builds using the Android NDK (for armeabi-v7a and armv8-a).
This is not a full Android port (missing a compositor, etc) but it ensures we
don't add more Android porting problems.

View file

@ -2,4 +2,5 @@
- issue.64
- mr.265
---
Check if `org.bluez` name is available before calling in `os/os_ble_dbus.c`.
os/ble: Check if `org.bluez` name is available before calling in
`os/os_ble_dbus.c`.

View file

@ -1 +1 @@
Fix build issues and build warnings when 32-bit.
build: Fix build issues and build warnings when 32-bit.

View file

@ -1 +1,2 @@
os/ble: Fix crash due to bad dbus path, triggered by bad return checking when probing for BLE devices.
os/ble: Fix crash due to bad dbus path, triggered by bad return checking when
probing for BLE devices.

View file

@ -1 +1 @@
Use the correct time delta in DayDream driver.
d/dd: Use the correct time delta in DayDream driver.

View file

@ -1 +1 @@
Stop changelog snippets from showing up in 'Related Pages'
doc: Stop changelog snippets from showing up in 'Related Pages'

View file

@ -1 +1 @@
Fix meson warnings, increase compiler warning level.
build: Fix meson warnings, increase compiler warning level.

View file

@ -1 +1 @@
Fix leak in `os/os_ble_dbus.c` code when failing to find any device.
os/ble: Fix leak in `os/os_ble_dbus.c` code when failing to find any device.

View file

@ -1 +1 @@
Make ble code check for some error returns in `os/os_ble_dbus.c`.
os/ble: Make ble code check for some error returns in `os/os_ble_dbus.c`.

View file

@ -1 +1,2 @@
Fix warnings in `util/u_hashset.h` after pedantic warnings were enabled for C++.
u/hashset: Fix warnings in `util/u_hashset.h` after pedantic warnings were
enabled for C++.

View file

@ -1 +1,2 @@
Mark OpenXR runtime target in CMake as a MODULE library, instead of a SHARED library.
build: Mark OpenXR runtime target in CMake as a MODULE library, instead of a
SHARED library.

View file

@ -1 +1 @@
Fix failure to build from source on ppc64 and s390x.
build: Fix failure to build from source on ppc64 and s390x.

View file

@ -1,6 +1,6 @@
Way way back when Gallium was made `auxiliary` was named `aux` but then it was
ported to Windows and it was renamed to `auxiliary` since Windows is [allergic to
filenames that match its device names](https://docs.microsoft.com/en-us/windows/win32/fileio/naming-a-file#naming-conventions)
(e.g., `AUX`, `CON`, `PRN`, etc.). Through the ages, this knowledge was lost
and so we find ourselves with the same problem. Although
Monado inherited the correct name, the same old mistake was made in docs.
windows: Way way back when Gallium was made `auxiliary` was named `aux` but then
it was ported to Windows and it was renamed to `auxiliary` since Windows is
[allergic to filenames that match its device names](https://docs.microsoft.com/en-us/windows/win32/fileio/naming-a-file#naming-conventions)
(e.g., `AUX`, `CON`, `PRN`, etc.). Through the ages, this knowledge was lost and
so we find ourselves with the same problem. Although Monado inherited the
correct name, the same old mistake was made in docs.

View file

@ -1 +1,3 @@
CMake build: Rename (nearly) all build options so they begin with `XRT_` and match the defines used in the source. You will probably want to clear your build directory and reconfigure from scratch.
build: For CMake rename (nearly) all build options so they begin with `XRT_` and
match the defines used in the source. You will probably want to clear your build
directory and reconfigure from scratch.

View file

@ -1 +1,3 @@
Added information to the README containing OpenHMD version requirement and information regarding the requirement of `GL_EXT_memory_object_fd` and limitations on Monado's compositor.
README: Added information to the README containing OpenHMD version requirement
and information regarding the requirement of `GL_EXT_memory_object_fd` and
limitations on Monado's compositor.

View file

@ -3,4 +3,4 @@
- mr.256
---
Fix compilation issue in `st/gui` when building without OpenCV.
gui: Fix compilation issue in `st/gui` when building without OpenCV.

View file

@ -1 +1 @@
Print more information from the prober when spewing.
prober: Print more information from the prober when spewing.

View file

@ -1 +1,2 @@
Add a new settings interface for transporting camera settings, in `xrt/xrt_settings.h`.
Add a new settings interface for transporting camera settings, in
`xrt/xrt_settings.h`.

View file

@ -1 +1,3 @@
Add `XRT_CAST_PTR_TO_OXR_HANDLE` and `XRT_CAST_OXR_HANDLE_TO_PTR` macros to perform warning-free conversion between pointers and OpenXR handles, even on 32-bit platforms. They should be used instead of raw casts.
Add `XRT_CAST_PTR_TO_OXR_HANDLE` and `XRT_CAST_OXR_HANDLE_TO_PTR` macros to
perform warning-free conversion between pointers and OpenXR handles, even on
32-bit platforms. They should be used instead of raw casts.

View file

@ -1 +1,3 @@
Remove declaration and implementations of `xrt_prober_create`: the minimal functionality previously performed there should now be moved to `xrt_instance_create`.
Remove declaration and implementations of `xrt_prober_create`: the minimal
functionality previously performed there should now be moved to
`xrt_instance_create`.