Skip to content

Commit

Permalink
Updated version to 2.1.1 (with various adjustments)
Browse files Browse the repository at this point in the history
  • Loading branch information
PeteCA committed Mar 27, 2017
1 parent c0f6849 commit d5bdeba
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 26 deletions.
4 changes: 2 additions & 2 deletions artpaint/ArtPaint.rdef
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ resource app_flags B_SINGLE_LAUNCH;
resource app_version {
major = 2,
middle = 1,
minor = 0,
minor = 1,

/* 0 = development 1 = alpha 2 = beta
3 = gamma 4 = golden master 5 = final */
Expand All @@ -19,7 +19,7 @@ resource app_version {
internal = 1,

short_info = "ArtPaint",
long_info = "ArtPaint, Copyright 2003 - 2009"
long_info = "ArtPaint, Copyright 2003 - 2017"
};

resource file_types message {
Expand Down
4 changes: 2 additions & 2 deletions artpaint/application/EnglishStrings.h
Original file line number Diff line number Diff line change
Expand Up @@ -323,8 +323,8 @@


// These strings are the contents of the About ArtPaint-window
#define ENGLISH_ABOUT_1_TEXT_STRING "ArtPaint is a painting and image-processing program for the Haiku."\
" It can be used for wide variety of purposes ranging from web-graphics"\
#define ENGLISH_ABOUT_1_TEXT_STRING "ArtPaint is a painting and image-processing program for Haiku."\
" It can be used for a wide variety of purposes ranging from web-graphics"\
" to photo manipulation. See the tutorial in the manual to get started."

#define ENGLISH_ABOUT_3_TEXT_STRING "For new versions of the program see:"
Expand Down
20 changes: 0 additions & 20 deletions artpaint/application/VersionConstants.h

This file was deleted.

1 change: 0 additions & 1 deletion artpaint/paintwindow/PaintWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
#include "ToolSetupWindow.h"
#include "ToolSelectionWindow.h"
#include "UtilityClasses.h"
#include "VersionConstants.h"
#include "ViewSetupWindow.h"


Expand Down
4 changes: 3 additions & 1 deletion artpaint/windows/AboutWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ AboutWindow::AboutWindow(BRect frame)
BFont italic_font;
italic_font.SetFace(B_ITALIC_FACE);

scroller->AddLine("ArtPaint v. 2.0",yellow,title_font);
scroller->AddLine("ArtPaint v. 2.1.1",yellow,title_font);

char string[256];
sprintf(string, StringServer::ReturnString(RELEASE_DATE_STRING), __DATE__);
Expand All @@ -53,11 +53,13 @@ AboutWindow::AboutWindow(BRect frame)
scroller->AddLine(StringServer::ReturnString(ABOUT_1_TEXT_STRING),white,text_font);
scroller->AddEmptyLine();

/* These items have been commented out until they can be updated!
scroller->AddLine(StringServer::ReturnString(ABOUT_3_TEXT_STRING),white,text_font);
scroller->AddLine("http://dev.osdrawer.net/projects/list_files/artpaint",red,text_font);
scroller->AddEmptyLine();
scroller->AddLine(StringServer::ReturnString(ABOUT_4_TEXT_STRING),white,text_font);
scroller->AddLine("http://dev.osdrawer.net/projects/artpaint/boards",red,text_font);
*/
scroller->AddEmptyLine();
scroller->AddEmptyLine();
scroller->AddEmptyLine();
Expand Down

0 comments on commit d5bdeba

Please sign in to comment.