-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
98163a2
commit caf3705
Showing
314 changed files
with
45,617 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<classpath> | ||
<classpathentry excluding="glguerin/io/imp/mac/jd1/|glguerin/io/imp/mac/jd2/|glguerin/io/imp/mac/ten/" kind="src" path="src"/> | ||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> | ||
<classpathentry combineaccessrules="false" kind="src" path="/KSFL"/> | ||
<classpathentry combineaccessrules="false" kind="src" path="/PowerPaint"/> | ||
<classpathentry combineaccessrules="false" kind="src" path="/OpenXION"/> | ||
<classpathentry kind="output" path="bin"/> | ||
</classpath> |
10 changes: 10 additions & 0 deletions
10
main/java/Resplendence/.externalToolBuilders/Resplendence Make Clean.launch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<launchConfiguration type="org.eclipse.ui.externaltools.ProgramBuilderLaunchConfigurationType"> | ||
<stringAttribute key="org.eclipse.debug.core.ATTR_REFRESH_SCOPE" value="${project}"/> | ||
<booleanAttribute key="org.eclipse.debug.ui.ATTR_LAUNCH_IN_BACKGROUND" value="false"/> | ||
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_LOCATION" value="/usr/bin/make"/> | ||
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_RUN_BUILD_KINDS" value="clean"/> | ||
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_TOOL_ARGUMENTS" value="clean"/> | ||
<booleanAttribute key="org.eclipse.ui.externaltools.ATTR_TRIGGERS_CONFIGURED" value="true"/> | ||
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_WORKING_DIRECTORY" value="${project_loc:Resplendence}"/> | ||
</launchConfiguration> |
12 changes: 12 additions & 0 deletions
12
main/java/Resplendence/.externalToolBuilders/Resplendence Make.launch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<launchConfiguration type="org.eclipse.ui.externaltools.ProgramBuilderLaunchConfigurationType"> | ||
<stringAttribute key="org.eclipse.debug.core.ATTR_REFRESH_SCOPE" value="${project}"/> | ||
<mapAttribute key="org.eclipse.debug.core.environmentVariables"> | ||
<mapEntry key="PWD" value="${project_loc:Resplendence}"/> | ||
</mapAttribute> | ||
<booleanAttribute key="org.eclipse.debug.ui.ATTR_LAUNCH_IN_BACKGROUND" value="false"/> | ||
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_LOCATION" value="/usr/bin/make"/> | ||
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_RUN_BUILD_KINDS" value="full,incremental,"/> | ||
<booleanAttribute key="org.eclipse.ui.externaltools.ATTR_TRIGGERS_CONFIGURED" value="true"/> | ||
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_WORKING_DIRECTORY" value="${project_loc:Resplendence}"/> | ||
</launchConfiguration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<projectDescription> | ||
<name>Resplendence</name> | ||
<comment></comment> | ||
<projects> | ||
</projects> | ||
<buildSpec> | ||
<buildCommand> | ||
<name>org.eclipse.jdt.core.javabuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
<buildCommand> | ||
<name>org.eclipse.ui.externaltools.ExternalToolBuilder</name> | ||
<triggers>clean,</triggers> | ||
<arguments> | ||
<dictionary> | ||
<key>LaunchConfigHandle</key> | ||
<value><project>/.externalToolBuilders/Resplendence Make Clean.launch</value> | ||
</dictionary> | ||
</arguments> | ||
</buildCommand> | ||
<buildCommand> | ||
<name>org.eclipse.ui.externaltools.ExternalToolBuilder</name> | ||
<triggers>full,incremental,</triggers> | ||
<arguments> | ||
<dictionary> | ||
<key>LaunchConfigHandle</key> | ||
<value><project>/.externalToolBuilders/Resplendence Make.launch</value> | ||
</dictionary> | ||
</arguments> | ||
</buildCommand> | ||
</buildSpec> | ||
<natures> | ||
<nature>org.eclipse.jdt.core.javanature</nature> | ||
</natures> | ||
</projectDescription> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
SRCFILES := $(shell find src -name \*.java \! -path \*/jd1/\* \! -path \*/jd2/\* \! -path \*/ten/\*) | ||
RESFILES := $(shell (find src -name \*.png ; find src -name \*.wav ; find src -name \*.dff ; find src -name \*.jnilib) | sed s/^src\\///) | ||
PACKAGES := $(shell find src/com/kreative -type d \! -path \*/.\* | sed s/^src\\/// | tr / .) | ||
|
||
all: clean bin doc Resplendence.app | ||
|
||
eclipseall: eclipseclean Resplendence.app | ||
|
||
clean: | ||
rm -rf bin | ||
rm -rf doc | ||
rm -rf Resplendence.app | ||
|
||
eclipseclean: | ||
rm -rf Resplendence.app | ||
|
||
bin: src | ||
mkdir -p bin | ||
javac -classpath ../KSFL/bin:../OpenXION/bin:../PowerPaint/bin:dep/orange-extensions.jar -sourcepath src $(SRCFILES) -d bin | ||
$(foreach res,$(RESFILES),cp src/$(res) bin/$(res);) | ||
|
||
doc: src | ||
mkdir -p doc | ||
javadoc -classpath ../KSFL/bin:../OpenXION/bin:../PowerPaint/bin:dep/orange-extensions.jar -sourcepath src $(PACKAGES) -d doc | ||
|
||
Resplendence.app: dep bin | ||
mkdir -p Resplendence.app/Contents/MacOS | ||
mkdir -p Resplendence.app/Contents/Resources/Java/com/kreative | ||
cp -f dep/PkgInfo Resplendence.app/Contents | ||
cp -f dep/Info.plist Resplendence.app/Contents | ||
cp -f dep/universalJavaApplicationStub Resplendence.app/Contents/MacOS/Resplendence | ||
cp -f dep/*.icns Resplendence.app/Contents/Resources | ||
cp -R "../KSFL/bin/com/kreative/"* Resplendence.app/Contents/Resources/Java/com/kreative/ | ||
cp -R "../OpenXION/bin/com/kreative/"* Resplendence.app/Contents/Resources/Java/com/kreative/ | ||
cp -R "../PowerPaint/bin/com/kreative/"* Resplendence.app/Contents/Resources/Java/com/kreative/ | ||
cp -R bin/com/kreative/* Resplendence.app/Contents/Resources/Java/com/kreative/ | ||
cp -R bin/glguerin Resplendence.app/Contents/Resources/Java/ | ||
cp -f bin/*.dff Resplendence.app/Contents/Resources/Java/ | ||
|
||
.PHONY: all eclipseall clean eclipseclean |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,201 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>CFBundleAllowMixedLocalizations</key> | ||
<string>true</string> | ||
<key>CFBundleDevelopmentRegion</key> | ||
<string>English</string> | ||
<key>CFBundleExecutable</key> | ||
<string>Resplendence</string> | ||
<key>CFBundleGetInfoString</key> | ||
<string>Resplendence version 2.0, © 2008-2010 Kreative Software.</string> | ||
<key>CFBundleIconFile</key> | ||
<string>AppIcon2.icns</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>com.kreative.resplendence</string> | ||
<key>CFBundleInfoDictionaryVersion</key> | ||
<string>6.0</string> | ||
<key>CFBundleName</key> | ||
<string>Resplendence</string> | ||
<key>CFBundlePackageType</key> | ||
<string>APPL</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string>2.0</string> | ||
<key>CFBundleSignature</key> | ||
<string>RSPL</string> | ||
<key>CFBundleVersion</key> | ||
<string>2.0</string> | ||
<key>LSArchitecturePriority</key> | ||
<array> | ||
<string>i386</string> | ||
<string>ppc</string> | ||
</array> | ||
<key>JavaX</key> | ||
<dict> | ||
<key>ClassPath</key> | ||
<array> | ||
<string>$JAVAROOT</string> | ||
<string>$JAVAROOT/Resplendence.jar</string> | ||
</array> | ||
<key>JVMVersion</key> | ||
<string>1.5+</string> | ||
<key>MainClass</key> | ||
<string>com.kreative.resplendence.ResplMain</string> | ||
<key>Properties</key> | ||
<dict> | ||
<key>apple.laf.useScreenMenuBar</key> | ||
<string>true</string> | ||
</dict> | ||
<key>VMOptions</key> | ||
<string>-Xmx2048M</string> | ||
<key>WorkingDirectory</key> | ||
<string>$APP_PACKAGE/Contents/Resources/Java</string> | ||
</dict> | ||
<key>CFBundleDocumentTypes</key> | ||
<array> | ||
<dict> | ||
<key>CFBundleTypeExtensions</key> | ||
<array> | ||
<string>rsrc</string> | ||
</array> | ||
<key>CFBundleTypeName</key> | ||
<string>Mac OS Resource File</string> | ||
<key>CFBundleTypeOSTypes</key> | ||
<array> | ||
<string>RSRC</string> | ||
<string>rsrc</string> | ||
</array> | ||
<key>LSHandlerRank</key> | ||
<string>Default</string> | ||
<key>CFBundleTypeIconFile</key> | ||
<string>DocIcon2-rsrc</string> | ||
<key>CFBundleTypeRole</key> | ||
<string>Editor</string> | ||
</dict> | ||
<dict> | ||
<key>CFBundleTypeExtensions</key> | ||
<array> | ||
<string>dff</string> | ||
</array> | ||
<key>CFBundleTypeName</key> | ||
<string>DFF Resource File</string> | ||
<key>CFBundleTypeOSTypes</key> | ||
<array> | ||
<string>DFFf</string> | ||
<string>DFF </string> | ||
</array> | ||
<key>LSHandlerRank</key> | ||
<string>Default</string> | ||
<key>CFBundleTypeIconFile</key> | ||
<string>DocIcon2-dff</string> | ||
<key>CFBundleTypeRole</key> | ||
<string>Editor</string> | ||
</dict> | ||
<dict> | ||
<key>CFBundleTypeExtensions</key> | ||
<array> | ||
<string>prc</string> | ||
</array> | ||
<key>CFBundleTypeName</key> | ||
<string>Palm OS Resource File</string> | ||
<key>CFBundleTypeOSTypes</key> | ||
<array> | ||
<string>PRCf</string> | ||
<string>PRC </string> | ||
</array> | ||
<key>LSHandlerRank</key> | ||
<string>Default</string> | ||
<key>CFBundleTypeIconFile</key> | ||
<string>DocIcon2-prc</string> | ||
<key>CFBundleTypeRole</key> | ||
<string>Editor</string> | ||
</dict> | ||
<dict> | ||
<key>CFBundleTypeExtensions</key> | ||
<array> | ||
<string>pqa</string> | ||
</array> | ||
<key>CFBundleTypeName</key> | ||
<string>Palm OS Web Application</string> | ||
<key>CFBundleTypeOSTypes</key> | ||
<array> | ||
<string>PQAf</string> | ||
<string>PQA </string> | ||
</array> | ||
<key>LSHandlerRank</key> | ||
<string>Default</string> | ||
<key>CFBundleTypeIconFile</key> | ||
<string>DocIcon2-pqa</string> | ||
<key>CFBundleTypeRole</key> | ||
<string>Editor</string> | ||
</dict> | ||
<dict> | ||
<key>CFBundleTypeExtensions</key> | ||
<array> | ||
<string>rcp</string> | ||
</array> | ||
<key>CFBundleTypeName</key> | ||
<string>ResplendentColor Palette</string> | ||
<key>CFBundleTypeOSTypes</key> | ||
<array> | ||
<string>RCPf</string> | ||
<string>RCP </string> | ||
</array> | ||
<key>LSHandlerRank</key> | ||
<string>Default</string> | ||
<key>CFBundleTypeIconFile</key> | ||
<string>DocIcon2-rcp</string> | ||
<key>CFBundleTypeRole</key> | ||
<string>Editor</string> | ||
</dict> | ||
<dict> | ||
<key>CFBundleTypeExtensions</key> | ||
<array> | ||
<string>kaf</string> | ||
</array> | ||
<key>CFBundleTypeName</key> | ||
<string>Kreative Attribute File</string> | ||
<key>CFBundleTypeOSTypes</key> | ||
<array> | ||
<string>KAFf</string> | ||
<string>KAF </string> | ||
</array> | ||
<key>LSHandlerRank</key> | ||
<string>Default</string> | ||
<key>CFBundleTypeIconFile</key> | ||
<string>DocIcon2-kaf</string> | ||
<key>CFBundleTypeRole</key> | ||
<string>Editor</string> | ||
</dict> | ||
<dict> | ||
<key>CFBundleTypeExtensions</key> | ||
<array> | ||
<string>rwc</string> | ||
</array> | ||
<key>LSTypeIsPackage</key> | ||
<true/> | ||
<key>CFBundleTypeName</key> | ||
<string>Resplendence Working Copy</string> | ||
<key>LSHandlerRank</key> | ||
<string>Default</string> | ||
<key>CFBundleTypeIconFile</key> | ||
<string>DocIcon2-rwc</string> | ||
<key>CFBundleTypeRole</key> | ||
<string>Editor</string> | ||
</dict> | ||
<dict> | ||
<key>CFBundleTypeName</key> | ||
<string>Anything</string> | ||
<key>CFBundleTypeOSTypes</key> | ||
<array> | ||
<string>****</string> | ||
</array> | ||
<key>LSHandlerRank</key> | ||
<string>None</string> | ||
<key>CFBundleTypeRole</key> | ||
<string>Editor</string> | ||
</dict> | ||
</array> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Manifest-Version: 1.0 | ||
Created-By: 2.0 (Kreative Software) | ||
Main-Class: com.kreative.resplendence.ResplMain |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
APPLRSPL |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<launch4jConfig> | ||
<headerType>gui</headerType> | ||
<outfile>../Resplendence.exe</outfile> | ||
<jar>../Resplendence.jar</jar> | ||
<errTitle>Resplendence</errTitle> | ||
<chdir>.</chdir> | ||
<customProcName>true</customProcName> | ||
<icon>Resplendence.ico</icon> | ||
<jre> | ||
<minVersion>1.5.0</minVersion> | ||
<maxHeapSize>2048</maxHeapSize> | ||
</jre> | ||
<versionInfo> | ||
<fileVersion>2.0.0.0</fileVersion> | ||
<txtFileVersion>2.0</txtFileVersion> | ||
<fileDescription>Resplendence</fileDescription> | ||
<copyright>(C) 2008-2010 Kreative Software</copyright> | ||
<productVersion>2.0.0.0</productVersion> | ||
<txtProductVersion>2.0</txtProductVersion> | ||
<productName>Resplendence</productName> | ||
<companyName>Kreative Software</companyName> | ||
<internalName>Resplendence</internalName> | ||
<originalFilename>Resplendence.exe</originalFilename> | ||
</versionInfo> | ||
</launch4jConfig> |
Binary file not shown.
Oops, something went wrong.