From 4b7c117cfd55e33052eaad7b9aa5c143a3a338b0 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Thu, 25 Jan 2024 20:20:31 +0100 Subject: [PATCH 1/5] Trying to fix one more unit test --- src/lym/unit_tests/lymBasicTests.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lym/unit_tests/lymBasicTests.cc b/src/lym/unit_tests/lymBasicTests.cc index 458421789..92d1bf49e 100644 --- a/src/lym/unit_tests/lymBasicTests.cc +++ b/src/lym/unit_tests/lymBasicTests.cc @@ -247,7 +247,7 @@ TEST(102_PythonInclude) throw; } - EXPECT_EQ (console.text (), "Stop 1: m2.py:8\nf: a_inc.py:5\nStop 2: m2.py:14\n"); + EXPECT_EQ (console.text (), "Stop 1: m2.py:9\nf: a_inc.py:5\nStop 2: m2.py:15\n"); } #endif From 1e51cf6901c65bed0bc2b9f49612fcf64ca278d4 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Tue, 30 Jan 2024 19:29:11 +0100 Subject: [PATCH 2/5] Fixing Windows installation without path initialization file --- src/pya/pya/pya.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pya/pya/pya.cc b/src/pya/pya/pya.cc index 2310cf9b6..09cb9f754 100644 --- a/src/pya/pya/pya.cc +++ b/src/pya/pya/pya.cc @@ -290,9 +290,9 @@ PythonInterpreter::PythonInterpreter (bool embedded) } } - } + Py_SetPath (tl::to_wstring (path).c_str ()); - Py_SetPath (tl::to_wstring (path).c_str ()); + } } catch (tl::Exception &ex) { tl::error << tl::to_string (tr ("Evaluation of Python path expression failed")) << ": " << ex.msg (); From 94232e3138d67e460fc85dbe98d01d05cac7b502 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 21:14:23 +0000 Subject: [PATCH 3/5] Bump pypa/cibuildwheel from 2.16.2 to 2.16.5 Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 2.16.2 to 2.16.5. - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](https://github.com/pypa/cibuildwheel/compare/v2.16.2...v2.16.5) --- updated-dependencies: - dependency-name: pypa/cibuildwheel dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d547472b0..3e03a81dd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -52,7 +52,7 @@ jobs: HOST_CCACHE_DIR="$(ccache -k cache_dir)" mkdir -p $HOST_CCACHE_DIR - name: Build wheels # check https://cibuildwheel.readthedocs.io/en/stable/setup/#github-actions - uses: pypa/cibuildwheel@v2.16.2 + uses: pypa/cibuildwheel@v2.16.5 # to supply options, put them in 'env', like: # env: # CIBW_SOME_OPTION: value From 1b0917cda0244de9e2ed5c76f740403f6cb50f60 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 21:14:31 +0000 Subject: [PATCH 4/5] Bump styfle/cancel-workflow-action from 0.12.0 to 0.12.1 Bumps [styfle/cancel-workflow-action](https://github.com/styfle/cancel-workflow-action) from 0.12.0 to 0.12.1. - [Release notes](https://github.com/styfle/cancel-workflow-action/releases) - [Commits](https://github.com/styfle/cancel-workflow-action/compare/0.12.0...0.12.1) --- updated-dependencies: - dependency-name: styfle/cancel-workflow-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d547472b0..cea584e44 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,7 +37,7 @@ jobs: large-packages: false # not working currently - uses: hmarr/debug-action@v2 - name: Cancel Workflow Action - uses: styfle/cancel-workflow-action@0.12.0 + uses: styfle/cancel-workflow-action@0.12.1 - uses: actions/checkout@v4 - name: ccache uses: hendrikmuhs/ccache-action@v1.2 From 65e41aa270971610dd16b54efe415db31c9e0b68 Mon Sep 17 00:00:00 2001 From: Antony Lee Date: Sun, 4 Feb 2024 15:58:37 +0100 Subject: [PATCH 5/5] Fix tabbing order in "Editor Options / Instance / Array Instance" UI. Currently, in the Array Instance sub-UI that appears when inserting a new array instance, trying to use the "tab" key to move through the entry widgets results in going through them in a strange order (column step x, column step y, row step y, row step x, dimension columns, dimension rows). This patch declares the correct tabbing order for the widgets. --- src/edt/edt/EditorOptionsInst.ui | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/edt/edt/EditorOptionsInst.ui b/src/edt/edt/EditorOptionsInst.ui index 86b3e2c56..5d5c8a5aa 100644 --- a/src/edt/edt/EditorOptionsInst.ui +++ b/src/edt/edt/EditorOptionsInst.ui @@ -548,6 +548,23 @@
layWidgets.h
+ + scrollArea + lib_cbx + browse_pb + cell_le + place_origin_cb + scale_le + angle_le + mirror_cbx + array_grp + rows_le + columns_le + row_x_le + row_y_le + column_x_le + column_y_le +