You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,9 @@
9
9
- 2.x.x ?? OFDM
10
10
- 2.x.x ?? Move to TypeScript
11
11
12
+
## v1.3.2 (2018-05-16)
13
+
- BugFix for the same issue in other area: "The AudioContext was not allowed to start. It must be resume (or created) after a user gesture on the page. https://goo.gl/7K7WLu"
14
+
12
15
## v1.3.1 (2018-05-10)
13
16
- BugFix: "The AudioContext was not allowed to start. It must be resume (or created) after a user gesture on the page. https://goo.gl/7K7WLu"
-[Full example List](https://github.com/robertrypula/AudioNetwork/tree/master/example)
12
11
12
+
## News
13
+
14
+
-**2018 May 11** - [PR#4](https://github.com/robertrypula/AudioNetwork/pull/4) was merged with master. Important: migration process from ES5 to TypeScript is still NOT finished. It will just continue on the master branch.
15
+
16
+
-**2018 May 10** - Thanks to [Programista](https://programistamag.pl) magazine, all 3 parts of my articles about *data transmission over sound in JavaScript* are now available as PDFs. Please find links in the next section.
17
+
18
+
-**2018 Feb 06** - Project looks like dead but it's not. Now I'm focusing on configuration that allows me to move
19
+
entire AudioNetwork project to TypeScript, WebPack, Jest unit test with coverge, Travis etc.
20
+
13
21
## Self-made network stack based on Frequency-Shift Keying (>= v1.2.0)
14
22
15
23
Audio Network library is a hobby project in which the goal was to create simple network stack that uses sound
16
-
waves to transmit data. Initialy it was using PSK modulation technique which was later changed into FSK. If you are
17
-
interested in details you can read more in polish Programista magazine:
24
+
waves to transmit data. Initialy it was using PSK modulation technique which was later changed into FSK.
25
+
26
+
Brief introduction to the topic is available as **presentation hosted on slides.com [here](https://slides.com/robertrypula/data-transmission-over-sound)**.
27
+
28
+
If you are interested in details you can read more in polish Programista magazine:
18
29
19
-
-[Data transmission over sound from scratch. Part 1: Discrete Fourier Transform](https://programistamag.pl/programista-08-2016-51/) (08/2016)
20
-
-[Data transmission over sound from scratch. Part 2: Web Audio API](https://programistamag.pl/programista-2-2017-57/) (02/2017)
21
-
-[Data transmission over sound from scratch. Part 3: Self-made network stack](https://programistamag.pl/programista-10-2017-65/) (10/2017)
-[Data transmission over sound from scratch. Part 1: Discrete Fourier Transform](https://programistamag.pl/programista-08-2016-51/) (08/2016) [**Download PDF**](https://cdn.rypula.pl/audio-network/pdf/TransmisjaDanychDzwiekiemJs_czesc1z3_DyskretnaTransformataFouriera.pdf)
35
+
-[Data transmission over sound from scratch. Part 2: Web Audio API](https://programistamag.pl/programista-2-2017-57/) (02/2017) [**Download PDF**](https://cdn.rypula.pl/audio-network/pdf/TransmisjaDanychDzwiekiemJs_czesc2z3_WebAudioAPI.pdf)
36
+
-[Data transmission over sound from scratch. Part 3: Self-made network stack](https://programistamag.pl/programista-10-2017-65/) (10/2017) [**Download PDF**](https://cdn.rypula.pl/audio-network/pdf/TransmisjaDanychDzwiekiemJs_czesc3z3_WlasnyStosSieciowy.pdf)
22
37
23
38
Part 3 of the article was the last one. It means that more focus will go to this website and Audio Network releases. If you can't wait please go trought some of the examples:
24
39
@@ -32,7 +47,7 @@ Part 3 of the article was the last one. It means that more focus will go to this
@@ -50,27 +65,23 @@ Note: some of the modules are not yet in main NPM package. Please verify [roadma
50
65
51
66
>This library is supported by [PGS Software](https://www.pgs-soft.com/) - the place where I work as Frontend Developer
52
67
53
-
UPDATE 2018.02.06 - Project looks like dead but it's not. Now I'm focusing on configuration that allows me to move
54
-
entire AudioNetwork project to TypeScript, WebPack, Jest unit test with coverge, Travis etc.
55
-
56
68
## Deprecated Phase-Shift Keying approach (last update at v1.1.0, will be removed at v2.0.0)
57
69
58
70
Initial versions of this lib were based on Phase-Shift Keying modulation technique. Unfortunatelly after some tests
59
71
in turned out that this implementation was not working reliable on mobile devices. Starting from v1.2.0 this part of the
60
72
lib will be marked as deprecated.
61
73
74
+
>**!!! IMPORTANT NOTE !!!** - Everything described **below (up to Licence)** might be outdated or not working properly. Project is now in a phase of big technical changes. Entire v1.x was created mostly to learn DSP and share this knowledge in the 'Programista' magazine articles. Version 2.x will have more stable and simpler API and will be better consumable as npm package.
0 commit comments