Commit Graph

341 Commits

Author SHA1 Message Date
f6ad792d47 Fixed matching commands which contain quoted arguments. 2012-07-03 19:21:37 +01:00
4689fdcb2c Added the server give command. 2012-07-03 18:18:23 +01:00
c9ef119692 Bumped version to 0.3.4. 2012-07-03 18:16:47 +01:00
77d1c08002 Fixed the game mode, cmd and cmdlog commands.
They were not passed the correct arguments to function correctly.
0.3.4
2012-07-03 12:18:02 +01:00
fbbc85c586 Updated changelog links to point to new semantic version names. 2012-06-28 19:22:57 +01:00
63a129a8fb Bumped version to 0.3.3.
Fixes #33.
0.3.3
2012-06-28 18:25:21 +01:00
cc81cc2c1d Removed log line truncation, as invisible characters can not be assumed.
The control characters "^[[m" do not appear at the end of all lines,
and indeed do not appear at all for some servers. Truncation in all
cases is therefor incorrect.

These characters–I suspect–control the colour of terminal text, and in
the observed cases–I think–return it to the colour white. This commit
no longer truncates them.
2012-06-28 18:19:41 +01:00
e661983e88 Fixed some case errors in function names. 2012-06-28 15:47:41 +01:00
fcc06ea9d8 Bumped version to 0.3.2. 0.3.2 2012-06-28 12:02:44 +01:00
3d9303d269 Removes a debug statement. Fixes #32. 2012-06-28 12:01:03 +01:00
609b0e73e5 Bumped to version 0.3.1. 0.3.1 2012-06-27 19:01:24 +01:00
859d415bc9 Stopped requiring DEFAULT_SERVER_CONF in settings. 2012-06-27 18:52:11 +01:00
e88391ab7b Added versioning information to the readme. 2012-06-27 18:23:01 +01:00
aaa4438544 Bumped version to 0.3.0.
Closes #22.
0.3.0
2012-06-27 18:14:58 +01:00
36f91805be Individual server settings are now read from "server.properties".
They were expected in a "server.conf" file in the server directory.
2012-06-27 18:10:45 +01:00
ec24a53519 Bumped version to 0.2.16. 0.2.16 2012-06-27 18:08:57 +01:00
7286dbd334 Insisted that the server should be stopped, when moving worlds into ram. 2012-06-27 17:04:06 +01:00
100a646a8e Closes #21, by capitalising all global variables. 2012-06-27 16:56:37 +01:00
092dd0f63f Bumped version to 0.2.15. 0.2.15 2012-06-25 15:56:25 +01:00
229d0fc67d Fixes #19. Centralises removing log new line characters. 2012-06-25 15:47:59 +01:00
b67e470543 Bumped to version 0.2.14. 0.2.14 2012-06-25 15:23:02 +01:00
9b8a1dd21d Fixes #20. By implementing checks before reading server files. 2012-06-25 15:18:08 +01:00
996e67b340 Bumped to version 0.2.13. 0.2.13 2012-06-25 14:40:26 +01:00
d9cdcaff6e Fixed the restart and operator remove, and time set commands. 2012-06-25 14:35:51 +01:00
0f8f200328 Bumped version 0.2.12. 0.2.12 2012-06-25 14:03:51 +01:00
93f255ba63 Fixed server stop command. 2012-06-25 14:01:48 +01:00
d363281057 Bumped version to 0.2.11. 0.2.11 2012-06-25 13:04:36 +01:00
3e84582d5d Replaced more trouble substring lines.
Got the last of the negative indexed substrings, which caused problems
on some systems. Replaced with a more robust system.
2012-06-25 13:00:51 +01:00
472adc586b Bumped version to 0.2.10 Beta. 0.2.10 2012-06-20 08:30:51 +01:00
be35182993 Fixes #28. Corrected spelling mistake preventing usage of the jar group delete command. 2012-06-20 08:27:18 +01:00
c44c6c7645 Fixed spelling mistake in help text. 2012-06-18 11:12:51 +01:00
5cde122d1f Bumped version to 0.2.9. 0.2.9 2012-06-18 10:22:58 +01:00
a08b439580 Fixed #23! Replaced substring with more robust approach. 2012-06-18 10:15:28 +01:00
9d8268b66e Fixed spaces indentation for .travis.yml. 2012-06-18 02:16:10 +01:00
57f4af9d29 Bumped to version 0.2.8. 0.2.8 2012-06-18 02:00:42 +01:00
51e072f92a Updated travis to only test the master branch. 2012-06-18 01:59:57 +01:00
2429752c68 Improved command registration to deal with erroneous regexes. 2012-06-18 01:53:35 +01:00
0f2f9b6a7f Bumped version to 0.2.7 0.2.7 2012-06-17 23:00:06 +01:00
dc2eb43af5 Merged refactoring into master. 2012-06-17 22:52:35 +01:00
9722741358 Fixed failure when listing no jar groups. 2012-06-17 22:42:30 +01:00
1f4afb2368 Updated version command to display the correct version. 0.2.6 2012-06-17 22:26:54 +02:00
4f51ee8446 Prevented errors when listing no jar groups. 2012-06-12 03:16:41 +01:00
6ba90f44ed Prevented automatic download of jar group files when created 2012-06-12 03:15:56 +01:00
583bc04c5f Added tests for jar group creation and listing 2012-06-12 03:14:43 +01:00
17221b3aa4 Improved jargroup_list loop code to better handle spaces. 2012-06-12 02:14:15 +01:00
c932bab672 Finished refactoring commands into a registration type system. 2012-06-12 02:02:20 +01:00
1a5a192f71 WIP commit on refactoring command registration.
Removes the repetitive and gigantic case statement, and adds a
register_command function. This function generates a regex for matching
that command and a handler function to call.

The entry point into the script now matches the user input against a
regex and calls the handler function.
2012-06-11 19:25:31 +01:00
a4fb3800e8 Fixes #17. Typo preventing server level override of the CONFIRM_SAVE_ALL and CONFIRM_START settings. 2012-06-11 19:18:37 +01:00
423fcae2b7 Fixed a formatting error. 2012-06-08 05:20:31 +02:00
188203d9ef Added GPLv3 lincense to the project. 2012-06-08 04:18:01 +01:00