From 41c5b46f5192831fc22420b78e3b27516c7c43d8 Mon Sep 17 00:00:00 2001 From: Cryptkeeper Date: Mon, 1 Feb 2016 05:34:51 -0600 Subject: [PATCH 1/5] Create CHANGELOG.md --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..6cb9cdb --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,4 @@ +**2.0.0** +- Servers are now referenced by their name on the graph controls instead of their IP. +- Servers now display their name on hover instead of their IP. +- Graph controls are now saved and loaded automatically. From 3f1323970b271b80b506c0f70ae4aa5fcc7bdbcd Mon Sep 17 00:00:00 2001 From: Cryptkeeper Date: Mon, 1 Feb 2016 05:36:12 -0600 Subject: [PATCH 2/5] Include a link to the CHANGELOG in the README --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 08d09b7..fb1bab3 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,9 @@ You can see an up-to-date copy of the master branch running on http://minetrack. Database logging is disabled by default. You can enable it in ```config.json``` by setting ```logToDatabase``` to true. This requires sqlite3 drivers to be installed. +#### What's being changed? +For the changelog, check out the[CHANGELOG](CHANGELOG.md) file. + #### How do I get added? At the moment, the main "minetrack.me" site is only accepting networks that average roughly 1,000 players at peak for **PC** servers, and 100 players at peak for **PE** servers. This is due to limited capacity and it's functionality. If you fit this description, you're welcome to open a Pull Request adding the network to ```config.json```. From c5e37a3f0d6b2c67fb3e68a5402f8b218c5d7eb6 Mon Sep 17 00:00:00 2001 From: Cryptkeeper Date: Mon, 1 Feb 2016 05:36:26 -0600 Subject: [PATCH 3/5] Increase version to 2.0.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b277459..f33df8b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "minetrack", - "version": "1.0.0", + "version": "2.0.0", "description": "A Minecraft server tracker that lets you focus on the basics.", "main": "app.js", "dependencies": { From 6e6595598308d25f8019e18e682b4e2bb988cc29 Mon Sep 17 00:00:00 2001 From: Cryptkeeper Date: Mon, 1 Feb 2016 05:36:41 -0600 Subject: [PATCH 4/5] Fix spacing typo in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fb1bab3..a2757be 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Database logging is disabled by default. You can enable it in ```config.json``` This requires sqlite3 drivers to be installed. #### What's being changed? -For the changelog, check out the[CHANGELOG](CHANGELOG.md) file. +For the changelog, check out the [CHANGELOG](CHANGELOG.md) file. #### How do I get added? At the moment, the main "minetrack.me" site is only accepting networks that average roughly 1,000 players at peak for **PC** servers, and 100 players at peak for **PE** servers. This is due to limited capacity and it's functionality. If you fit this description, you're welcome to open a Pull Request adding the network to ```config.json```. From b1e2f8007de79c9413fcbdc1b3b18401b045a4f7 Mon Sep 17 00:00:00 2001 From: Cryptkeeper Date: Mon, 1 Feb 2016 05:37:16 -0600 Subject: [PATCH 5/5] Note the movement of server listing --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cb9cdb..5b4213d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,3 +2,4 @@ - Servers are now referenced by their name on the graph controls instead of their IP. - Servers now display their name on hover instead of their IP. - Graph controls are now saved and loaded automatically. +- Moved server configuration into servers.json from config.json.