Skip to content

Commit ef52d68

Browse files
committed
Updated tutorial to V3_0_0
1 parent cfca4ad commit ef52d68

File tree

2 files changed

+32
-12
lines changed

2 files changed

+32
-12
lines changed

src/app/tutorials/angular2-whatsapp-ionic-cli/2.0.0.ts renamed to src/app/tutorials/angular2-whatsapp-ionic-cli/3.0.0.ts

Lines changed: 30 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
const markdownUrlBase = '/manuals/';
22

3-
export const V2_0_0 = {
3+
export const V3_0_0 = {
44
isLatest: true,
5-
urlName: '2.0.0',
5+
urlName: '3.0.0',
66
displayName: 'Socially Merge',
7-
dateString: '01.02.2017',
7+
dateString: '15.06.2017',
88
steps: [
99
{
1010
url: '/setup',
@@ -40,7 +40,7 @@ export const V2_0_0 = {
4040
},
4141
{
4242
url: '/authentication',
43-
name: 'Authentication',
43+
name: 'Users & Authentication',
4444
template: markdownUrlBase + 'templates/step7.md'
4545
},
4646
{
@@ -50,33 +50,53 @@ export const V2_0_0 = {
5050
},
5151
{
5252
url: '/privacy',
53-
name: 'Privacy & Security',
53+
name: 'Privacy & Subscriptions',
5454
template: markdownUrlBase + 'templates/step9.md'
5555
},
5656
{
5757
url: '/filter-and-pagination',
5858
name: 'Filter & Pagination',
5959
template: markdownUrlBase + 'templates/step10.md'
6060
},
61+
{
62+
url: '/android-testing',
63+
name: 'Android testing',
64+
template: markdownUrlBase + 'templates/step11.md'
65+
},
6166
{
6267
url: '/google-maps',
63-
name: 'Google Maps',
64-
template: markdownUrlBase + 'templates/step11.md'
68+
name: 'Google Maps & Geolocation',
69+
template: markdownUrlBase + 'templates/step12.md'
6570
},
6671
{
6772
url: '/file-upload',
6873
name: 'File Upload & Images',
69-
template: markdownUrlBase + 'templates/step12.md'
74+
template: markdownUrlBase + 'templates/step13.md'
7075
},
7176
{
7277
url: '/native-mobile',
7378
name: 'Native Mobile',
74-
template: markdownUrlBase + 'templates/step13.md'
79+
template: markdownUrlBase + 'templates/step14.md'
80+
},
81+
{
82+
url: '/addressbook',
83+
name: 'Addressbook integration',
84+
template: markdownUrlBase + 'templates/step15.md'
85+
},
86+
{
87+
url: '/push-notifications',
88+
name: 'FCM Push Notifications',
89+
template: markdownUrlBase + 'templates/step16.md'
90+
},
91+
{
92+
url: '/facebook',
93+
name: 'Facebook authentication',
94+
template: markdownUrlBase + 'templates/step17.md'
7595
},
7696
{
7797
url: '/summary',
7898
name: 'Summary',
79-
template: markdownUrlBase + 'templates/step14.md',
99+
template: markdownUrlBase + 'templates/step18.md',
80100
hideCodeDiff: true
81101
}
82102
]

src/app/tutorials/angular2-whatsapp-ionic-cli/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {TutorialDefinition, ParsedPatchDefinition} from 'angular-meteor-tutorials-infrastructure';
22
import {improveThisCodeResolver} from "../improve-code-resolver";
33
import {Http} from "@angular/http";
4-
import { V2_0_0 } from './2.0.0';
4+
import { V3_0_0 } from './3.0.0';
55
import { V1_0_0 } from './1.0.0';
66
const markdownUrlBase = '/manuals/';
77

@@ -15,7 +15,7 @@ export const ANGULAR2_WHATSAPP_IONIC_CLI: TutorialDefinition = {
1515
},
1616
versions: {
1717
// Git revision => version definition object
18-
'master': V2_0_0,
18+
'master': V3_0_0,
1919
'legacy': V1_0_0
2020
}
2121
};

0 commit comments

Comments
 (0)