Skip to content

Commit

Permalink
0.1.0 version (#49)
Browse files Browse the repository at this point in the history
* add initial content id to index.html

* bump version 0.1.0

* remove pre-release notice
  • Loading branch information
kristianhentschelbbc authored Apr 21, 2022
1 parent 57e1c94 commit 5c026bf
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 22 deletions.
4 changes: 0 additions & 4 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@

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).

## Status

**This repository is currently a pre-release; an updated version of Audio Orchestrator that can be used with a custom template will be released soon and this notice removed. Keep an eye on the R&D Blog and the MakerBox community.**

## Components

<img alt="Components of this project: the template, core, bbcat-js, cloud-sync-client code in this repository, the cloud-sync server they use to communicate, and the media and metadata produced with the Audio Orchestrator tool." src="doc/repo-structure.png" width="380" height="158" />
Expand Down
20 changes: 10 additions & 10 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 packages/bbcat-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bbc/audio-orchestration-bbcat-js",
"version": "0.1.0-dev.3",
"version": "0.1.0",
"description": "WebAudio DASH player components for audio orchestration framework",
"main": "dist/bbcat.js",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion packages/cloud-sync-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bbc/audio-orchestration-cloud-sync-client",
"version": "0.1.0-dev.3",
"version": "0.1.0",
"description": "Library implementing client code for cloud synchronisation",
"main": "dist/browser/CloudSyncKit.js",
"files": [
Expand Down
6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bbc/audio-orchestration-core",
"version": "0.1.0-dev.3",
"version": "0.1.0",
"description": "Components for synchronised object based audio experiences.",
"main": "dist/light.js",
"exports": {
Expand All @@ -17,8 +17,8 @@
"dist"
],
"dependencies": {
"@bbc/audio-orchestration-bbcat-js": "^0.1.0-dev.3",
"@bbc/audio-orchestration-cloud-sync-client": "^0.1.0-dev.3",
"@bbc/audio-orchestration-bbcat-js": "^0.1.0",
"@bbc/audio-orchestration-cloud-sync-client": "^0.1.0",
"dvbcss-clocks": "^0.0.4",
"dvbcss-protocols": "^0.0.4",
"events": "^3.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/template/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bbc/audio-orchestration-template",
"version": "0.1.0-dev.3",
"version": "0.1.0",
"description": "A user interface template showing how to integrate the bbcat-orchestration toolkit for orchestrated personal audio devices with React components.",
"repository": {
"type": "git",
Expand All @@ -12,7 +12,7 @@
"dist"
],
"dependencies": {
"@bbc/audio-orchestration-core": "^0.1.0-dev.3",
"@bbc/audio-orchestration-core": "^0.1.0",
"@hot-loader/react-dom": "^16.11.0",
"bowser": "^2.9.0",
"classnames": "^2.2.6",
Expand Down
5 changes: 4 additions & 1 deletion packages/template/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@
type: 'peerjs',
},

// This is the contentId of the first sequence to play.
INITIAL_CONTENT_ID: 'loop',

// This object describes the structure of the experience by listing all available content
// sequences, their descriptions, and links between them.
SEQUENCE_URLS: [
Expand Down Expand Up @@ -85,7 +88,7 @@
// If they are defined, the image, title, and subtitle will also be shown in the
// player instead of the default while this sequence is playing.
sequenceImage: 'images/sequence-example-image.jpg',
sequenceImageAlt: 'a randomly selected placeholder kitten',
sequenceImageAlt: 'the audio orchestrator default image with a blue colour filter applied',
sequenceTitle: 'Main sequence',
sequenceSubtitle: 'More tone and clicks',
duration: 30.0,
Expand Down

0 comments on commit 5c026bf

Please sign in to comment.