diff --git a/debian/changelog b/debian/changelog index b76f1ee001b13d71948cde4c58896fa8ed71c0f1..14865606ec763a9b6b328bf5698d439ac9846f65 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,32 @@ +steam-runtime-tools (0.20190909.0-0+steamrt1.2) scout; urgency=medium + + [ Simon McVittie ] + * Add checks for locales and locale-related issues + + [ Jeremy Whiting ] + * When executing graphics helpers use timeout command to kill if needed. + + [ Simon McVittie ] + * graphics: Add precondition checks on enum arguments + * graphics: Diagnose impossible window system, rendering interface + * graphics: Only allow EGL_X11 with a GL-based rendering interface + * graphics: Diagnose combination of GLX with non-GL as programming error + * Fix numeric values in comments + * Document SRT_GRAPHICS_ISSUES_TIMEOUT + * Improve diagnostics if graphics timeout tests fail + + [ Jeremy Whiting ] + * Add calling vulkaninfo to get vulkan device and version. + * Add mock-good-vulkaninfo and mock-bad-vulkaninfo. + + [ Simon McVittie ] + * d/.gitignore: Update for addition of steam-runtime-tools-bin + * Speed up tests by telling the graphics check to time out sooner + * graphics: Don't free a const version_string + * Add a man page documenting steam-runtime-system-info + + -- Jeremy Whiting <jeremy.whiting@collabora.com> Mon, 09 Sep 2019 11:17:49 -0600 + steam-runtime-tools (0.20190822.0-0+steamrt1.1) scout; urgency=medium [ Jeremy Whiting ] diff --git a/debian/libsteam-runtime-tools-0-0.symbols b/debian/libsteam-runtime-tools-0-0.symbols index f53a3658f19c87076882122916291afda1beca8a..c3b3da40e45b3fd30280835cc66f526e59519e04 100644 --- a/debian/libsteam-runtime-tools-0-0.symbols +++ b/debian/libsteam-runtime-tools-0-0.symbols @@ -23,6 +23,14 @@ libsteam-runtime-tools-0.so.0 libsteam-runtime-tools-0-0 #MINVER# srt_library_get_type@Base 0.20190801.0 srt_library_issues_get_type@Base 0.20190801.0 srt_library_symbols_format_get_type@Base 0.20190801.0 + srt_locale_error_get_type@Base 0.20190909.0 + srt_locale_error_quark@Base 0.20190909.0 + srt_locale_get_charset@Base 0.20190909.0 + srt_locale_get_requested_name@Base 0.20190909.0 + srt_locale_get_resulting_name@Base 0.20190909.0 + srt_locale_get_type@Base 0.20190909.0 + srt_locale_is_utf8@Base 0.20190909.0 + srt_locale_issues_get_type@Base 0.20190909.0 srt_rendering_interface_get_type@Base 0.20190822.0 srt_runtime_issues_get_type@Base 0.20190816.0 srt_steam_issues_get_type@Base 0.20190816.0 @@ -32,10 +40,13 @@ libsteam-runtime-tools-0.so.0 libsteam-runtime-tools-0-0 #MINVER# srt_system_info_check_graphics@Base 0.20190822.0 srt_system_info_check_libraries@Base 0.20190802.0 srt_system_info_check_library@Base 0.20190802.0 + srt_system_info_check_locale@Base 0.20190909.0 srt_system_info_dup_expected_runtime_version@Base 0.20190816.0 srt_system_info_dup_runtime_path@Base 0.20190816.0 srt_system_info_dup_runtime_version@Base 0.20190816.0 srt_system_info_dup_steam_installation_path@Base 0.20190816.0 + srt_system_info_get_locale_issues@Base 0.20190909.0 + srt_system_info_get_primary_multiarch_tuple@Base 0.20190909.0 srt_system_info_get_runtime_issues@Base 0.20190816.0 srt_system_info_get_steam_issues@Base 0.20190816.0 srt_system_info_get_type@Base 0.20190801.0 @@ -43,4 +54,7 @@ libsteam-runtime-tools-0.so.0 libsteam-runtime-tools-0-0 #MINVER# srt_system_info_set_environ@Base 0.20190816.0 srt_system_info_set_expected_runtime_version@Base 0.20190816.0 srt_system_info_set_helpers_path@Base 0.20190816.0 + srt_system_info_set_primary_multiarch_tuple@Base 0.20190909.0 + srt_system_info_set_test_flags@Base 0.20190909.0 + srt_test_flags_get_type@Base 0.20190909.0 srt_window_system_get_type@Base 0.20190822.0 diff --git a/meson.build b/meson.build index a34f544ec6f231c3f8184ad0a1c72aaf8d3de7ef..822a21b301adea996276347b7933c72a2edb75c1 100644 --- a/meson.build +++ b/meson.build @@ -21,11 +21,11 @@ # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -project('steam-runtime-tools', 'c', version : '0.20190822.0') +project('steam-runtime-tools', 'c', version : '0.20190909.0') api_major = '0' abi_major = '0' -abi_minor = '20190822.0' +abi_minor = '20190909.0' pkg = import('pkgconfig') gnome = import('gnome')