From 0ac311ce37497a713e5a25b60dbfb935b36af6fa Mon Sep 17 00:00:00 2001 From: Nick Krecklow Date: Mon, 30 Mar 2020 01:16:52 -0500 Subject: [PATCH] 4.0.0 --- .eslintignore | 1 - README.md | 2 +- docs/CHANGELOG.md | 10 ++++++++++ gulpfile.js | 29 ----------------------------- package.json | 13 +++---------- 5 files changed, 14 insertions(+), 41 deletions(-) delete mode 100644 .eslintignore delete mode 100644 gulpfile.js diff --git a/.eslintignore b/.eslintignore deleted file mode 100644 index f59ec20..0000000 --- a/.eslintignore +++ /dev/null @@ -1 +0,0 @@ -* \ No newline at end of file diff --git a/README.md b/README.md index 9f49929..68fb621 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ You can find a list of community hosted instances below: Want to be listed here? Add yourself in a pull-request! #### Try it out! -You can see an up-to-date copy of the production branch running on http://minetrack.me +You can see an up-to-date copy of the production branch running on https://minetrack.me "master" branch contains everything you need to start your own copy. "production" branch is what's used in the production environment of the minetrack.me site. diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 495b9d8..fa1d979 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,3 +1,13 @@ +**4.0.0** *(Mar 30 2020)* +- Added dark mode +- Added 24hr peak feature +- Removed legacy category system +- Removed /status.json deprecation warning +- Removed Google Analytics tracker +- Changed default footer text +- Various bug fixes +- Removed gulp build tools + **3.1.0** *(Mar 14 2017)* - Updated design. More flexible! - Automatically builds indexes on database. diff --git a/gulpfile.js b/gulpfile.js deleted file mode 100644 index 68da0ba..0000000 --- a/gulpfile.js +++ /dev/null @@ -1,29 +0,0 @@ -var gulp = require('gulp'); -var cssmin = require('gulp-cssmin'); -var uglify = require('gulp-uglify'); -var nodemon = require('gulp-nodemon'); -var gif = require('gulp-if'); - -var inProduction = process.env['NODE_ENV'] == 'production'; - -gulp.task('build-assets-css', function() { - gulp.src('assets/css/main.css') - .pipe(gif(inProduction, cssmin())) - .pipe(gulp.dest('production-assets/css')); -}); - -gulp.task('build-assets-js', function() { - gulp.src('assets/js/*') - .pipe(gif(inProduction, uglify())) - .pipe(gulp.dest('production-assets/js')); -}); - -gulp.task('build-assets', ['build-assets-css', 'build-assets-js']); - -gulp.task('watch-app', function() { - nodemon({ - script: 'app.js', - ext: 'js json', - env: {'NODE_ENV': 'development'} - }); -}); diff --git a/package.json b/package.json index e5a5ec1..2cc7da9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "minetrack", - "version": "3.1.0", + "version": "4.0.0", "description": "A Minecraft server tracker that lets you focus on the basics.", "main": "app.js", "dependencies": { @@ -19,17 +19,10 @@ "keywords": [ "minetrack" ], - "author": "Cryptkeeper ", + "author": "Cryptkeeper ", "license": "MIT", "bugs": { "url": "https://github.com/Cryptkeeper/Minetrack/issues" }, - "homepage": "https://github.com/Cryptkeeper/Minetrack#README", - "devDependencies": { - "gulp": "^3.9.0", - "gulp-cssmin": "^0.1.7", - "gulp-if": "^2.0.0", - "gulp-nodemon": "^2.0.4", - "gulp-uglify": "^1.5.1" - } + "homepage": "https://github.com/Cryptkeeper/Minetrack#README" }