mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
89 lines
2.5 KiB
R
89 lines
2.5 KiB
R
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is Mozilla Communicator client code.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape Communications
|
|
* Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*/
|
|
|
|
// Macintosh version resources
|
|
|
|
#include "Types.r"
|
|
|
|
|
|
// Version Numbers //
|
|
|
|
#define VERSION_MAJOR 1
|
|
#define VERSION_MINOR 0x10 // revision & fix in BCD
|
|
#define VERSION_KIND alpha // alpha, beta, or final
|
|
#define VERSION_MICRO 0 // internal stage: alpha or beta number
|
|
|
|
|
|
// Version Strings (Finder's Get Info dialog box) //
|
|
|
|
#define VERSION_STRING "1.1a"
|
|
//#define VERSION_LANG "en" // e.g. en, ja, de, fr
|
|
//#define VERSION_COUNTRY "_US" // e.g., _JP, _DE, _FR, _US
|
|
//#define VERSION_LOCALE "[" VERSION_LANG "_" VERSION_COUNTRY "]"
|
|
|
|
#define COPYRIGHT_STRING "© 1998-2002 The Mozilla Organization"
|
|
#define GETINFO_VERSION VERSION_STRING ", " COPYRIGHT_STRING
|
|
#define PACKAGE_NAME "Mozilla " VERSION_STRING
|
|
|
|
|
|
// Resources definition
|
|
|
|
resource 'vers' (1, "Program") {
|
|
VERSION_MAJOR,
|
|
VERSION_MINOR,
|
|
VERSION_KIND,
|
|
VERSION_MICRO,
|
|
verUS,
|
|
VERSION_STRING,
|
|
GETINFO_VERSION
|
|
};
|
|
|
|
resource 'vers' (2, "Suite") {
|
|
VERSION_MAJOR,
|
|
VERSION_MINOR,
|
|
VERSION_KIND,
|
|
VERSION_MICRO,
|
|
verUS,
|
|
VERSION_STRING,
|
|
PACKAGE_NAME
|
|
};
|
|
|
|
resource 'STR#' (1000, "CanRunStrings") {
|
|
{
|
|
"You cannot run Ò" PACKAGE_NAME "Ó while another copy of Mozilla or Netscape 6 is running. "
|
|
"Ò" PACKAGE_NAME "Ó will now quit."
|
|
}
|
|
};
|
|
|
|
resource 'STR#' (1001, "OSVersCheckStrings") {
|
|
{
|
|
"Mac OS X 10.1 or later recommended",
|
|
"This application will run with versions of Mac OS X prior to 10.1 but that configuration is not tested "
|
|
"or recommended. Proceed at your own risk.",
|
|
"Continue",
|
|
"Quit",
|
|
"CarbonLib 1.4 or later required",
|
|
"This application requires at least version 1.4 of the CarbonLib library be installed. "
|
|
"It will now quit.",
|
|
}
|
|
};
|