Skip to content

Commit

Permalink
2.0.0-alpha.4
Browse files Browse the repository at this point in the history
  • Loading branch information
goto-bus-stop committed Nov 11, 2021
1 parent b4c35f7 commit 0647677
Show file tree
Hide file tree
Showing 4 changed files with 90 additions and 127 deletions.
20 changes: 18 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,23 @@ All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](http://semver.org/).

## 2.0.0-alpha.3 / 07 Oct 2021
## 2.0.0-alpha.4 / 11 Nov 2021
While this is an alpha release, new servers should use this rather than an older "stable" version.

This release re-introduces the search results feature that shows the playlists each result is
already part of. This **requires üWave Core 0.5.0-alpha.8 or higher**. In older server versions, the
feature is far too slow to be used.

Features:
* Request related playlists in search queries.

Internal:
* Reimplement media progress bar in JS. (#2140)
* Read HTML from filesystem on each request. If you upgrade the static files for the web client at
runtime it will no longer cause hash mismatches. You should still restart the web client's web
server to pick up server-side changes.

## 2.0.0-alpha.3 / 07 Nov 2021
While this is an alpha release, new servers should use this rather than an older "stable" version.

This release addresses a bunch of crashes introduced in the 2.0.0-alpha.2 release.
Expand All @@ -20,7 +36,7 @@ Bugfixes:
* Accept both UNIX and ISO timestamp formats for `booth.startTime`. This makes the client work
with üWave Core 0.5.0-alpha.5, which returns an unexpected value here.

## 2.0.0-alpha.2 / 07 Oct 2021
## 2.0.0-alpha.2 / 07 Nov 2021
This release is basically [one big PR][#1955] upgrading the build system and many dependencies.
A few bugfixes slipped in as well.

Expand Down
192 changes: 68 additions & 124 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "u-wave-web-build",
"description": "Web client for üWave servers.",
"version": "2.0.0-alpha.3",
"version": "2.0.0-alpha.4",
"author": "Renée Kooi <[email protected]>",
"bin": {
"u-wave-web": "bin/u-wave-web"
Expand Down
3 changes: 3 additions & 0 deletions src/middleware/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ export default function uwaveWebClient(options = {}) {
.get('/', (req, res, next) => {
res.setHeader('content-type', 'text/html');

// Note we can NOT change how the options injection works without consequence.
// This middleware explicitly should be forwards compatible with static files
// within the same major version. That simplifies the upgrade process for users.
const transform = hstream({
title,
'#u-wave-config': JSON.stringify(clientOptions),
Expand Down

0 comments on commit 0647677

Please sign in to comment.