Skip to content

Commit

Permalink
Update About, rdef, add changelog
Browse files Browse the repository at this point in the history
* Reduce the "Written by" list to the people with somewhat substantial
  submissions.

* Update version to v2.0

* Added changelog
  • Loading branch information
humdingerb committed Aug 19, 2024
1 parent e388a70 commit dd46bd5
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 6 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
v2.0

* Many, many, many bugfixes and cleanups
* Added database versioning, auto-backup and import old user data
* Entering a "Type" is no longer needed, Income/Spending is determined by the category
* Removed handling of "Checks" (e.g. in Reconcile and check nr. management)
* Tweaked and much improved GUI and UX, e.g. alternate colored lists, context menus,
transaction list filtering, data input, calendar window etc.
* Use system colors, add settable color for neg. amounts
* Use vector icons, improved app icon
* HTML documentation, linked through help icons
* Localization using catkeys system
* Added translations for ca, de, en_AU, en_GB, en_CA, es_419, es, fur, nb, tr
12 changes: 8 additions & 4 deletions src/App.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,16 +55,18 @@ App::AboutRequested(void)
const char* authors[] = {
"DarkWyrm",
"Humdinger",
"Jérôme Duval",
"Johan Wagenheim",
"Panagiotis Vasilopoulos",
"Raefaldhi Amartya Junior",
"Thomas Schmidt",
"waddlesplash",
NULL };

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

void
Expand Down
4 changes: 2 additions & 2 deletions src/capitalbe.rdef
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ resource app_signature "application/x-vnd.wgp-CapitalBe";
resource app_flags B_SINGLE_LAUNCH;

resource app_version {
major = 1,
middle = 1,
major = 2,
middle = 0,
minor = 0,

variety = B_APPV_DEVELOPMENT,
Expand Down

0 comments on commit dd46bd5

Please sign in to comment.