Skip to content

Commit a0f9079

Browse files
committed
Happy new year!
1 parent c147a59 commit a0f9079

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2014-2024 Omar Cornut
3+
Copyright (c) 2014-2025 Omar Cornut
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

imgui.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
// please post in https://github.com/ocornut/imgui/discussions if you cannot find a solution in resources above.
2626
// Everything else should be asked in 'Issues'! We are building a database of cross-linked knowledge there.
2727

28-
// Copyright (c) 2014-2024 Omar Cornut
28+
// Copyright (c) 2014-2025 Omar Cornut
2929
// Developed by Omar Cornut and every direct or indirect contributors to the GitHub.
3030
// See LICENSE.txt for copyright and licensing details (standard MIT License).
3131
// This library is free but needs your support to sustain development and maintenance.

imgui.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2694,6 +2694,7 @@ struct ImGuiListClipper
26942694
// - It is important that we are keeping those disabled by default so they don't leak in user space.
26952695
// - This is in order to allow user enabling implicit cast operators between ImVec2/ImVec4 and their own types (using IM_VEC2_CLASS_EXTRA in imconfig.h)
26962696
// - Add '#define IMGUI_DEFINE_MATH_OPERATORS' before including this file (or in imconfig.h) to access courtesy maths operators for ImVec2 and ImVec4.
2697+
// - We intentionally provide ImVec2*float but not float*ImVec2: this is rare enough and we want to reduce the surface for possible user mistake.
26972698
#ifdef IMGUI_DEFINE_MATH_OPERATORS
26982699
#define IMGUI_DEFINE_MATH_OPERATORS_IMPLEMENTED
26992700
IM_MSVC_RUNTIME_CHECKS_OFF

imgui_demo.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7692,7 +7692,8 @@ void ImGui::ShowAboutWindow(bool* p_open)
76927692
ImGui::TextLinkOpenURL("Funding", "https://github.com/ocornut/imgui/wiki/Funding");
76937693

76947694
ImGui::Separator();
7695-
ImGui::Text("By Omar Cornut and all Dear ImGui contributors.");
7695+
ImGui::Text("(c) 2014-2025 Omar Cornut");
7696+
ImGui::Text("Developed by Omar Cornut and all Dear ImGui contributors.");
76967697
ImGui::Text("Dear ImGui is licensed under the MIT License, see LICENSE for more information.");
76977698
ImGui::Text("If your company uses this, please consider funding the project.");
76987699

0 commit comments

Comments
 (0)