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 #define _CRT_SECURE_NO_WARNINGS
/* general information */ /* general information */
#define PACKAGE "ASE" #define PACKAGE "aseprite"
#define VERSION "0.8" #define VERSION "0.8"
#define WEBSITE "http://www.aseprite.org/" #define WEBSITE "http://www.aseprite.org/"
#define COPYRIGHT "Copyright (C) 2001-2010 David Capello" #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) { else if (strncmp(arg+n, "version", len) == 0) {
ase_mode |= MODE_BATCH; ase_mode |= MODE_BATCH;
console.printf("ase %s\n", VERSION); console.printf("%s %s\n", PACKAGE, VERSION);
} }
/* invalid argument */ /* invalid argument */
else { else {
@ -139,9 +139,8 @@ void CheckArgs::usage(bool show_help)
if (show_help) { if (show_help) {
// copyright // copyright
console.printf console.printf
("ase %s -- Allegro Sprite Editor, %s\n" ("%s v%s | animated sprite editor\n%s\n\n",
COPYRIGHT "\n\n", PACKAGE, VERSION, COPYRIGHT);
VERSION, _("A tool to create sprites"));
// usage // usage
console.printf console.printf
@ -166,8 +165,8 @@ void CheckArgs::usage(bool show_help)
/* web-site */ /* web-site */
console.printf console.printf
("%s: %s\n\n", ("Find more information in %s web site: %s\n\n",
_("Find more information in the ASE's official web site at:"), WEBSITE); PACKAGE, WEBSITE);
} }
/* how to show options */ /* how to show options */
else { 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); vbox = jbox_new(JI_VERTICAL);
hbox = jbox_new(JI_HORIZONTAL); hbox = jbox_new(JI_HORIZONTAL);
box = jbox_new(0); box = jbox_new(0);

View File

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

View File

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