Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the submodules-junior group with 3 updates #1711

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugins/robots/thirdparty/trikRuntime/trikRuntime
Submodule trikRuntime updated 45 files
+13 −3 .github/dependabot.yml
+4 −2 .github/workflows/centos.yml
+4 −4 .github/workflows/main.yml
+5 −4 .github/workflows/trik-toolchain.yml
+3 −0 README.md
+1 −1 deploy.sh
+0 −1 global.pri
+52 −0 translations/ADDING_TRANSLATIONS.en.md
+0 −1 translations/fr/locale.ini
+0 −44 translations/fr/trikKernel_fr.ts
+0 −43 translations/fr/trikRun_fr.ts
+0 −33 translations/fr/trikScriptRunner_fr.ts
+0 −1 translations/ru/locale.ini
+0 −46 translations/ru/trikKernel_ru.ts
+0 −48 translations/ru/trikRun_ru.ts
+0 −33 translations/ru/trikScriptRunner_ru.ts
+10 −13 translations/translations.pro
+700 −0 translations/trikRuntime_de.ts
+186 −137 translations/trikRuntime_fr.ts
+189 −133 translations/trikRuntime_ru.ts
+4 −0 translations/trikRuntime_sample.ts
+6 −6 trikControl/configs/kernel-3.6/system-config.xml
+12 −2 trikControl/include/trikControl/pwmCaptureInterface.h
+20 −0 trikControl/src/configurerHelper.cpp
+8 −0 trikControl/src/configurerHelper.h
+1 −1 trikControl/src/event.cpp
+1 −1 trikControl/src/moduleLoader.h
+44 −2 trikControl/src/pwmCapture.cpp
+15 −2 trikControl/src/pwmCapture.h
+17 −11 trikGui/languageSelectionWidget.cpp
+63 −0 trikGui/pwmCaptureIndicator.cpp
+54 −0 trikGui/pwmCaptureIndicator.h
+4 −0 trikGui/sensorsWidget.cpp
+1 −0 trikGui/sensorsWidget.h
+10 −0 trikGui/startWidget.cpp
+4 −6 trikGui/trikGui.pro
+5 −20 trikKernel/include/trikKernel/exceptions/trikRuntimeException.h
+30 −12 trikKernel/include/trikKernel/timeVal.h
+0 −41 trikKernel/src/timeVal.cpp
+6 −6 trikKernel/src/translationsHelper.cpp
+3 −4 trikKernel/trikKernel.pro
+0 −4 trikRun/trikRun.pro
+22 −17 trikRuntime.pro
+1 −0 trikScriptRunner/include/trikScriptRunner/trikScriptRunnerInterface.h
+0 −4 trikScriptRunner/trikScriptRunner.pro
2 changes: 1 addition & 1 deletion qrtest/thirdparty/googletest/googletest
Submodule googletest updated 50 files
+1 −0 .gitignore
+17 −0 BUILD.bazel
+10 −1 CMakeLists.txt
+1 −0 CONTRIBUTORS
+61 −0 MODULE.bazel
+14 −12 WORKSPACE
+35 −0 WORKSPACE.bzlmod
+6 −4 ci/linux-presubmit.sh
+2 −1 ci/macos-presubmit.sh
+2 −2 ci/windows-presubmit.bat
+15 −5 docs/advanced.md
+6 −0 docs/gmock_cook_book.md
+2 −0 docs/gmock_for_dummies.md
+9 −9 docs/primer.md
+3 −1 docs/reference/testing.md
+33 −0 fake_fuchsia_sdk.bzl
+14 −13 googlemock/CMakeLists.txt
+21 −3 googlemock/include/gmock/gmock-actions.h
+14 −13 googlemock/include/gmock/gmock-matchers.h
+4 −3 googlemock/include/gmock/gmock-more-actions.h
+1 −0 googlemock/include/gmock/gmock.h
+4 −4 googlemock/include/gmock/internal/gmock-port.h
+2 −1 googlemock/src/gmock-spec-builders.cc
+9 −0 googlemock/test/gmock-matchers-comparisons_test.cc
+39 −1 googlemock/test/gmock-more-actions_test.cc
+9 −0 googlemock/test/gmock_link_test.h
+14 −14 googletest/CMakeLists.txt
+4 −0 googletest/cmake/Config.cmake.in
+21 −19 googletest/cmake/internal_utils.cmake
+35 −21 googletest/include/gtest/gtest-printers.h
+32 −14 googletest/include/gtest/gtest.h
+2 −4 googletest/include/gtest/internal/gtest-death-test-internal.h
+7 −1 googletest/include/gtest/internal/gtest-filepath.h
+13 −18 googletest/include/gtest/internal/gtest-internal.h
+74 −72 googletest/include/gtest/internal/gtest-param-util.h
+16 −7 googletest/include/gtest/internal/gtest-port.h
+18 −16 googletest/src/gtest-death-test.cc
+28 −16 googletest/src/gtest-internal-inl.h
+13 −2 googletest/src/gtest-port.cc
+108 −85 googletest/src/gtest.cc
+1 −0 googletest/test/googletest-color-test.py
+39 −37 googletest/test/googletest-death-test-test.cc
+4 −1 googletest/test/googletest-options-test.cc
+0 −5 googletest/test/googletest-output-test-golden-lin.txt
+2 −2 googletest/test/googletest-port-test.cc
+52 −44 googletest/test/gtest_environment_test.cc
+1 −3 googletest/test/gtest_repeat_test.cc
+14 −7 googletest/test/gtest_unittest.cc
+9 −6 googletest/test/gtest_xml_output_unittest.py
+14 −8 googletest_deps.bzl
Loading