Skip to content
This repository was archived by the owner on Feb 6, 2024. It is now read-only.

Commit 55095b0

Browse files
release: webcomponents remote vv1.0.0-alpha.6
1 parent 82dd2d7 commit 55095b0

File tree

5 files changed

+29
-5
lines changed

5 files changed

+29
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
<a name="1.0.0-beta.32"></a>
2+
# [1.0.0-beta.32](https://github.com/deckgo/deckdeckgo/compare/v1.0.0-beta.31...v1.0.0-beta.32) (2019-04-14)
3+
4+
### Web Components
5+
6+
* remote: v1.0.0-alpha.6 ([CHANGELOG](https://github.com/deckgo/deckdeckgo/blob/master/webcomponents/remote/CHANGELOG.md))
7+
18
<a name="1.0.0-beta.31"></a>
29
# [1.0.0-beta.31](https://github.com/deckgo/deckdeckgo/compare/v1.0.0-beta.30...v1.0.0-beta.31) (2019-03-08)
310

webcomponents/remote/CHANGELOG.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,27 @@
1+
<a name="1.0.0-alpha.6"></a>
2+
# 1.0.0-alpha.6 (2019-04-14)
3+
4+
### Features
5+
6+
* add an attribute `autoConnect` if you don't wish the component to establish a connection on load
7+
* add a `disconnect` method
8+
19
<a name="1.0.0-alpha.5"></a>
2-
# [1.0.0-alpha.5](https://github.com/deckgo/deckdeckgo-remote/compare/v1.0.0-alpha.4...v1.0.0-alpha.5) (2019-02-02)
10+
# 1.0.0-alpha.5 (2019-02-02)
311

412
### Lib
513

614
* update Stencil and other libs ([758ea62](https://github.com/deckgo/deckdeckgo-remote/commit/758ea62c884a67195753f805088d11e43a516873))
715

816
<a name="1.0.0-alpha.4"></a>
9-
# [1.0.0-alpha.4](https://github.com/deckgo/deckdeckgo-remote/compare/v1.0.0-alpha.3...v1.0.0-alpha.4) (2019-01-15)
17+
# 1.0.0-alpha.4 (2019-01-15)
1018

1119
### Features
1220

1321
* include new types with slide definition ([#3](https://github.com/deckgo/deckdeckgo-remote/issues/3))
1422

1523
<a name="1.0.0-alpha.3"></a>
16-
# [1.0.0-alpha.3](https://github.com/deckgo/deckdeckgo-remote/compare/v1.0.0-alpha.2...v1.0.0-alpha.3) (2018-12-05)
24+
# 1.0.0-alpha.3 (2018-12-05)
1725

1826
### Breaking Changes
1927

webcomponents/remote/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ The following options should be set using attributes:
7878
| height | number | The height of the canvas |
7979
| length | number | How many slides contains your deck, this is useful to inform the app about it and initialize the length of the canvas |
8080
| slides | string[] | The ordered list of all the tag names of the slides. Useful if you would like to inform the app about which slides are used in your deck. |
81+
| autoConnect | boolean | If you the component to not connect itself on load, set this property to `false` |
8182

8283
### Methods
8384

@@ -97,6 +98,14 @@ Connect will open a socket with the signaling server and create a room for the p
9798
await remote.connect();
9899
```
99100

101+
#### Disconnect
102+
103+
Disconnect will close the socket with the signaling server and remove the deck from the list of possible deck to connect to.
104+
105+
```
106+
await remote.disconnect();
107+
```
108+
100109
#### Move canvas
101110

102111
You might need to move the canvas, this method let's you move it.

webcomponents/remote/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webcomponents/remote/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "deckdeckgo-remote",
3-
"version": "1.0.0-alpha.5",
3+
"version": "1.0.0-alpha.6",
44
"description": "Present and interact with your DeckDeckGo's PWA presentation",
55
"module": "dist/esm/index.js",
66
"main": "dist/index.js",

0 commit comments

Comments
 (0)