Skip to content

Commit e942bf6

Browse files
Remove makerbox links and update links to AO documentation (#69)
* Remove makerbox links and update links to AO documentation * Remove BBC Logo from default template footer * bump version * spelling
1 parent 3a557ab commit e942bf6

File tree

7 files changed

+29
-40
lines changed

7 files changed

+29
-40
lines changed

Readme.md

Lines changed: 11 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22

33
**Create immersive and interactive audio experiences for multiple synchronised devices.**
44

5-
Audio device orchestration is the concept of using multiple connected devices to play back an audio experience. This repository holds an open source template application and libraries that handle the key components of an orchestrated audio system (pairing, synchronisation, and audio playback).
5+
Audio device orchestration is the concept of using multiple connected devices to play back an audio experience. This repository holds a template application and libraries that handle the key components of an orchestrated audio system (pairing, synchronisation, and audio playback).
6+
7+
## The _Audio Orchestrator_ production tool
8+
9+
Our _Audio Orchestrator_ production tool is now available through the open-source [Audio Orchestrator repository](https://github.com/bbc/audio-orchestrator). This tool is used for authoring metadata, and packaging media for use with the template and core library.
10+
11+
The [_Audio Orchestrator_ documentation](https://bbc.github.io/audio-orchestrator/) includes a [list of experiences made with these tools](https://bbc.github.io/audio-orchestrator/productions/) and [instructions for using a custom template](https://bbc.github.io/audio-orchestrator/custom-template) built using this repository. Note that most BBC productions shown there received significant additional development to extend the default template.
612

713
## Components
814

@@ -17,19 +23,13 @@ The [**Cloud-Sync** server](https://github.com/2-IMMERSE/cloud-sync) source code
1723
* [`@bbc/audio-orchestration-bbcat-js`](packages/bbcat-js)
1824
* [`@bbc/audio-orchestration-cloud-sync-client`](packages/cloud-sync-client)
1925

20-
## The _Audio Orchestrator_ production tool
21-
22-
Our _Audio Orchestrator_ production tool for authoring metadata and packaging media for use with the template and core library is [freely available on request from BBC MakerBox](https://www.bbc.co.uk/makerbox/tools/audio-orchestrator).
23-
24-
The [_Audio Orchestrator_ documentation](https://bbc.github.io/bbcat-orchestration-docs/) includes a [list of experiences made with these tools](https://bbc.github.io/bbcat-orchestration-docs/productions/) and [instructions for using a custom template](https://bbc.github.io/bbcat-orchestration-docs/custom-template) built using this repository.
25-
2626
# Usage
2727

28-
Ensure you have [Node.js](https://nodejs.org/en/) installed, including `npm` version 7 or higher (earlier versions of `npm` do not have the workspaces functionality used in this repository).
28+
Ensure you have [Node.js](https://nodejs.org/en/) installed, with a recent version of NPM.
2929

3030
```
31-
node -v # e.g. v16.13.0
32-
npm -v # e.g. 8.1.0
31+
node -v # e.g. v20.9.0
32+
npm -v # e.g. 10.4.0
3333
```
3434

3535
Start your project by downloading a copy of this repository, either by using the `Download as ZIP` button on GitHub, or by using `degit`.
@@ -71,8 +71,4 @@ The majority of our components (`template`, `core`, and `bbcat-js`) are licensed
7171

7272
If you are modifying the software to create your experience you may have to make your source code modifications available under the terms of the GPL license.
7373

74-
You may [contact BBC R&D](https://www.bbc.co.uk/rd/contacts) to discuss alternative licensing options. (Please note, the BBC is under no obligation to offer alternative terms.)
75-
76-
# Contributing
77-
78-
Please contact the authors by [raising a GitHub issue](https://github.com/bbc/audio-orchestration/issues/new). A contributor licence agreement may be applicable.
74+
You may [contact BBC R&D](https://www.bbc.co.uk/rd/contacts) to discuss alternative licensing options. (Please note, the BBC is under no obligation to offer alternative terms.)

package-lock.json

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/bbcat-js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bbc/audio-orchestration-bbcat-js",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "WebAudio DASH player components for audio orchestration framework",
55
"main": "dist/bbcat.js",
66
"files": [

packages/cloud-sync-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bbc/audio-orchestration-cloud-sync-client",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "Library implementing client code for cloud synchronisation",
55
"main": "dist/browser/CloudSyncKit.js",
66
"files": [

packages/core/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bbc/audio-orchestration-core",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "Components for synchronised object based audio experiences.",
55
"main": "dist/light.js",
66
"exports": {
@@ -17,8 +17,8 @@
1717
"dist"
1818
],
1919
"dependencies": {
20-
"@bbc/audio-orchestration-bbcat-js": "^0.1.1",
21-
"@bbc/audio-orchestration-cloud-sync-client": "^0.1.1",
20+
"@bbc/audio-orchestration-bbcat-js": "^0.1.2",
21+
"@bbc/audio-orchestration-cloud-sync-client": "^0.1.2",
2222
"dvbcss-clocks": "^0.0.4",
2323
"dvbcss-protocols": "^0.0.4",
2424
"events": "^3.0.0",

packages/template/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bbc/audio-orchestration-template",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "A user interface template showing how to integrate the bbcat-orchestration toolkit for orchestrated personal audio devices with React components.",
55
"repository": {
66
"type": "git",
@@ -12,7 +12,7 @@
1212
"dist"
1313
],
1414
"dependencies": {
15-
"@bbc/audio-orchestration-core": "^0.1.1",
15+
"@bbc/audio-orchestration-core": "^0.1.2",
1616
"@hot-loader/react-dom": "^16.11.0",
1717
"bowser": "^2.9.0",
1818
"classnames": "^2.2.6",

packages/template/src/components/footer/Footer.jsx

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,11 @@
33
* This source code is licensed under the GPL license found in the LICENSE file in this repository.
44
*/
55
import React from 'react';
6-
import Icon from 'components/icon/Icon';
76

87
const Footer = () => (
98
<div className="footer">
10-
<p className="logo">
11-
<Icon title="BBC Research & Development" padded name="bbcrd" />
12-
</p>
13-
<p className="small">
14-
<a href="https://www.bbc.co.uk/makerbox/tools/audio-orchestrator" target="_blank" rel="noopener noreferrer">Created with Audio Orchestrator</a>
15-
</p>
169
<p className="small">
17-
&copy; BBC R&amp;D 2022
10+
<a href="https://bbc.github.io/audio-orchestrator" target="_blank" rel="noopener noreferrer">Audio Orchestrator</a>
1811
</p>
1912
</div>
2013
);

0 commit comments

Comments
 (0)