From 14d188f2c71c7dbfe7876294168f09c757f93ffb Mon Sep 17 00:00:00 2001 From: Marco Auer Date: Mon, 2 Oct 2023 17:55:06 +0200 Subject: [PATCH] Fixed about dialog --- docs/changelog.md | 1 + src/plugin/ui/about_window.cpp | 4 ++-- src/plugin/ui/about_window.h | 8 ++++---- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index b65886c7..ff212f94 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -4,6 +4,7 @@ ----------------------------------------------------------------------------------------------------------------------- ## VERSION 1.10 ++ Fixed copyright year in about dialog + Fixed mapping error in 733 example + Fixed check for min/max value when modifier_up is negative + Added new outbound message type "constant" diff --git a/src/plugin/ui/about_window.cpp b/src/plugin/ui/about_window.cpp index c59ca493..cbd834d6 100644 --- a/src/plugin/ui/about_window.cpp +++ b/src/plugin/ui/about_window.cpp @@ -1,7 +1,7 @@ //--------------------------------------------------------------------------------------------------------------------- // XMidiCtrl - MIDI Controller plugin for X-Plane // -// Copyright (c) 2021-2022 Marco Auer +// Copyright (c) 2021-2023 Marco Auer // // XMidiCtrl is free software: you can redistribute it and/or modify it under the terms of the // GNU Affero General Public License as published by the Free Software Foundation, either version 3 @@ -54,7 +54,7 @@ void about_window::create_widgets() ImGui::NewLine(); ImGui::Separator(); ImGui::NewLine(); - ImGui::TextUnformatted("Copyright (c) 2021-2022 by Marco Auer"); + ImGui::TextUnformatted("Copyright (c) 2021-2023 by Marco Auer"); ImGui::NewLine(); ImGui::TextUnformatted(XMIDICTRL_NAME " has been released under the GNU Affero General Public License"); ImGui::TextUnformatted("in hope that it will be useful, but without any warranty."); diff --git a/src/plugin/ui/about_window.h b/src/plugin/ui/about_window.h index eb0a4948..35568272 100644 --- a/src/plugin/ui/about_window.h +++ b/src/plugin/ui/about_window.h @@ -1,7 +1,7 @@ //--------------------------------------------------------------------------------------------------------------------- // XMidiCtrl - MIDI Controller plugin for X-Plane // -// Copyright (c) 2021-2022 Marco Auer +// Copyright (c) 2021-2023 Marco Auer // // XMidiCtrl is free software: you can redistribute it and/or modify it under the terms of the // GNU Affero General Public License as published by the Free Software Foundation, either version 3 @@ -15,8 +15,8 @@ // If not, see . //--------------------------------------------------------------------------------------------------------------------- -#ifndef ABOUT_WINDOW_H -#define ABOUT_WINDOW_H +#ifndef XMC_ABOUT_WINDOW_H +#define XMC_ABOUT_WINDOW_H // XMidiCtrl #include "environment.h" @@ -36,4 +36,4 @@ class about_window : public imgui_window { } // Namespace xmidictrl -#endif // ABOUT_WINDOW_H +#endif // XMC_ABOUT_WINDOW_H