Changing ASE name to aseprite.

This commit is contained in:
David Capello 2010-02-28 22:16:58 -02:00
parent a8831eed86
commit 031c8d187b
5 changed files with 9 additions and 10 deletions

View File

@ -24,7 +24,7 @@
#define _CRT_SECURE_NO_WARNINGS
/* general information */
#define PACKAGE "ASE"
#define PACKAGE "aseprite"
#define VERSION "0.8"
#define WEBSITE "http://www.aseprite.org/"
#define COPYRIGHT "Copyright (C) 2001-2010 David Capello"

View File

@ -98,7 +98,7 @@ CheckArgs::CheckArgs(int argc, char* argv[])
else if (strncmp(arg+n, "version", len) == 0) {
ase_mode |= MODE_BATCH;
console.printf("ase %s\n", VERSION);
console.printf("%s %s\n", PACKAGE, VERSION);
}
/* invalid argument */
else {
@ -139,9 +139,8 @@ void CheckArgs::usage(bool show_help)
if (show_help) {
// copyright
console.printf
("ase %s -- Allegro Sprite Editor, %s\n"
COPYRIGHT "\n\n",
VERSION, _("A tool to create sprites"));
("%s v%s | animated sprite editor\n%s\n\n",
PACKAGE, VERSION, COPYRIGHT);
// usage
console.printf
@ -166,8 +165,8 @@ void CheckArgs::usage(bool show_help)
/* web-site */
console.printf
("%s: %s\n\n",
_("Find more information in the ASE's official web site at:"), WEBSITE);
("Find more information in %s web site: %s\n\n",
PACKAGE, WEBSITE);
}
/* how to show options */
else {

View File

@ -83,7 +83,7 @@ void dialogs_tips(bool forced)
}
}
Frame* window = new Frame(false, "Allegro Sprite Editor");
Frame* window = new Frame(false, PACKAGE " | tips");
vbox = jbox_new(JI_VERTICAL);
hbox = jbox_new(JI_HORIZONTAL);
box = jbox_new(0);

View File

@ -29,7 +29,7 @@
// Information for "ident".
const char ase_ident[] =
"$ASE: " VERSION " " COPYRIGHT " $\n"
"$" PACKAGE ": " VERSION " " COPYRIGHT " $\n"
"$Website: " WEBSITE " $\n";
//////////////////////////////////////////////////////////////////////

View File

@ -285,7 +285,7 @@ int init_module_gui()
gfx_done:;
/* window title */
set_window_title("Allegro Sprite Editor v" VERSION);
set_window_title(PACKAGE " v" VERSION);
/* create the default-manager */
manager = jmanager_new();