diff --git a/.github/workflows/all-builds.yml b/.github/workflows/build.yml similarity index 99% rename from .github/workflows/all-builds.yml rename to .github/workflows/build.yml index ea91e61..7117123 100644 --- a/.github/workflows/all-builds.yml +++ b/.github/workflows/build.yml @@ -138,7 +138,7 @@ jobs: - name: Upload Qtk install directory uses: actions/upload-artifact@v4 with: - name: qtk-gui-${{ matrix.os }}-install + name: qtk-gui-${{ matrix.os }}-archive path: install/* # TODO: Enable after trimming resources. @@ -269,7 +269,7 @@ jobs: uses: actions/upload-artifact@v4 if: always() with: - name: libqtk-${{ matrix.os }}-install + name: libqtk-${{ matrix.os }}-archive path: install/* Qtk-Plugins: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9c4e027..60ac33c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,7 @@ on: jobs: release: runs-on: ubuntu-latest - if: startsWith(github.ref, 'refs/tags/') + if: startsWith(github.event.workflow_run.head_branch, 'v') steps: - name: Download Installer Artifact uses: actions/download-artifact@v4 diff --git a/README.md b/README.md index f76b4cb..825ddfa 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Qtk is a Qt OpenGL graphics library that wraps some QOpenGL functionality in con that allow rendering geometry in 2D and 3D using custom GLSL shader programs. The Qtk desktop application provides a model loader using [Assimp](https://assimp.org/) within a Qt widget application. -You can fly around the scene using WASD while holding down the right mouse button. +You can fly around the scene using WASD while holding down the left or right mouse button. Object names can be double-clicked in the tree view panel for quick camera navigation. Properties of the object, like shader code and translation / scale, can be viewed and modified in the side panel. diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 1d25c05..18e4fd6 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -36,6 +36,8 @@ install( RUNTIME DESTINATION bin ) +# TODO: Separate plugins source code to plugins/ dir and add_subdir here + # Qtk Application if(QTK_GUI OR QTK_PLUGINS) add_subdirectory(app) diff --git a/src/app/widgetplugincollection.cpp b/src/app/widgetplugincollection.cpp index 70e6b7a..24c6bb6 100644 --- a/src/app/widgetplugincollection.cpp +++ b/src/app/widgetplugincollection.cpp @@ -37,6 +37,7 @@ WidgetPluginCollection::WidgetPluginCollection(QObject * parent) : "Qtk::ToolBox", "toolbox.h", [](QWidget * parent) { return new Qtk::ToolBox(parent); }), + // TODO: Add and test DebugConsole, separate source code into plugins/ dir }; } diff --git a/tools/build-qt.sh b/tools/build-qt.sh deleted file mode 100644 index f1f641a..0000000 --- a/tools/build-qt.sh +++ /dev/null @@ -1 +0,0 @@ -#!/usr/bin/env bash