From 3e2a43089971bbf9df276a1e3e211ced0c8a4a07 Mon Sep 17 00:00:00 2001 From: Stefan Urbanek Date: Sun, 4 May 2003 12:27:38 +0000 Subject: [PATCH] Added icons and ChangeLog git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/steptalk/trunk@16622 72102866-910b-0410-8b05-ffd578937521 --- Applications/ScriptPapers/ChangeLog | 8 ++++++++ Applications/ScriptPapers/GNUmakefile | 5 +++-- .../ScriptPapers/NSObject+NibLoading.h | 4 +--- .../ScriptPapers/NSObject+NibLoading.m | 6 +----- .../ScriptPapers/ScriptPapersInfo.plist | 20 ++++++++++--------- 5 files changed, 24 insertions(+), 19 deletions(-) create mode 100644 Applications/ScriptPapers/ChangeLog diff --git a/Applications/ScriptPapers/ChangeLog b/Applications/ScriptPapers/ChangeLog new file mode 100644 index 0000000..c368818 --- /dev/null +++ b/Applications/ScriptPapers/ChangeLog @@ -0,0 +1,8 @@ +2003 May 4 Stefan Urbanek + + * Added application icon + +2003 May 4 Stefan Urbanek + + * ChangeLog started + diff --git a/Applications/ScriptPapers/GNUmakefile b/Applications/ScriptPapers/GNUmakefile index bfb591a..f9804bc 100644 --- a/Applications/ScriptPapers/GNUmakefile +++ b/Applications/ScriptPapers/GNUmakefile @@ -49,9 +49,10 @@ ScriptPapers_OBJC_FILES= \ ScriptPapers_LOCALIZED_RESOURCE_FILES= \ ScriptPapers.gorm \ Paper.gorm - -ScriptPapers_RESOURCE_FILES = \ +ScriptPapers_RESOURCE_FILES= \ + Images/ScriptPaperFile.tiff \ + Images/ScriptPapers.tiff ADDITIONAL_OBJCFLAGS = diff --git a/Applications/ScriptPapers/NSObject+NibLoading.h b/Applications/ScriptPapers/NSObject+NibLoading.h index b943988..6ca8afe 100644 --- a/Applications/ScriptPapers/NSObject+NibLoading.h +++ b/Applications/ScriptPapers/NSObject+NibLoading.h @@ -5,8 +5,6 @@ Written by: Stefan Urbanek Date: 2002 Oct 10 - This file is part of the Farmer application. - This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either @@ -25,7 +23,7 @@ #import -@interface NSObject(AFNibLoading) +@interface NSObject(NibLoading) - (BOOL)loadMyNibNamed:(NSString *)aName; @end diff --git a/Applications/ScriptPapers/NSObject+NibLoading.m b/Applications/ScriptPapers/NSObject+NibLoading.m index 4a8f96e..8be3bab 100644 --- a/Applications/ScriptPapers/NSObject+NibLoading.m +++ b/Applications/ScriptPapers/NSObject+NibLoading.m @@ -5,8 +5,6 @@ Written by: Stefan Urbanek Date: 2002 Oct 10 - This file is part of the Farmer application. - This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either @@ -27,9 +25,7 @@ #import -@class AFSimulation; - -@implementation NSObject(AFNibLoading) +@implementation NSObject(NibLoading) - (BOOL)loadMyNibNamed:(NSString *)aName { NSDictionary *dict; diff --git a/Applications/ScriptPapers/ScriptPapersInfo.plist b/Applications/ScriptPapers/ScriptPapersInfo.plist index 0dfdeb4..c807a9a 100644 --- a/Applications/ScriptPapers/ScriptPapersInfo.plist +++ b/Applications/ScriptPapers/ScriptPapersInfo.plist @@ -1,20 +1,22 @@ { - ApplicationName = "Script Papers"; - ApplicationDescription = "Application for writing script papers."; - ApplicationRelease = "0.1.0"; - Authors = ("Stefan Urbanek "); - Copyright = "Copyright (c) 2003 Stefan Urbanek "; - CopyrightDescription = "This program is released under the GNU General Public License"; + ApplicationName = "Script Papers"; + ApplicationDescription = "Application for writing script papers."; + ApplicationRelease = "0.1.0"; + Authors = ("Stefan Urbanek "); + Copyright = "Copyright (c) 2003 Stefan Urbanek "; + CopyrightDescription = "This program is released under the GNU General Public License"; - NSTypes = ( + NSIcon = ScriptPapers; + + NSTypes = ( { NSUnixExtensions = ("spaper"); NSName = "spaper"; NSHumanReadableName = "Script Paper"; NSMIMETypes = ("application/spaper"); - NSIcon = spaper; + NSIcon = ScriptPaperFile; NSRole = Editor; NSDocumentClass = ScriptPaper; } - ); + ); }