Skip to content

Releases: krgamestudios/chat-server

v1.4.0 - Bumping Version Numbers Just Because

31 Dec 19:24
Compare
Choose a tag to compare

Bumping every MERN-template component version number, because it's a new year.

Minor Upgrades

23 Jul 10:43
6b01bfa
Compare
Choose a tag to compare

I've been working on a private fork of the MERN-template to produce a game called Egg Trainer (which you can see here), and I've imported a bunch of improvements from that private fork into this project and it's services. So there's no major changes in how the template works, but I have updated a lot of the libraries used in it.

Edit: A minor upgrade problem from 1.2.0 to 1.2.1 - you must run the following command in the chat server database:

SET FOREIGN_KEY_CHECKS=0;
ALTER TABLE `chatlogs` CHANGE `id` `index` INT( 11 ) NOT NULL AUTO_INCREMENT ;
ALTER TABLE `reports` CHANGE `id` `index` INT( 11 ) NOT NULL AUTO_INCREMENT ;
ALTER TABLE `reports` CHANGE `chatlogId` `chatlogIndex` INT( 11 );
SET FOREIGN_KEY_CHECKS=1;

Release Version 1.0

17 Mar 17:48
Compare
Choose a tag to compare

This socket.io chat server is ready for production! There may be more issues, but it seems stable enough, and there's no point putting it off any longer.