Skip to content

Commit

Permalink
Update version number for release
Browse files Browse the repository at this point in the history
  • Loading branch information
justdave committed Jan 20, 2015
1 parent 555357c commit 4d74ed2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,17 @@ MCStatus

Android app to monitor the status of Minecraft servers

The MinecraftServer class is intended to be able to be used standalone if you wanted to include it in something else to use it to query the server. Although not a direct port, most of the process was taken from https://github.com/xPaw/PHP-Minecraft-Query/blob/master/MinecraftServerPing.php
The MinecraftServer class is intended to be able to be used standalone if you wanted to include it in something else to use it to query the server. Although not quite a direct port, most of the process was taken from https://github.com/xPaw/PHP-Minecraft-Query/blob/master/MinecraftServerPing.php . I wrote this because I couldn't find any open source solutions for this problem on Android, although several proprietary ones apparently exist with unresponsive developers.

Pretty sure this currently only works on version 1.7 and newer servers.

This is relatively incomplete still...
Adding new servers works, removing servers works, editing existing ones is not yet implemented.
Features:
* Add, remove, and edit servers in the list to check
* Will list the server's MOTD (message of the day), how many users are connected, and (if supplied by the server) the list of connected users.

Right now you have to manually refresh (it'll also refresh if you close and reopen the app, and if you rotate the screen). Eventually I want it to periodically update while the app it open (preference for how frequently perhaps?), and perhaps even check in the background and do notifications if someone connects, etc.
If you want to help, please do. :-) Pull requests welcome.
I also need a real app icon.

Click on "release" at the top of the Github page for downloads.
Click on "releases" at the top of the Github page for downloads.

https://github.com/justdave/MCStatus
https://github.com/justdave/MCStatus
4 changes: 2 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.justdave.mcstatus"
android:versionCode="1"
android:versionName="0.5" >
android:versionCode="2"
android:versionName="1.0" >

<uses-permission android:name="android.permission.INTERNET"/>

Expand Down

0 comments on commit 4d74ed2

Please sign in to comment.