diff --git a/README.txt b/README.txt index 1e0605d..0c513c9 100644 --- a/README.txt +++ b/README.txt @@ -1,4 +1,3 @@ - IRC Mod for Minetest (C) 2012 Diego Martínez @@ -20,6 +19,11 @@ For Unix-based systems, you should not have any problems with the C compiler ISO), since vanilla Puppy does not come with `gcc'. See your Puppy docs for more info about how to install additional SFS files. +Quick one line build for linux. + +git clone https://github.com/kaeza/minetest-irc.git && cd minetest-irc && mkdir build && cd build && cmake .. && make && make pack_mod && cp -R irc +Plese change the "cp -R irc" to fit your install of minetest. + To compile and "pack" the mod: - Open a command prompt/terminal and CD to the minetest-irc directory. diff --git a/TESTED_ON.txt b/TESTED_ON.txt new file mode 100644 index 0000000..bec2c63 --- /dev/null +++ b/TESTED_ON.txt @@ -0,0 +1,23 @@ +This was successfully tested on the following systems and found to compile, install and work properly in minetest. + +ArchLinx +-------- + +GCC 4.7.2 +CMAKE 2.8.10.1 + + +Ubuntu 12.10 +------ +GCC 4.7.2-2ubuntu1 +CMAKE 2.8.9 + + + +Fails on: + +LinuxMint +--------- + +GCC 4.5.2 +CMAKE 2.8.3 diff --git a/src/init.lua b/src/init.lua index 77b6623..e479174 100644 --- a/src/init.lua +++ b/src/init.lua @@ -41,7 +41,7 @@ if (not mt_irc.server_nick) then end mt_irc.server = (mt_irc.server or "irc.freenode.net"); mt_irc.port = (mt_irc.port or 6667); -mt_irc.channel = (mt_irc.channel or "#minetest-irc-testing"); +mt_irc.channel = (mt_irc.channel or "#mtgamechatforservers"); mt_irc.dtime = (mt_irc.dtime or 0.2); mt_irc.timeout = (mt_irc.timeout or 60.0); mt_irc.message_format_out = (mt_irc.message_format_out or "<$(nick)> $(message)");