mirror of
https://github.com/gnustep/libs-steptalk.git
synced 2025-02-21 02:31:01 +00:00
Added icons and ChangeLog
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/steptalk/trunk@16622 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a0d18e6a62
commit
3e2a430899
5 changed files with 24 additions and 19 deletions
8
Applications/ScriptPapers/ChangeLog
Normal file
8
Applications/ScriptPapers/ChangeLog
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
2003 May 4 Stefan Urbanek <urbanek@host.sk>
|
||||||
|
|
||||||
|
* Added application icon
|
||||||
|
|
||||||
|
2003 May 4 Stefan Urbanek <urbanek@host.sk>
|
||||||
|
|
||||||
|
* ChangeLog started
|
||||||
|
|
|
@ -50,8 +50,9 @@ ScriptPapers_LOCALIZED_RESOURCE_FILES= \
|
||||||
ScriptPapers.gorm \
|
ScriptPapers.gorm \
|
||||||
Paper.gorm
|
Paper.gorm
|
||||||
|
|
||||||
ScriptPapers_RESOURCE_FILES = \
|
ScriptPapers_RESOURCE_FILES= \
|
||||||
|
Images/ScriptPaperFile.tiff \
|
||||||
|
Images/ScriptPapers.tiff
|
||||||
|
|
||||||
ADDITIONAL_OBJCFLAGS =
|
ADDITIONAL_OBJCFLAGS =
|
||||||
|
|
||||||
|
|
|
@ -5,8 +5,6 @@
|
||||||
Written by: Stefan Urbanek
|
Written by: Stefan Urbanek
|
||||||
Date: 2002 Oct 10
|
Date: 2002 Oct 10
|
||||||
|
|
||||||
This file is part of the Farmer application.
|
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
modify it under the terms of the GNU Lesser General Public
|
modify it under the terms of the GNU Lesser General Public
|
||||||
License as published by the Free Software Foundation; either
|
License as published by the Free Software Foundation; either
|
||||||
|
@ -25,7 +23,7 @@
|
||||||
|
|
||||||
#import <AppKit/NSNibLoading.h>
|
#import <AppKit/NSNibLoading.h>
|
||||||
|
|
||||||
@interface NSObject(AFNibLoading)
|
@interface NSObject(NibLoading)
|
||||||
- (BOOL)loadMyNibNamed:(NSString *)aName;
|
- (BOOL)loadMyNibNamed:(NSString *)aName;
|
||||||
@end
|
@end
|
||||||
|
|
||||||
|
|
|
@ -5,8 +5,6 @@
|
||||||
Written by: Stefan Urbanek
|
Written by: Stefan Urbanek
|
||||||
Date: 2002 Oct 10
|
Date: 2002 Oct 10
|
||||||
|
|
||||||
This file is part of the Farmer application.
|
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
modify it under the terms of the GNU Lesser General Public
|
modify it under the terms of the GNU Lesser General Public
|
||||||
License as published by the Free Software Foundation; either
|
License as published by the Free Software Foundation; either
|
||||||
|
@ -27,9 +25,7 @@
|
||||||
|
|
||||||
#import <AppKit/NSPanel.h>
|
#import <AppKit/NSPanel.h>
|
||||||
|
|
||||||
@class AFSimulation;
|
@implementation NSObject(NibLoading)
|
||||||
|
|
||||||
@implementation NSObject(AFNibLoading)
|
|
||||||
- (BOOL)loadMyNibNamed:(NSString *)aName
|
- (BOOL)loadMyNibNamed:(NSString *)aName
|
||||||
{
|
{
|
||||||
NSDictionary *dict;
|
NSDictionary *dict;
|
||||||
|
|
|
@ -1,20 +1,22 @@
|
||||||
{
|
{
|
||||||
ApplicationName = "Script Papers";
|
ApplicationName = "Script Papers";
|
||||||
ApplicationDescription = "Application for writing script papers.";
|
ApplicationDescription = "Application for writing script papers.";
|
||||||
ApplicationRelease = "0.1.0";
|
ApplicationRelease = "0.1.0";
|
||||||
Authors = ("Stefan Urbanek <urbanek@host.sk>");
|
Authors = ("Stefan Urbanek <urbanek@host.sk>");
|
||||||
Copyright = "Copyright (c) 2003 Stefan Urbanek <urbanek@host.sk>";
|
Copyright = "Copyright (c) 2003 Stefan Urbanek <urbanek@host.sk>";
|
||||||
CopyrightDescription = "This program is released under the GNU General Public License";
|
CopyrightDescription = "This program is released under the GNU General Public License";
|
||||||
|
|
||||||
NSTypes = (
|
NSIcon = ScriptPapers;
|
||||||
|
|
||||||
|
NSTypes = (
|
||||||
{
|
{
|
||||||
NSUnixExtensions = ("spaper");
|
NSUnixExtensions = ("spaper");
|
||||||
NSName = "spaper";
|
NSName = "spaper";
|
||||||
NSHumanReadableName = "Script Paper";
|
NSHumanReadableName = "Script Paper";
|
||||||
NSMIMETypes = ("application/spaper");
|
NSMIMETypes = ("application/spaper");
|
||||||
NSIcon = spaper;
|
NSIcon = ScriptPaperFile;
|
||||||
NSRole = Editor;
|
NSRole = Editor;
|
||||||
NSDocumentClass = ScriptPaper;
|
NSDocumentClass = ScriptPaper;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue