@ircam/comote-helpers 0.3.0 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -22,7 +22,7 @@ jobs:
22
22
  uses: actions/checkout@v2
23
23
  - name: Build project # This would actually build your project, using zip for an example artifact
24
24
  run: |
25
- (cd max && zip -r - comote) > comote-for-max.zip
25
+ (cd max && zip -r - CoMo.te) > CoMo.te.zip
26
26
  - name: Create Release
27
27
  id: create_release
28
28
  uses: actions/create-release@v1
@@ -40,6 +40,6 @@ jobs:
40
40
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
41
41
  with:
42
42
  upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
43
- asset_path: ./comote-for-max.zip
44
- asset_name: comote-for-max.zip
43
+ asset_path: ./CoMo.te.zip
44
+ asset_name: CoMo.te.zip
45
45
  asset_content_type: application/zip
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
- # `@ircam/comote-helpers`
1
+ # `CoMo.te helpers`
2
2
 
3
3
  > Javascript and Max/MSP utilities to create applications compatible with iPhone
4
- > and Android `CoMo.te` application.
4
+ > and Android `CoMo.te` application, cf. [https://ismm-apps.ircam.fr/comote](https://ismm-apps.ircam.fr/comote).
5
5
 
6
6
 
7
7
  The CoMo.te application (iOS and Android) allows for streaming motion data (accelerometer, gyroscope) from the smartphone to desktop applications using either the OSC or Websockets protocols. The network's setup is facilitated by the use of a QR code generated by the targeted remote application receiving the motion sensor data.
@@ -12,7 +12,9 @@ Among the CoMo applications that make use of CoMo.te are CoMo-Vox to learn and t
12
12
 
13
13
  CoMo.te and the CoMo applications are software designed and developed by IRCAM in the Sound-Music-Movement-Interaction team (UMR STMS).
14
14
 
15
- This repository provides utilities to help to generate the QRCode in the target application both for Max/MSP and Node.js
15
+ This repository provides utilities to help to generate the QRCode in the target application both for Max/MSP and Node.js.
16
+
17
+
16
18
 
17
19
  ## Table of Contents
18
20
 
@@ -28,7 +30,7 @@ This repository provides utilities to help to generate the QRCode in the target
28
30
 
29
31
  ## Max/MSP
30
32
 
31
- Download the Max abstraction (SoundworksAPI.zip) from the releases page: https://github.com/ircam-ismm/comote-helpers/releases
33
+ Download the Max abstraction (i.e. CoMo.te.zip) from the lastest release in the releases page: https://github.com/ircam-ismm/comote-helpers/releases
32
34
  Unzip the package and copy the resulting directory in `~/Documents/Max 8/Packages`
33
35
 
34
36
  For now, the package only provide abstraction `[comote.connect]` that allows you to generate a QRCode that can be
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ircam/comote-helpers",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Server component & utilities for the CoMo.te application",
5
5
  "authors": [
6
6
  "Benjamin.Matuszewski@ircam.fr",
package/qrcode.js CHANGED
@@ -95,8 +95,7 @@ function rawLink(config) {
95
95
  async function terminal(config) {
96
96
  const link = formatConfigToLink(config);
97
97
  return await _qrcode.default.toString(link, {
98
- type: 'terminal',
99
- small: true
98
+ type: 'terminal'
100
99
  });
101
100
  }
102
101
  /**