Skip to content

Commit ba23a8e

Browse files
committed
Update About, rdef, add changelog
* Reduce the "Written by" list to the people with somewhat substantial submissions. * Update version to v2.0 * Added changelog
1 parent e388a70 commit ba23a8e

File tree

3 files changed

+23
-6
lines changed

3 files changed

+23
-6
lines changed

CHANGELOG

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
v2.0
2+
3+
* Many, many, many bugfixes and cleanups
4+
* Added database versioning, auto-backup and import old user data
5+
* Entering a "Type" is no longer needed, Income/Spending is determined by the category
6+
* Removed handling of "Checks" (e.g. in Reconcile and check nr. management)
7+
* Tweaked and much improved GUI and UX, e.g. alternate colored lists, context menus,
8+
transaction list filtering, data input, calendar window etc.
9+
* Use system colors, add settable color for neg. amounts
10+
* Use vector icons, improved app icon
11+
* HTML documentation, linked through help icons
12+
* Localization using catkeys system
13+
* Added translations for ca, de, en_AU, en_GB, en_CA, es_419, es, fur, nb, tr

src/App.cpp

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,16 +55,18 @@ App::AboutRequested(void)
5555
const char* authors[] = {
5656
"DarkWyrm",
5757
"Humdinger",
58-
"Jérôme Duval",
5958
"Johan Wagenheim",
60-
"Panagiotis Vasilopoulos",
6159
"Raefaldhi Amartya Junior",
62-
"Thomas Schmidt",
6360
"waddlesplash",
6461
NULL };
6562

6663
const char* thanks[] = {
67-
"Tanausú Gómez (Spanish translation)",
64+
"Davidmp (Catalan translation)",
65+
"tmtfx (Friaulian translation)",
66+
"Humdinger (German and Australian/British/Canadian translation)",
67+
"Johan Wagenheim (Norwegian translation)",
68+
"Tanausú Gómez, Pintaio and cafeina (Spanish translation)",
69+
"Emir Sarı (Turkish translation)",
6870
NULL };
6971
// clang-format on
7072
abwin->AddDescription(
@@ -75,6 +77,8 @@ App::AboutRequested(void)
7577
abwin->AddAuthors(authors);
7678
abwin->AddSpecialThanks(thanks);
7779
abwin->Show();
80+
float width = be_plain_font->StringWidth("CapitalBe is a simple application to keep track of your personal finances.");
81+
abwin->ResizeTo(width, width);
7882
}
7983

8084
void

src/capitalbe.rdef

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ resource app_signature "application/x-vnd.wgp-CapitalBe";
33
resource app_flags B_SINGLE_LAUNCH;
44

55
resource app_version {
6-
major = 1,
7-
middle = 1,
6+
major = 2,
7+
middle = 0,
88
minor = 0,
99

1010
variety = B_APPV_DEVELOPMENT,

0 commit comments

Comments
 (0)