Skip to content

Commit

Permalink
Release v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
EvenAR committed Oct 30, 2020
1 parent 5c7f8da commit 52484f3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Aman/AmanPlugIn.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ std::unordered_map<const char*, AmanAircraft> allAircraft;

AmanPlugIn::AmanPlugIn() : CPlugIn(COMPATIBILITY_CODE,
"Arrival Manager",
"1.2.0",
"1.3.0",
"Even Rognlien",
"Open source")
{
Expand Down
10 changes: 5 additions & 5 deletions Aman/Constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
#include <Windows.h>

const COLORREF AMAN_COLOR_TITLE_BAR_TEXT = RGB(255, 255, 255);
const COLORREF AMAN_COLOR_FIX_BACKGROUND = RGB(255, 255, 255);
const COLORREF AMAN_COLOR_FIX_TEXT = RGB(0, 0, 0);
const COLORREF AMAN_COLOR_FIX_BACKGROUND = RGB(30, 30, 30);
const COLORREF AMAN_COLOR_FIX_TEXT = RGB(200, 200, 200);
const COLORREF AMAN_COLOR_TIME_TEXT = RGB(255, 255, 255);
const COLORREF AMAN_COLOR_AIRCRAFT_LABEL = RGB(255, 255, 255);
const COLORREF AMAN_COLOR_TRACKED = AMAN_COLOR_AIRCRAFT_LABEL;
const COLORREF AMAN_COLOR_UNTRACKED = RGB(150, 150, 150);

static const HBRUSH AMAN_BRUSH_MAIN_BACKGROUND = CreateSolidBrush(RGB(0, 0, 0));
static const HBRUSH AMAN_BRUSH_MAIN_BACKGROUND = CreateSolidBrush(RGB(13, 9, 13));
static const HBRUSH AMAN_BRUSH_MENU_BACKGROUND = CreateSolidBrush(RGB(72, 72, 72));
static const HBRUSH AMAN_BRUSH_MENU_ICON_FILL = CreateSolidBrush(RGB(255, 255, 255));
static const HBRUSH AMAN_BRUSH_WINDOW_BUTTON_BACKGROUND = CreateSolidBrush(RGB(200, 200, 200));
Expand All @@ -26,9 +26,9 @@ const HPEN AMAN_WHITE_PEN = CreatePen(PS_SOLID, 1, RGB(255, 255, 255));
const HPEN AMAN_VERTICAL_LINE_PEN = CreatePen(PS_SOLID, 1, RGB(180, 180, 180));
const HPEN AMAN_GRAY_PEN = CreatePen(PS_SOLID, 1, AMAN_COLOR_UNTRACKED);

const HFONT AMAN_TIME_FONT = CreateFont(11, 0, 0, 0, FW_NORMAL, 0, 0, 0, 0, 3, 2, 1, 49, "EuroScope");
const HFONT AMAN_TIME_FONT = CreateFont(13, 0, 0, 0, FW_NORMAL, 0, 0, 0, 0, 3, 2, 1, 49, "EuroScope");
const HFONT AMAN_LABEL_FONT = CreateFont(13, 0, 0, 0, FW_NORMAL, 0, 0, 0, 0, 3, 2, 1, 49, "EuroScope");
const HFONT AMAN_FIX_FONT = CreateFont(13, 0, 0, 0, FW_BOLD, 0, 0, 0, 0, 3, 2, 1, 49, "EuroScope");
const HFONT AMAN_FIX_FONT = CreateFont(15, 0, 0, 0, FW_BOLD, 0, 0, 0, 0, 3, 2, 1, 49, "EuroScope");

const int AMAN_TITLEBAR_HEIGHT = 20;
const int AMAN_TIMELINE_WIDTH = 50;
Expand Down
Binary file modified Release/Aman.dll
Binary file not shown.

0 comments on commit 52484f3

Please sign in to comment.