Skip to content

Commit 4a4f7cd

Browse files
committed
Update changelog
1 parent aa704db commit 4a4f7cd

3 files changed

Lines changed: 9 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
#### 0.2.5 (2017-12-06)
1+
#### 0.2.5 (2017-12-07)
22
* **Fixes:**
33
* Issue [#10](https://github.com/WhichBrowser/Parser-JavaScript/issues/10) - Thanks [@stouf](https://github.com/stouf) for reporting ([a3285e1](https://github.com/WhichBrowser/Parser-JavaScript/commit/a3285e1f1f439bccbbe2c1bb93abfdcd3a93f7de))
4+
* **Database:** Added Chrome 63, new iPhones, MANY new models of various manufacturers and Os ([6e6715e](https://github.com/WhichBrowser/Parser-JavaScript/commit/6e6715e022bb26e2a4bd5a7f24a6fc2a9a023ebb))
5+
* **Analisys:** Better management of Edge, added management of KaiOS ([22a2752](https://github.com/WhichBrowser/Parser-JavaScript/commit/22a27520ce38dd5f50954387b5e0499c88bef1e0))
46

57
#### 0.2.4 (2017-11-17)
68
* **Database:** Added Chrome 62 ([3d4a74c](https://github.com/WhichBrowser/Parser-JavaScript/commit/3d4a74c1cf995a41bde6a6136bfd076d9e877286))

bin/update-profiles.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ request('https://api.whichbrowser.net/resources/profiles.json', (err, response =
1212
}
1313
const result = JSON.parse(response.body);
1414
fileStream.write('/* This file is automatically generated, do not edit manually! */\n\n');
15+
fileStream.write('/* eslint-disable max-len */\n\n');
1516
fileStream.write('const DeviceType = require(\'../src/constants\').deviceType;\n\n');
1617
fileStream.write('exports.PROFILES = {\n');
1718
result.forEach(
@@ -25,6 +26,7 @@ request('https://api.whichbrowser.net/resources/profiles.json', (err, response =
2526
null
2627
);
2728
fileStream.write('};\n\n');
29+
fileStream.write('/* eslint-enable max-len */\n\n');
2830
fileStream.write('/* This file is automatically generated, do not edit manually! */\n');
2931
fileStream.end();
3032
console.log(`Downloaded ${result.length} profiles...`);

data/profiles.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
/* This file is automatically generated, do not edit manually! */
22

3+
/* eslint-disable max-len */
4+
35
const DeviceType = require('../src/constants').deviceType;
46

57
exports.PROFILES = {
@@ -23866,4 +23868,6 @@ exports.PROFILES = {
2386623868
'http://www.zte.com.cn/mobile/uaprof/MegaFon_SP-A5.xml': ['Мегафон', 'SP-A5', 'Android', DeviceType.MOBILE],
2386723869
};
2386823870

23871+
/* eslint-enable max-len */
23872+
2386923873
/* This file is automatically generated, do not edit manually! */

0 commit comments

Comments
 (0)