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

Commit 3b1f602

Browse files
release(#625): app remote v1.0.0-rc.3
Signed-off-by: peterpeterparker <[email protected]>
1 parent c00d578 commit 3b1f602

File tree

4 files changed

+17
-7
lines changed

4 files changed

+17
-7
lines changed

remote/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# 1.0.0-rc.3 (2020-02-22)
2+
3+
### Features
4+
5+
- draw arrows ([#625](https://github.com/deckgo/deckdeckgo/issues/625))
6+
7+
Note: new feature temporary uncommented until next release which will include the release of the starter kit
8+
19
<a name="1.0.0-rc.2-7"></a>
210

311
# 1.0.0-rc.2-7 (2020-02-19)

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.

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-rc.2-7",
3+
"version": "1.0.0-rc.3",
44
"author": "David Dal Busco",
55
"description": "Present and interact with your lightweight DeckDeckGo's presentation",
66
"license": "AGPL-3.0-or-later",

remote/src/app/components/app-draw/app-draw.tsx

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -315,13 +315,15 @@ export class AppDraw {
315315
];
316316
}
317317

318+
// TODO: Unleash arrows
319+
// <ion-fab-button
320+
// color={this.action === DeckdeckgoDrawAction.ARROW ? 'primary' : 'light'}
321+
// onClick={(e: UIEvent) => this.switchTool(e, DeckdeckgoDrawAction.ARROW)}>
322+
// <ion-icon ios="arrow-forward" md="arrow-forward"></ion-icon>
323+
// </ion-fab-button>,
324+
318325
private renderActions() {
319326
return [
320-
<ion-fab-button
321-
color={this.action === DeckdeckgoDrawAction.ARROW ? 'primary' : 'light'}
322-
onClick={(e: UIEvent) => this.switchTool(e, DeckdeckgoDrawAction.ARROW)}>
323-
<ion-icon ios="arrow-forward" md="arrow-forward"></ion-icon>
324-
</ion-fab-button>,
325327
<ion-fab-button
326328
color={this.action === DeckdeckgoDrawAction.CIRCLE ? 'primary' : 'light'}
327329
onClick={(e: UIEvent) => this.switchTool(e, DeckdeckgoDrawAction.CIRCLE)}>

0 commit comments

Comments
 (0)