Skip to content

Commit

Permalink
Merge pull request #175 from dascritch/preprod
Browse files Browse the repository at this point in the history
Release 7.0.2
  • Loading branch information
dascritch authored Apr 29, 2021
2 parents ac10e6c + cb791bf commit 93efb7c
Show file tree
Hide file tree
Showing 16 changed files with 200 additions and 700 deletions.
828 changes: 159 additions & 669 deletions LICENSE.md

Large diffs are not rendered by default.

7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ Some links
* Blog posts about its creation and development : [Série cpu-audio sur dascritch.net](https://dascritch.net/serie/cpu-audio)
* [How to cite a podcast](https://www.buzzsprout.com/blog/cite-podcast), now you can support time positions URL
* Main author : [Xavier "dascritch" Mouton-Dubosc](http://dascritch.com)
* [Licence GPL 3](https://github.com/dascritch/cpu-audio/blob/master/LICENSE.md)
* [Licence LGPL 3](https://github.com/dascritch/cpu-audio/blob/master/LICENSE.md)


Participate
Expand All @@ -119,11 +119,10 @@ Credits

Thank you to my lovely friends :
* [Thomas Parisot](https://oncletom.io/) for suggestions
* [Loïc Gerbaud](https://github.com/chibani) for corrections
* [Guillaume Lemoine and Phonitive](http://www.phonitive.fr/) for helping
* [Loïc Gerbaud](https://github.com/chibani), [Guillaume Lemoine](https://www.linkedin.com/in/glguillaumelemoine/) and [Guillaume de Jabrun](https://github.com/Wykks) for bug-hunting
* [Benoît Salles](https://twitter.com/infestedgrunt) and [Michel Poulain](https://twitter.com/MichelPoulain) for testing
* [@mariejulien](https://twitter.com/mariejulien/status/1047827583126183937) about [CONTRIBUTING.md](https://github.com/dascritch/cpu-audio/blob/master/CONTRIBUTING.md)
* [Christophe Porteneuve](https://twitter.com/porteneuve) to kick my ass on modern javascript
* [Christophe Porteneuve](https://github.com/tdd) of [Delicious Insights](http://delicious-insights.com/) to kick my ass on modern javascript.
* [scombat for a wonderful wrapper of cpu-audio.js in React](https://github.com/scombat/react-cpu-audio)
* [Éric Daspet for its remarks on documentation](https://github.com/edas)
* [Gabi Boyer for helping me avery a lot to debug iOS issues](https://twitter.com/GabiBoyer)
Expand Down
9 changes: 8 additions & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
RELEASE NOTES version 7.0.2
===========================

* Changing license from GPL to LGPL ([#174](#174))
* Removing an example that incits a bad habit
* Correct credit for [@tdd](https://github.com/tdd)

RELEASE NOTES version 7.0.1
===========================

* Regression on `<a>` tags with actions ([#170](#170)), released as 7.0.1
* Regression on `<a>` tags with actions ([#170](#170)), thanks [Guillaume de Jabrun](https://github.com/Wykks)
* Simplify [examples/Usage_controller.html](examples/Usage_controller.html)

RELEASE NOTES version 7.0
Expand Down
6 changes: 3 additions & 3 deletions build/cpu-audio.big-square.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/cpu-audio.big-square.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions build/cpu-audio.direct-download.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/cpu-audio.direct-download.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions build/cpu-audio.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/cpu-audio.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions build/cpu-audio.test-all-buttons.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/cpu-audio.test-all-buttons.js.map

Large diffs are not rendered by default.

10 changes: 7 additions & 3 deletions examples/API_insert_annotations.html
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,12 @@ <h1 id="highlighting-text-amond-chapters">CPU-Audio API example : Insert annotat
link : 'https://www.classicalmpr.org/blog/classical-notes/2015/12/02/can-silence-be-copyrighted', // If link is a string, the url is targeted by your point
});


});

</script>
<script>
/*
// What about create a second panel ?
player_API.addPlane(
'parameters',
Expand Down Expand Up @@ -147,9 +153,7 @@ <h1 id="highlighting-text-amond-chapters">CPU-Audio API example : Insert annotat
});
// OK. Who still needs a volume and a playrate selector build in the audio player ?

});

*/
</script>

</body>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"vanilla"
],
"author": "Xavier \"dascritch\" Mouton-Dubosc",
"license": "GPL-3.0-or-later",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/dascritch/cpu-audio/issues"
},
Expand Down
4 changes: 2 additions & 2 deletions src/build_interface.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export function buildInterface(elCPU) {
play : trigger.play,
time : trigger.throbble,
actions : () => {elCPU.showActions();},
back : (event) => {elCPU.showMain(); console.log(event); event.preventDefault();},
back : (event) => {elCPU.showMain(); event.preventDefault();},
poster : () => {elCPU.showMain();},
restart : trigger.restart,
toggleplay : trigger.toggleplay,
Expand Down Expand Up @@ -89,7 +89,7 @@ export function buildInterface(elCPU) {
elCPU.shadowId('nativeshare')?.addEventListener('click', nativeShare, passiveEvent);
}

let canonical_element = elCPU.shadowId('canonical');
const canonical_element = elCPU.shadowId('canonical');
if (canonical_element) {
preventLinkOnSamePage( canonical_element );
}
Expand Down
4 changes: 2 additions & 2 deletions src/license.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/** @license
Cpu-Audio: an extension to the hash system to address timecode into audio/video elements and a player WebComponent
Version 7.0.1
Version 7.0.2
Copyright (C) 2014-2021 Xavier "dascritch" Mouton-Dubosc & contributors.
License GNU GPL 3
License LGPL 3

- project mini-site https://dascritch.github.io/cpu-audio/
- project repository : https://github.com/dascritch/cpu-audio
Expand Down
4 changes: 2 additions & 2 deletions src/utils.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/** @license
Cpu-Audio: an extension to the hash system to address timecode into audio/video elements and a player WebComponent
Version 7.0.1
Version 7.0.2
Copyright (C) 2014-2021 Xavier "dascritch" Mouton-Dubosc & contributors.
License GNU GPL 3
License LGPL 3
- project mini-site https://dascritch.github.io/cpu-audio/
- project repository : https://github.com/dascritch/cpu-audio
Expand Down

0 comments on commit 93efb7c

Please sign in to comment.