From b572dccabdf413bad8b58fc6de1a8357a9df9671 Mon Sep 17 00:00:00 2001 From: Florrie Date: Fri, 24 Jul 2020 21:33:16 -0300 Subject: small patch! --- upd8.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'upd8.js') diff --git a/upd8.js b/upd8.js index bffd50d..5700cfe 100644 --- a/upd8.js +++ b/upd8.js @@ -97,7 +97,7 @@ const SITE_TITLE = 'Homestuck Music Wiki'; const SITE_ABOUT = fixWS`

Welcome to my fan-made Homestuck music wiki!

Homestuck has always been an incredible creative collaboration, and especially beloved by the community and critical in that collaboration is the webcomic and world's humongous soundtrack, comprising well over 500 tracks by dozens of musicians and artists. This wiki aims to be an interesting and useful resource for anyone interested in that music, as well as an archive for all things related.

-

Pertaining to the history of this site: it was originally made as a remake of Homestuck's official Bandcamp, which saw its content particularly reduced on 10/25/19. This site aims to be a more reliable resource and reference: track art (conspicuously missing from the Bandcamp) is archived here, solo albums (among other missing albums, like Squiddles!) are all indexed in the one place, and URLs will always stay consistent. And of course, also included are links for listening on Bandcamp and other services.

+

Pertaining to the history of this site: it was originally made as a remake of Homestuck's official Bandcamp, which saw its content particularly reduced on 10/25/19. This site aims to be a more reliable resource and reference: track art (conspicuously missing from the Bandcamp) is archived here, solo albums (among other missing albums, like [[album:Squiddles!]]) are all indexed in the one place, and URLs will always stay consistent. And of course, also included are links for listening on Bandcamp and other services.

The code for this website is open source (GPL-3.0), and can be explored or forked here. I don't actively keep track of issues or PRs raised there; if you want to get in touch with feature requests or comments on the code, my contact info is here!

Resource & Author Credits

@@ -118,10 +118,10 @@ const SITE_ABOUT = fixWS`
  • Monckat, for suggesting the album Strife 2 before I'd begun adding fandom-created albums and unofficial releases to this wiki.
  • Kidpen, for suggesting the "Flashes that feature this track" feature.
  • an emailer, for suggesting the "Random track" feature.
  • -
  • foreverFlumoxed, for pointing out that [S] ==> contains reference to JOHN DO THE WINDY THING (this reminded me to add all the unreleased Flash tracks to the Unreleased Tracks album!), and for going to the massive effort of checking every track page and pointing out a bunch of missing cover arts and title typos!
  • +
  • foreverFlumoxed, for pointing out that [[flash:338]] contains reference to [[JOHN DO THE WINDY THING]] (this reminded me to add all the unreleased Flash tracks to the Unreleased Tracks album!), for recommending the restructure to [[album:Unreleased Tracks]], and for going to the massive effort of checking every track page and pointing out a bunch of missing cover arts and title typos!
  • Makin, for various initial help in data collection (especially commentary) and lifting the site off the ground by pinning it to the top of the /r/homestuck subreddit for a while, and for linking me the independent release of Sburb.
  • -
  • an emailer, for sending a crop of the YT thumbnail art for After the Sun (plus the SoundCloud link for that track).
  • -
  • Thanks for pointing out typos, errors in reference lists, and out of date details: cookiefonster, foreverFlummoxed.
  • +
  • an emailer, for sending a crop of the YT thumbnail art for [[After the Sun]] (plus the SoundCloud link for that track), for reporting the "Random" buttons being broken, and for linking a bunch of resources and various official uploads of tracks and albums.
  • +
  • Thanks for pointing out typos, errors in reference lists, and out of date details: cookiefonster, foreverFlummoxed, and an emailer.
  • `; @@ -915,7 +915,7 @@ function writeMiscellaneousPages() {

    ${SITE_TITLE}

    (Home)

    - ${SITE_ABOUT} + ${transformMultiline(SITE_ABOUT, true)}
    @@ -1478,7 +1478,7 @@ function writeListingPages() { [['albums', 'by-name'], `Albums - by Name`, albumData.slice() .sort(sortByName) .map(album => getAlbumLI(album, `(${album.tracks.length} tracks)`))], - [['albums', 'by-date'], `Albums - by Date`, C.sortByDate(albumData.slice()) + [['albums', 'by-date'], `Albums - by Date`, C.sortByDate(albumData.filter(album => album.directory !== C.UNRELEASED_TRACKS_DIRECTORY)) .map(album => getAlbumLI(album, `(${getDateString(album)})`))], [['albums', 'by-duration'], `Albums - by Duration`, albumData.slice() .map(album => ({album, duration: getTotalDuration(album.tracks)})) @@ -1537,7 +1537,7 @@ function writeListingPages() { `], [['tracks', 'by-date'], `Tracks - by Date`, albumChunkedList( - C.sortByDate(allTracks.slice()), + C.sortByDate(allTracks.filter(track => track.album.directory !== C.UNRELEASED_TRACKS_DIRECTORY)), track => fixWS`
  • ${track.name}
  • `)], -- cgit 1.3.0-6-gf8a5