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

View File

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

View File

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

View File

@ -1,14 +1,18 @@
== What is justCheckers? == == About the Project ==
justCheckers is an open source advanced checkers game built using Java. The aim
of the project is to create a checkers game that:
* handles skins and themes justCheckers is an advanced open source checkers game for Android. The aim of
* handles multimedia the project is to make a game capable of supporting:
* allows for network games
* contains a powerful yet fun computer opponent
* handles different checker rules
Version 0.1 lets you play a game of checkers (standard American rules) against * Skinning
another player on the same computer. * 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.