Skip to content

Commit 1769a64

Browse files
author
Tim Mendoza
committed
Update documentation
1 parent 0b4175b commit 1769a64

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Changelog
22

3-
## 1.0.0
3+
## 0.2.0
44

55
### Breaking Change
66

7-
- This version adds extra random digits to the URL used by the Twilio Video Apps. The format of the URL has changed from `https://video-app-xxxx-dev.twil.io` to `https://video-app-xxxx-yyyy-dev.twil.io`. The iOS and Android video apps must be upgraded in order to work with this new format. The React app does not need to be upgraded.
7+
- This version adds extra random digits to the URL used by the Twilio Video Apps. The format of the URL has changed from `https://video-app-xxxx-dev.twil.io` to `https://video-app-xxxx-yyyy-dev.twil.io`. The [iOS Video App](https://github.com/twilio/twilio-video-app-ios) and [Android Video App](https://github.com/twilio/twilio-video-app-android) must be upgraded in order to work with this new format. The [React Video App](https://github.com/twilio/twilio-video-app-react) does not need to be upgraded. This change is being made to increase the number of available domains (from ten thousand to ten million) which will greatly reduce the number of 409 (conflict) errors experienced by users.
88

99
## 0.1.6
1010

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ OPTIONS
196196
197197
EXAMPLE
198198
$ twilio rtc:apps:video:delete
199-
Removed app with Passcode: xxxxxxxxxxxxxx
199+
Successfully deleted app.
200200
```
201201

202202
## `twilio rtc:apps:video:deploy --authentication <auth>`
@@ -232,21 +232,21 @@ EXAMPLES
232232
# Deploy an application token server with passcode authentication
233233
$ twilio rtc:apps:video:deploy --authentication passcode
234234
deploying app... done
235-
Passcode: xxxxxxxxxxxxxx
235+
Passcode: xxx xxx xxxx xxxx
236236
237237
# Deploy an application token server with the React app
238238
$ twilio rtc:apps:video:deploy --authentication passcode --app-directory /path/to/app
239239
deploying app... done
240240
Web App URL: https://video-app-xxxx-xxxx-dev.twil.io?passcode=xxxxxxxxxxxxxx
241-
Passcode: xxxxxxxxxxxxxx
241+
Passcode: xxx xxx xxxx xxxx
242242
243243
# Override an existing app with a fresh deployment
244244
# Please note that this will remove a previously deployed web application if no
245245
# app directory is provided
246246
$ twilio rtc:apps:video:deploy --authentication passcode --override
247-
Removed app with Passcode: xxxxxxxxxxxxxx
247+
Removed app with Passcode: xxx xxx xxxx xxxx
248248
deploying app... done
249-
Passcode: xxxxxxxxxxxxxx
249+
Passcode: xxx xxx xxxx xxxx
250250
Expires: Mon Mar 09 2020 16:36:23 GMT-0600
251251
```
252252

@@ -265,7 +265,7 @@ OPTIONS
265265
EXAMPLE
266266
$ twilio rtc:apps:video:view
267267
Web App URL: https://video-app-1111-dev.twil.io?passcode=xxxxxxxxxxxxxx
268-
Passcode: xxxxxxxxxxxxxx
268+
Passcode: xxx xxx xxxx xxxx
269269
```
270270

271271
<!-- commandsstop -->

src/commands/rtc/apps/video/delete.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ DeleteCommand.description = 'Delete a Programmable Video app';
2121

2222
DeleteCommand.examples = [
2323
`$ twilio rtc:apps:video:delete
24-
Removed app with Passcode: 1111111111`,
24+
Successfully deleted app.`,
2525
];
2626

2727
module.exports = DeleteCommand;

0 commit comments

Comments
 (0)