mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-22 18:31:27 +00:00
Forge updates -- an icon for .forge files, some app info updates, and a
nib-loading fix for MainPrefs.
This commit is contained in:
parent
9585b6af92
commit
8ef321e2e8
4 changed files with 19 additions and 7 deletions
|
@ -2,9 +2,11 @@ include $(GNUSTEP_MAKEFILES)/common.make
|
|||
|
||||
BUNDLE_NAME= MainPrefs
|
||||
BUNDLE_EXTENSION= .forgeb
|
||||
BUNDLE_INSTALL_DIR= $(GNUSTEP_LOCAL_ROOT)/Library/Forge
|
||||
#
|
||||
# We don't install this bundle, it goes inside the app.
|
||||
#
|
||||
#BUNDLE_INSTALL_DIR= $(GNUSTEP_LOCAL_ROOT)/Library/Forge
|
||||
|
||||
MainPrefs_MAIN_MODEL_FILE= MainPrefs.gorm
|
||||
MainPrefs_RESOURCE_FILES= \
|
||||
MainPrefs.gorm
|
||||
|
||||
|
@ -19,9 +21,6 @@ MainPrefs_HEADERS= \
|
|||
MainPrefs_PRINCIPAL_CLASS= \
|
||||
MainPrefs
|
||||
|
||||
#MainPrefs_RESOURCE_FILES= \
|
||||
# Forge.tiff
|
||||
|
||||
-include GNUmakefile.preamble
|
||||
|
||||
include $(GNUSTEP_MAKEFILES)/bundle.make
|
||||
|
|
|
@ -144,8 +144,8 @@ static id <BundleDelegate> owner = nil;
|
|||
self = [super init];
|
||||
owner = anOwner;
|
||||
[owner registerPrefsController: self];
|
||||
if (![NSBundle loadNibNamed: @"MainPrefsView" owner: self]) {
|
||||
NSLog (@"MainPrefs: Could not load nib \"MainPrefsView\", using compiled version");
|
||||
if (![NSBundle loadNibNamed: @"MainPrefs" owner: self]) {
|
||||
NSLog (@"MainPrefs: Could not load nib \"MainPrefs\", using compiled version");
|
||||
view = [[MainPrefsView alloc] initWithOwner: self andFrame: PrefsRect];
|
||||
|
||||
// hook up to our outlet(s)
|
||||
|
|
|
@ -10,4 +10,16 @@
|
|||
Copyright = "Copyright (C) 2001 Dusk To Dawn Computing, Inc.";
|
||||
CopyrightDescription = "Released under the GNU GPL. See COPYING for details.";
|
||||
FullVersionID = "0.1.0 (Development)";
|
||||
NSTypes = (
|
||||
{
|
||||
NSName = "forge";
|
||||
NSHumanReadableName = "Forge project file";
|
||||
NSUnixExtensions = ("forge");
|
||||
NSDOSExtensions = ("forge");
|
||||
NSMIMETypes = ("application/x-forge-project");
|
||||
NSIcon = ForgeDocument;
|
||||
NSRole = Editor;
|
||||
NSDocumentClass = Document;
|
||||
}
|
||||
);
|
||||
}
|
||||
|
|
|
@ -54,6 +54,7 @@ Forge_RESOURCE_FILES= \
|
|||
Bundles/MainPrefs/MainPrefs.forgeb \
|
||||
Forge.gorm \
|
||||
Forge.tiff \
|
||||
ForgeDocument.tiff \
|
||||
ForgeInfo.plist
|
||||
|
||||
Forge_LOCALIZED_RESOURCE_FILES= \
|
||||
|
|
Loading…
Reference in a new issue