@@ -6,6 +6,16 @@ Alfresco JS API
66
77_ This project provides a JavaScript client API into the v1 Alfresco REST API_
88
9+ <a name =" 0.3.1 " ></a >
10+ # [ 0.3.1] ( https://github.com/Alfresco/alfresco-js-api/releases/tag/0.3.1 ) (2016-xx-xx)
11+
12+ ## Fix
13+ - [ Date parser error with Safari] ( https://github.com/Alfresco/alfresco-js-api/issues/43 )
14+
15+ ## Features
16+
17+ - Various improvements for TypeScript declaration files
18+
919<a name =" 0.3.0 " ></a >
1020# [ 0.3.0] ( https://github.com/Alfresco/alfresco-js-api/releases/tag/0.3.0 ) (2016-08-22)
1121
@@ -24,7 +34,7 @@ this.alfrescoJsApi.loginTicket(ticket).then(function (data) {
2434 console .error (error);
2535 });
2636```
27-
37+
2838## Fix
2939
3040- [ Node properties never parsed #35 ] ( https://github.com/Alfresco/alfresco-js-api/issues/35 )
@@ -43,19 +53,19 @@ Before:
4353this .alfrescoJsApi = new AlfrescoApi ({username, password, host, contextRoot, ticket});
4454this .alfrescoJsApi .login ();
4555```
46-
56+
4757After:
48-
58+
4959``` javascript
5060this .alfrescoJsApi = new AlfrescoApi ({hostECM, hostBPM, contextRoot, ticketEcm, ticketBpm});
5161this .alfrescoJsApi .login (username, password);
5262```
5363
54- - Hosts configuration
64+ - Hosts configuration
5565
56- alfrescoHost parameter is now split in two different parameter
66+ alfrescoHost parameter is now split in two different parameter
5767
58- Property | Description | default value|
68+ Property | Description | default value|
5969------------- | ------------- | -------------|
6070hostEcm| (Optional value The Ip or Name of the host where your Alfresco instance is running )|http://127.0.0.1:8080 |
6171hostBpm| (Optional value The Ip or Name of the host where your Activiti instance is running )|http://127.0.0.1:9999 |
@@ -70,7 +80,7 @@ Before:
7080``` javascript
7181this .alfrescoJsApi .getTicket ();
7282```
73-
83+
7484After:
7585
7686``` javascript
@@ -130,7 +140,7 @@ Before:
130140` ` ` javascript
131141 this .alfrescoJsApi .node
132142` ` `
133-
143+
134144After:
135145
136146 ` ` ` javascript
@@ -154,14 +164,14 @@ Before:
154164 loginRequest .password = password;
155165 return apiInstance .createTicket (loginRequest);
156166` ` `
157-
167+
158168After:
159-
169+
160170` ` ` javascript
161171 this .alfrescoJsApi = new AlfrescoApi ({ username: ' admin' , password: ' admin' , host: ' http://127.0.0.1:8080' });
162- // note you don't need anymore to keep the client
172+ // note you don't need anymore to keep the client
163173` ` `
164-
174+
165175- Bundle File is now in the dist folder and the name is changed
166176
167177Before:
@@ -188,7 +198,7 @@ After:
188198
189199` ` ` javascript
190200 this .alfrescoJsApi = new AlfrescoApi ({ ticket: ' TICKET_4479f4d3bb155195879bfbb8d5206f433488a1b1' , host: ' http://127.0.0.1:8080' });
191- // note you don't need anymore to keep the client
201+ // note you don't need anymore to keep the client
192202` ` `
193203- Login changed
194204
@@ -201,16 +211,16 @@ Before:
201211 loginRequest .userId = username;
202212 loginRequest .password = password;
203213 return apiInstance .createTicket (loginRequest);
204-
214+
205215` ` `
206216
207217After:
208218
209219` ` ` javascript
210220 this .alfrescoJsApi = new AlfrescoApi ({ username: ' admin' , password: ' admin' , host: ' http://127.0.0.1:8080' });
211-
221+
212222 this .alfrescoJsApi .login ();
213- ` ` `
223+ ` ` `
214224## Features
215225
216226- Logout
@@ -229,4 +239,3 @@ After:
229239
230240- chore add alfresco log anf gitter chat in readme
231241 ([9547122b](https://github.com/Alfresco/dev-platform-js-api/commit/9547122bc1609c898382016481e6867934e95b73))
232-
0 commit comments