diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 50ee348..71f0018 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,5 +1,8 @@ Mad Chatter +Version 0.3.4 + - Fixed a bug that broke the ability to create a new project. + Version 0.3.1 - Fixed UI issues that caused the entire app to not work in 0.3.0 release. diff --git a/bin/mad_chatter b/bin/mad_chatter index 5a53117..a313e86 100755 --- a/bin/mad_chatter +++ b/bin/mad_chatter @@ -27,6 +27,7 @@ module MadChatter desc 'preview', 'Starts both a web server and the Mad Chatter chat server' def preview + puts 'Starting the web server at http://localhost:3000' t1 = Thread.new { require 'mad_chatter/web_server' } t2 = Thread.new { require 'mad_chatter'; MadChatter.start } t2.join() diff --git a/lib/mad_chatter/version.rb b/lib/mad_chatter/version.rb index b0debdf..6bd376b 100644 --- a/lib/mad_chatter/version.rb +++ b/lib/mad_chatter/version.rb @@ -1,5 +1,5 @@ module MadChatter - VERSION = '0.3.3' + VERSION = '0.3.4' end \ No newline at end of file