Skip to content

Commit

Permalink
Release 2.2.0
Browse files Browse the repository at this point in the history
* Fix drawing artefacts
* Convert to Layout API and fix various GUI issues
* Migrate to Locale Kit
* Added translations: Dutch (thanks Begasus!), Spanish (thanks twse!)
* Anti-Dither add-on: use spinner widget
* Blur add-on: react to changes live
* Fill tool: Fix gradient rendering
* Open dropped images/projects
* Fix build on modern GCC
  • Loading branch information
Humdinger committed Apr 25, 2022
1 parent c0f7c0d commit c1910d6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions artpaint/ArtPaint.rdef
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@ resource app_flags B_SINGLE_LAUNCH;

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

/* 0 = development 1 = alpha 2 = beta
3 = gamma 4 = golden master 5 = final */

variety = 0,
variety = 5,

internal = 1,

short_info = "ArtPaint",
long_info = "ArtPaint, Copyright 2003 - 2017"
long_info = "The bitmap image editor ArtPaint"
};

resource file_types message {
Expand Down
2 changes: 1 addition & 1 deletion artpaint/windows/AboutWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ AboutWindow::AboutWindow(BRect frame)
italic_font.SetFace(B_ITALIC_FACE);

// TODO: get actual release version
scroller->AddLine("ArtPaint v. 2.1.2",yellow,title_font);
scroller->AddLine("ArtPaint v. 2.2.0",yellow,title_font);

BString format(B_TRANSLATE("Release date: %s"));
BString release_str;
Expand Down

0 comments on commit c1910d6

Please sign in to comment.