Updated the GNU documentation.

Minor changes to AndroidManifest.
This commit is contained in:
dorian 2011-12-12 12:09:34 -05:00
parent a9878a2f12
commit c6fa1065a4
6 changed files with 90 additions and 44 deletions

9
.classpath Normal file
View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="gen"/>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
<classpathentry kind="lib" path="lib/jdom_0.9.jar"/>
<classpathentry kind="output" path="bin/classes"/>
</classpath>

33
.project Normal file
View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>justCheckers</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

View File

@ -1,29 +1,29 @@
== Current Developers ==
* Dorian Pula
** Founder, lead developer, project management, documentation & core programming.
Dorian Pula:
Founder, lead developer, project management, documentation & core programming.
== Past Developers ==
* Chris Bellini
** Game engine data objects, XML settings & project management.
** Versions 0.0-0.1
Chris Bellini:
Game engine data objects, XML settings & project management.
(Versions 0.0-0.1)
* Daniel D'Alimonte (skwirl)
** Code clean-up, refactoring, documentation & file releases.
** Versions 0.0-0.1
Daniel D'Alimonte (skwirl):
Code clean-up, refactoring, documentation & file releases.
(Versions 0.0-0.1)
* Ross Etchells
** Game engine logic and progressing.
** Versions 0.0-0.1
Ross Etchells:
Game engine logic and progressing.
(Versions 0.0-0.1)
* Rras Lekone
** Console UI (jCurses)
** Versions 0.0
Rras Lekone:
Console UI (jCurses)
(Versions 0.0)
* Brinick Simmons
** Core programming, XML settings and processing.
** Versions 0.0-0.1
Brinick Simmons:
Core programming, XML settings and processing.
(Versions 0.0-0.1)
== Inspiration ==
* Nick Nolfi
** Creator of the Chubby Checkers project and assignment.
** Inspiration for Civilization Checkers and justCheckers.
Nick Nolfi:
Creator of the Chubby Checkers project and assignment.
Inspiration for Civilization Checkers and justCheckers.

View File

@ -2,23 +2,24 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.justcheckers.android"
android:versionCode="1"
android:versionName="0.2">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".MenuActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
android:versionName="0.1.1">
<application android:icon="@drawable/icon" android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
<activity android:name=".MenuActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".GameActivity"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" />
<activity android:name=".InfoActivity"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" />
<activity android:name=".SettingsActivity"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" />
<activity android:name=".GameActivity" />
<activity android:name=".InfoActivity" />
<activity android:name=".SettingsActivity" />
</application>
<uses-sdk android:minSdkVersion="7" />
<uses-permission android:name="android.permission.INTERNET" />
</manifest>

View File

@ -1,6 +1,5 @@
== Version 0.1.1 (upcoming release) ==
* Cleaning up code for license reasons.
* Improved Ant build automation.
* Migrating codebase to pure-play Android from desktop Java and Swing.
* Relicensed on software to use the GPL 3.0 license instead of the GPL 2.0.
== Version 0.1.0 (2005-01-07) ==

View File

@ -1,14 +1,18 @@
== What is justCheckers? ==
justCheckers is an open source advanced checkers game built using Java. The aim
of the project is to create a checkers game that:
== About the Project ==
* handles skins and themes
* handles multimedia
* allows for network games
* contains a powerful yet fun computer opponent
* handles different checker rules
justCheckers is an advanced open source checkers game for Android. The aim of
the project is to make a game capable of supporting:
Version 0.1 lets you play a game of checkers (standard American rules) against
another player on the same computer.
* Skinning
* Network Games
* Computer Opponents
* Various Rules and Internationalizations
Project homepage: http://justcheckers.sourceforge.net/
Project homepage: http://justcheckers.org/
== Current Progress ==
The justCheckers project is in the middle of a general rewrite as much of the
code was designed for a desktop Java application rather than an Android app.
Also the game engine requires a general overhaul to allow for handling of
various variants of checkers.