Skip to content

Commit

Permalink
Fixed about dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
mauer committed Oct 2, 2023
1 parent 631546d commit 14d188f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions src/plugin/ui/about_window.cpp
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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.");
Expand Down
8 changes: 4 additions & 4 deletions src/plugin/ui/about_window.h
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -15,8 +15,8 @@
// If not, see <https://www.gnu.org/licenses/>.
//---------------------------------------------------------------------------------------------------------------------

#ifndef ABOUT_WINDOW_H
#define ABOUT_WINDOW_H
#ifndef XMC_ABOUT_WINDOW_H
#define XMC_ABOUT_WINDOW_H

// XMidiCtrl
#include "environment.h"
Expand All @@ -36,4 +36,4 @@ class about_window : public imgui_window {

} // Namespace xmidictrl

#endif // ABOUT_WINDOW_H
#endif // XMC_ABOUT_WINDOW_H

0 comments on commit 14d188f

Please sign in to comment.