diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 426549e..9f3911a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -363,7 +363,7 @@ jobs: release: runs-on: ubuntu-latest - if: startsWith(github.event.workflow_run.head_branch, 'v') + if: startsWith(github.ref, 'refs/tags/') needs: [Qtk, Qtk-Library, Qtk-Plugins] steps: - name: Download Installer Artifact @@ -378,8 +378,7 @@ jobs: id: create_release uses: softprops/action-gh-release@v1 with: - tag_name: ${{ github.event.workflow_run.head_branch }} - name: Qtk ${{ github.event.workflow_run.head_branch }} + name: Qtk ${{ github.ref_name }} draft: true prerelease: false generate_release_notes: true diff --git a/src/designer-plugins/qtkwidget.cpp b/src/designer-plugins/qtkwidget.cpp index 7d183a6..f7ef688 100644 --- a/src/designer-plugins/qtkwidget.cpp +++ b/src/designer-plugins/qtkwidget.cpp @@ -98,6 +98,18 @@ void QtkWidget::initializeGL() this, SLOT(messageLogged(QOpenGLDebugMessage))); mDebugLogger->startLogging(); + mConsole->sendLog( + "Object files such as .obj can be dragged into the scene to load new " + "models.", + DebugContext::Warn); + mConsole->sendLog("Click and hold LMB or RMB to move the camera with WASD.", + DebugContext::Warn); + mConsole->sendLog( + "Click an object name in the side panel to view or modify properties.", + DebugContext::Warn); + mConsole->sendLog( + "Double click an object name to move the camera to it's position.", + DebugContext::Warn); } printContextInformation(); diff --git a/src/designer-plugins/qtkwidget.h b/src/designer-plugins/qtkwidget.h index a4795a8..ad76c8a 100644 --- a/src/designer-plugins/qtkwidget.h +++ b/src/designer-plugins/qtkwidget.h @@ -264,6 +264,7 @@ namespace Qtk << "[QtkWidgetManager " << this << " ] Failed to add a QtkWidget with the previously used name '" << name << "'"; + return; } qDebug() << this << " Adding new QtkWidget named '" << name << "'"; mQtkWidgets[name] = widget; diff --git a/src/designer-plugins/treeview.cpp b/src/designer-plugins/treeview.cpp index 4773d31..e79220b 100644 --- a/src/designer-plugins/treeview.cpp +++ b/src/designer-plugins/treeview.cpp @@ -19,6 +19,8 @@ Qtk::TreeView::TreeView(QWidget * parent) : QDockWidget(parent), ui(new Ui::TreeView) { ui->setupUi(this); + connect( + ui->treeWidget, &QTreeWidget::itemClicked, this, &TreeView::itemSelect); connect(ui->treeWidget, &QTreeWidget::itemDoubleClicked, this, @@ -72,3 +74,10 @@ void Qtk::TreeView::itemFocus(QTreeWidgetItem * item, int column) // Emit signal from qtk widget for new object focus. Triggers GUI updates. emit QtkWidget::mWidgetManager.get_widget()->objectFocusChanged(name); } + +void Qtk::TreeView::itemSelect(QTreeWidgetItem * item, int column) +{ + // Emit signal from qtk widget for new object focus. Triggers GUI updates. + const QString & name = item->text(column); + emit QtkWidget::mWidgetManager.get_widget()->objectFocusChanged(name); +} diff --git a/src/designer-plugins/treeview.h b/src/designer-plugins/treeview.h index 4b8859e..46cc67a 100644 --- a/src/designer-plugins/treeview.h +++ b/src/designer-plugins/treeview.h @@ -58,6 +58,16 @@ namespace Qtk */ void itemFocus(QTreeWidgetItem * item, int column); + /** + * Set the object to show details for. + * Triggered by QTreeWidget::itemClicked signal. + * + * @param item The item that was clicked + * @param column The column of the item that was double clicked. + * This param is currently not used but required for this signal. + */ + void itemSelect(QTreeWidgetItem * item, int column); + private: /************************************************************************* * Private Members diff --git a/tools/format.sh b/tools/format.sh index a7c2f35..d40f2b3 100755 --- a/tools/format.sh +++ b/tools/format.sh @@ -11,5 +11,6 @@ cmake -B build && cmake --build build -- -j $(nproc --ignore=1) # Run clang-tidy and clang-format SOURCES="src/**/*.cpp src/**/*.h example-app/*.cpp example-app/*.h" -clang-tidy -p build/ --fix --config-file=.clang-tidy $SOURCES +run-clang-tidy \ + -p build/ -j $(nproc --ignore=1) -fix -config-file=.clang-tidy $SOURCES clang-format -i --style=file:.clang-format $SOURCES