Skip to content

Commit c910947

Browse files
committed
v1.7.1 Alpha - A* Search
1 parent 34073ce commit c910947

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

README.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
1-
JavaGame Alpha v1.7
1+
JavaGame Alpha v1.7.1 - 1 Year anniversary
22
=====================
33

44
[![Ohloh Stats](https://www.ohloh.net/p/JavaGame/widgets/project_thin_badge.gif)](https://www.ohloh.net/p/JavaGame)
55

66
#####What is JavaGame?
7-
JavaGame is a game project that have been working on since May. I have added many features to the game, but now I am running out of ideas.
7+
JavaGame is a game project that have been working on since May 2013. I have added many features to the game over the last year and I plan on adding even more features. This game is purely for my own sake to practice my skills in Java.
88

99
#####Why name it JavaGame?
10-
Well i'm still not sure what exactly i'm going to do with it, and I haven't thought of a suitable name either
10+
Well i'm still not sure what exactly i'm going to do with it, and I haven't thought of a suitable name either. I hope to change the name in the near future
11+
12+
#####Play the Game
13+
* For latest version get
14+
* [v1.7.1](https://github.com/redomar/JavaGame/releases/tag/v1.7.1)
15+
* For multiplayer enabled get
16+
* [v1.5.4](https://github.com/redomar/JavaGame/releases/tag/v1.5.4)
1117

1218
#####How to download this repository for eclipse tutorial
1319
Watch this video [here](http://youtu.be/_3nCgac3KKM) or checkout the [GitHub Pages](http://redomar.github.io/JavaGame/)
@@ -22,9 +28,8 @@ Watch this video [here](http://youtu.be/_3nCgac3KKM) or checkout the [GitHub Pag
2228
* Click Add Class Folder
2329
* Check the /res folder and hit finish
2430
* Make the changes in the /src folder
25-
* Commit your changes (```git commit -am "Change Title"```)
31+
* Commit your changes (```git commit -m "Change Title"```)
2632
* Push to the branch (```git push origin my_branch```)
2733
* Open a [Pull Request](https://github.com/redomar/JavaGame/pull/new/master)
2834

29-
[![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/redomar/javagame/trend.png)](https://bitdeli.com/free "Bitdeli Badge")
30-
35+
[![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/redomar/javagame/trend.png)](https://bitdeli.com/free "Bitdeli Badge")

jar/javagame.jar

29.4 KB
Binary file not shown.

src/com/redomar/game/Game.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public class Game extends Canvas implements Runnable {
3434

3535
// Setting the size and name of the frame/canvas
3636
private static final long serialVersionUID = 1L;
37-
private static final String game_Version = "v1.7 Alpha";
37+
private static final String game_Version = "v1.7.1 Alpha";
3838
private static final int WIDTH = 160;
3939
private static final int HEIGHT = (WIDTH / 3 * 2);
4040
private static final int SCALE = 3;
@@ -88,7 +88,7 @@ public class Game extends Canvas implements Runnable {
8888

8989
/**
9090
* @author Redomar
91-
* @version Alpha 1.7
91+
* @version Alpha 1.7.1
9292
*/
9393
public Game() {
9494
setMinimumSize(new Dimension(WIDTH * SCALE, HEIGHT * SCALE));

0 commit comments

Comments
 (0)