From 45bcb38b5a25eddef3f629632889766d6454dc50 Mon Sep 17 00:00:00 2001 From: Santiago Quinteros Date: Fri, 4 Dec 2020 11:42:26 -0300 Subject: [PATCH] Version 0.8.2 --- History.md | 10 +++++++++- README.md | 21 +++++++++++++++++++++ package.json | 8 ++++---- 3 files changed, 34 insertions(+), 5 deletions(-) diff --git a/History.md b/History.md index f857020..cfe2049 100644 --- a/History.md +++ b/History.md @@ -1,4 +1,12 @@ -0.1.0 / 2019-04-30 - First public release +0.8.2 / 2020-12-04 +==== + * fix: search by job name, small side bar design fixe and toggle improvements (thanks @simllll) + * fix: joblist reset fix (thanks @simllll) + * fix: improve design on desktop + close sidebar on mobile when clicked on something (thanks @simllll) + * feat: enable options.query as number (thanks @Enubia @simllll) + * feat: multiselect checkboxes (thanks @Enubia @simllll) + +0.1.0 / 2020-04-30 - First public release ==== * New frontend written from scratch in vue.js * Add search diff --git a/README.md b/README.md index c4627b0..d9c2d68 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,27 @@ A modern, secure, and reliable dashboard for [Agenda](https://github.com/agenda/ --- +# Requirements + +A minimun Node.js version 12 is required for `@hapi/@hapi` dependency (see [#23](https://github.com/agenda/agendash-v2/issues/23)) + + +# Troubleshooting + +### Index for sorting + +It may be required to create the following index for faster sorting (see [#24](https://github.com/agenda/agendash-v2/issues/24)) + +``` +db.agendaJobs.ensureIndex({ + "nextRunAt" : -1, + "lastRunAt" : -1, + "lastFinishedAt" : -1 +}, "agendash2") +``` + +--- + # Motivation At [Software On The Road](softwareontheroad.com/about) we've been using agenda and agendash for almost every project since 2017 but it always had its limitation. diff --git a/package.json b/package.json index c4261fc..e27b424 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "agendash2", - "version": "0.8.1", + "version": "0.8.2", "description": "A modern dashboard for Agenda.js with Pagination and Search capabilities", "main": "app.js", "bin": "bin/agendash-standalone.js", @@ -22,12 +22,12 @@ ], "repository": { "type": "git", - "url": "git+https://github.com/Software-On-The-Road/agendash-v2.git" + "url": "git+https://github.com/agenda/agendash-v2.git" }, "bugs": { - "url": "https://github.com/Software-On-The-Road/agendash-v2/issues" + "url": "https://github.com/agenda/agendash-v2/issues" }, - "homepage": "https://github.com/Software-On-The-Road/agendash-v2#readme", + "homepage": "https://github.com/agenda/agendash-v2#readme", "license": "MIT", "dependencies": { "@hapi/hapi": "^19.1.1",