This commit is contained in:
Nick Krecklow 2020-03-30 01:16:52 -05:00
parent 63970a7752
commit 0ac311ce37
No known key found for this signature in database
GPG Key ID: 5F149FDE156FFA94
5 changed files with 14 additions and 41 deletions

@ -1 +0,0 @@
*

@ -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! Want to be listed here? Add yourself in a pull-request!
#### Try it out! #### 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. "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.

@ -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)* **3.1.0** *(Mar 14 2017)*
- Updated design. More flexible! - Updated design. More flexible!
- Automatically builds indexes on database. - Automatically builds indexes on database.

@ -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'}
});
});

@ -1,6 +1,6 @@
{ {
"name": "minetrack", "name": "minetrack",
"version": "3.1.0", "version": "4.0.0",
"description": "A Minecraft server tracker that lets you focus on the basics.", "description": "A Minecraft server tracker that lets you focus on the basics.",
"main": "app.js", "main": "app.js",
"dependencies": { "dependencies": {
@ -19,17 +19,10 @@
"keywords": [ "keywords": [
"minetrack" "minetrack"
], ],
"author": "Cryptkeeper <hello@cryptkpr.me>", "author": "Cryptkeeper <hello@npm.nklow.com>",
"license": "MIT", "license": "MIT",
"bugs": { "bugs": {
"url": "https://github.com/Cryptkeeper/Minetrack/issues" "url": "https://github.com/Cryptkeeper/Minetrack/issues"
}, },
"homepage": "https://github.com/Cryptkeeper/Minetrack#README", "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"
}
} }