Skip to content

Commit

Permalink
Adjust version numbering
Browse files Browse the repository at this point in the history
  • Loading branch information
founderio committed Mar 12, 2018
1 parent e49ab0e commit a9ab1ae
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions src/mcsuperserver_1_4.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
# 0.06 20120520 scripting support and signal terminate support
# 0.06.01 20120831 fix bug with python 2.4 and earier
# 0.06.02 20120928 fix bug when getting handle_close on both server and proxy
# 0.06.03 20131026 (founderio) modified for Minecraft 1.4+, Protocol Version & Minecraft Version read from config
# 0.06.04 20131112 (founderio) fixed mistake in version definition
# 0.07 20131026 (founderio) modified for Minecraft 1.4+, Protocol Version & Minecraft Version read from config
# 0.07.01 20131112 (founderio) fixed mistake in version definition

# http://www.wiki.vg/Protocol#Server_List_Ping_.280xFE.29
# https://gist.github.com/1209061
Expand All @@ -57,7 +57,7 @@
# always go to the main thread.)


VER = 0.06
VER = 0.07
ss = None
ssStdin = None
mcProcess = None
Expand Down
6 changes: 3 additions & 3 deletions src/mcsuperserver_1_7.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
# 0.06 20120520 scripting support and signal terminate support
# 0.06.01 20120831 fix bug with python 2.4 and earier
# 0.06.02 20120928 fix bug when getting handle_close on both server and proxy
# 0.06.03 20131026 (founderio) modified for Minecraft 1.4+, Protocol Version & Minecraft Version read from config
# 0.07 20131030 (founderio) modified for Minecraft 1.7.2
# 0.07 20131026 (founderio) modified for Minecraft 1.4+, Protocol Version & Minecraft Version read from config
# 0.08 20131030 (founderio) modified for Minecraft 1.7.2

# http://www.wiki.vg/Protocol#Server_List_Ping_.280xFE.29
# https://gist.github.com/1209061
Expand All @@ -57,7 +57,7 @@
# always go to the main thread.)


VER = 0.07
VER = 0.08
ss = None
ssStdin = None
mcProcess = None
Expand Down
2 changes: 1 addition & 1 deletion src/mcsuperserverscript_1_7.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# 0.03 20120526 (0.6) fix bug when the world is changed when no users connected
# 0.04 20120527 (0.6) fix bug spaces in world names and motd is prepended with world name
# 0.05 20120802 (0.6) had to change from using '/' for commands
# 0.05 20140325 (0.7) (founderio) Changes in Command Line Output parsing, tested with 1.7.5
# 0.06 20140325 (0.7) (founderio) Changes in Command Line Output parsing, tested with 1.7.5

import mcsuperserver, re, os, os.path, textwrap

Expand Down

0 comments on commit a9ab1ae

Please sign in to comment.