Removing some files that have either moved or no longer apply.

This commit is contained in:
Rob Greene 2018-11-21 21:56:44 -06:00
parent 4942f1fdbc
commit a0a0c1ce74
8 changed files with 0 additions and 95 deletions

View File

@ -1,40 +0,0 @@
General process to prepare, build, and release AppleCommander
=============================================================
This documents the over-all process used when making a new release of
AppleCommander. It requires admin authority on the AppleCommander project
on SourceForge. Plan about 60 minutes for the release process.
1. Update version number in AppleCommander.java.
2. Move notes from TODO to VERSIONS.
3. Update web pages. This includes, but is not limited to:
* index.html (new features)
* news-posting.html (news message that will be sent)
4. Tag AppleCommander project with the version number. The
standard is: v[major].[minor].[service]
5. Build distribution files - Ant target "all".
- Build JAR file using executableGuiJar target.
- Build JAR file using executableCmdJar target.
- Build source build using sourceZip target.
- Make AppleCommander Javadoc build using javadocZip target.
- Build web site with websiteZip target.
6. Build native executables:
- Build native AppleCommander executable for Windows.
- Build native AppleCommander executable for Linux.
7. Upload web pages (including javadoc) to AppleCommander site.
8. Upload files to SourceForge upload site.
9. Make release through SourceForge release system.
10. Post announcement to AppleCommander project site on SourceForge.
11. Post message to news groups:
* comp.emulators.apple2
* comp.sys.apple2

View File

@ -1,55 +0,0 @@
Configuring Eclipse
===================
This document describes how to setup Eclipse with AppleCommander.
It describes configurations for Windows or Mac with Eclipse 3.3.x.
Configurations for other environments should be similar.
SWT_JAR Classpath Variable
==========================
When developing in Eclipse, the SWT library needs to be available.
AppleCommander has been configured to expect an SWT_JAR environment variable.
On Windows, go to Window -> Preferences -> Java -> Classpath Variables.
Click on New button and enter SWT_JAR for the variable name. Choose the
File button to set the path and locate the swt.jar. A similarly named
file will be located at:
<ECLIPSE_HOME>/plugins/org.eclipse.swt.win32.win32.x86_3.3.0.v3346.jar
On Mac, go to Eclipse -> Preferences -> Java -> Classpath Variables to
add the SWT_JAR variable. The corresponding library will look like this:
<ECLIPSE_HOME>/plugins/org.eclipse.swt.carbon.macosx_3.3.3.v3349.jar
Click OK and close out of each dialog. Answer YES to the prompt
regarding recompiling your entire workspace.
Running AppleCommander within Eclipse
=====================================
On either platform, you can create a new run configuration by selecting Run ->
Open Run Dialog. Create a new Java Application for Project AppleCommander,
Main class com.webcodepro.applecommander.ui.AppleCommander, and Arguments -swt.
On Windows, the DLL file associated with SWT needs to be located by the JVM.
To do this, add the following flag to VM arguments:
-Djava.library.path="<ECLIPSE_HOME>\plugins\org.eclipse.swt.win32_2.0.2\os\win32\x86"
On Mac, no additional configuration is necessary.
The ant file build/build.xml specifies version 1.3 for source and target.
Compatible settings may be specified under Project -> Properties -> Java Compiler
using the Compiler compliance level menu.
Java Build Path
===============
The project's Java build path may be edited by selecting Project ->
Properties -> Java Build Path. Also, look at the Java Build Path help
page. A typical .classpath might look like this On either Windows or Mac:
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="test"/>
<classpathentry kind="var" path="SWT_JAR"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/3"/>
<classpathentry kind="output" path="bin"/>
</classpath>

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.