From 8f037c891e2a2fc832c0def08d1a6371db77fa7b Mon Sep 17 00:00:00 2001 From: psvenk <45520974+psvenk@users.noreply.github.com> Date: Mon, 8 Feb 2021 17:55:40 -0500 Subject: [PATCH] Bump version to 2.6.4 and update changelog --- CHANGELOG.md | 6 ++++++ package.json | 2 +- public/js/home.js | 4 ++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fa52809c..44a073cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.6.4] - tagged 2021-02-08 +- Hotfix for schedule after changes on Aspen +- Update dependencies + ## [2.6.3] - tagged 2021-02-07 - Change schedule tab to follow semester 2 schedule and replace black/silver slider with day-of-week picker ([#257], [#256]) @@ -167,6 +171,8 @@ and this project adheres to [2.6.0]: https://github.com/Aspine/aspine/releases/tag/v2.6.0 [2.6.1]: https://github.com/Aspine/aspine/releases/tag/v2.6.1 [2.6.2]: https://github.com/Aspine/aspine/releases/tag/v2.6.2 +[2.6.3]: https://github.com/Aspine/aspine/releases/tag/v2.6.3 +[2.6.4]: https://github.com/Aspine/aspine/releases/tag/v2.6.4 [Unreleased]: https://github.com/Aspine/aspine/tree/master [#71]: https://github.com/Aspine/aspine/issues/71 diff --git a/package.json b/package.json index 5d665b5a..5dbc3a16 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "aspine", - "version": "2.6.3", + "version": "2.6.4", "description": "Alternate frontend for Aspen", "homepage": "https://github.com/maxtkc/aspine#readme", "bugs": { diff --git a/public/js/home.js b/public/js/home.js index e6b220cc..ebe43523 100644 --- a/public/js/home.js +++ b/public/js/home.js @@ -1261,9 +1261,9 @@ $.ajax("/updates").then(upt => { const items = [...document.querySelectorAll("#updates h2")]; items.forEach(x => { x.className = "info-header"; }); //Hide Everything but first and second versions - items.slice(3).forEach(x => { x.style.setProperty("display", "none") }); + items.slice(4).forEach(x => { x.style.setProperty("display", "none") }); const subpoints = [...document.querySelectorAll("#updates ul")]; - subpoints.slice(2).forEach(x => { x.style.setProperty("display", "none") }); + subpoints.slice(3).forEach(x => { x.style.setProperty("display", "none") }); //Removes first two paragraphs with "Semantic versioning info" const paras = [...document.querySelectorAll("#updates p")];