Skip to content

Commit

Permalink
Bump version to 2.6.4 and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
psvenk committed Feb 8, 2021
1 parent 9d2d9a8 commit 8f037c8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
4 changes: 2 additions & 2 deletions public/js/home.js
Original file line number Diff line number Diff line change
Expand Up @@ -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")];
Expand Down

0 comments on commit 8f037c8

Please sign in to comment.