author
int64
4.98k
943k
date
stringdate
2017-04-15 16:45:02
2022-02-25 15:32:15
timezone
int64
-46,800
39.6k
hash
stringlengths
40
40
message
stringlengths
8
468
mods
listlengths
1
16
language
stringclasses
9 values
license
stringclasses
2 values
repo
stringclasses
119 values
original_message
stringlengths
12
491
is_CCS
int64
1
1
commit_type
stringclasses
129 values
commit_scope
stringlengths
1
44
679,913
16.09.2018 00:59:56
-3,600
5de02559144565b11a199e829b4944fd1654acaf
feat(hdom-canvas): add HDPI auto-adjustment, update docs replace canvas fn with component object w/ life cycle methods if HDPI, inject CSS width/height props and pre-scale drawing ctx
[ { "change_type": "MODIFY", "diff": "@@ -63,17 +63,28 @@ const CTX_ATTRIBS = {\n};\n/**\n- * Special HTML5 canvas component which injects branch-local hdom\n- * implementation for virtual SVG-like shape components/elements, which\n- * are translated into canvas draw commands.\n+ * Special HTML5 canvas compon...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(hdom-canvas): add HDPI auto-adjustment, update docs - replace canvas fn with component object w/ life cycle methods - if HDPI, inject CSS width/height props and pre-scale drawing ctx
1
feat
hdom-canvas
679,913
16.09.2018 03:35:49
-3,600
bb7e08a8de11b3c5802c0cdef4024a3b1ba34ad7
refactor(examples): update canvas demo
[ { "change_type": "MODIFY", "diff": "import { canvas, normalizeTree } from \"@thi.ng/hdom-canvas\";\n+// import { canvas2D, adaptDPI } from \"@thi.ng/hdom-components/canvas\";\nimport { dropdown } from \"@thi.ng/hdom-components/dropdown\";\nimport { stream } from \"@thi.ng/rstream/stream\";\nimport { fromRAF...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(examples): update canvas demo
1
refactor
examples
67,476
16.09.2018 05:06:00
-7,200
12e2e1009b1d51372ab3bd3fc539c9a3a34db1d9
ci: add tag filter for install job [ci skip]
[ { "change_type": "MODIFY", "diff": "@@ -288,7 +288,10 @@ workflows:\n# This workflow runs on every commit to any branch (with or without PR)\nbuild_test:\njobs:\n- - install\n+ - install:\n+ filters:\n+ tags:\n+ only: /^v.*/\n- build:\nrequires:\n- install\n", "new_path": ".circleci/config.yml", "ol...
TypeScript
MIT License
aurelia/aurelia
ci: add tag filter for install job [ci skip] (#176)
1
ci
null
679,913
16.09.2018 17:19:58
-3,600
ebfcf1598531f499096b874f91ae804ad05d6c3c
refactor(hdom): export diff related fns
[ { "change_type": "MODIFY", "diff": "@@ -140,7 +140,7 @@ export const diffTree = <T>(\n}\n};\n-const diffAttributes = <T>(impl: HDOMImplementation<T>, el: T, prev: any, curr: any) => {\n+export const diffAttributes = <T>(impl: HDOMImplementation<T>, el: T, prev: any, curr: any) => {\nlet i, e, edits;\nconst ...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(hdom): export diff related fns
1
refactor
hdom
679,913
16.09.2018 17:35:34
-3,600
3b6283269c83041595e042d45194b6795de555e6
refactor(hiccup-svg): update points(), minor fixes, add docs
[ { "change_type": "MODIFY", "diff": "@@ -121,7 +121,7 @@ export const convertTree = (tree: any[]): any[] => {\ncase \"img\":\nreturn image(tree[2], tree[3].src, attribs);\ncase \"points\":\n- return points(tree[2], attribs.shape, attribs);\n+ return points(tree[2], attribs.shape, attribs.size, attribs);\ndef...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(hiccup-svg): update points(), minor fixes, add docs
1
refactor
hiccup-svg
679,913
16.09.2018 17:36:27
-3,600
74547aa66db9188c51cb5503357eaa619726ffe9
feat(hdom-canvas): update canvas component & diffTree impl, update docs
[ { "change_type": "MODIFY", "diff": "@@ -12,6 +12,9 @@ This project is part of the\n- [Installation](#installation)\n- [Dependencies](#dependencies)\n- [Usage examples](#usage-examples)\n+- [How it works](#how-it-works)\n+ - [Restrictions & behavior controls](#restrictions--behavior-controls)\n+ - [HDPI supp...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(hdom-canvas): update canvas component & diffTree impl, update docs
1
feat
hdom-canvas
679,913
16.09.2018 18:59:42
-3,600
b93dc745d42f081d927707a13dd900c164de11f3
feat(examples): add static canvas test
[ { "change_type": "MODIFY", "diff": "@@ -7,13 +7,21 @@ This example demonstrates different features of the upcoming\npackage to declare canvas scenegraphs using the same hiccup syntax as\nthe rest of the UI. These shape elements (children of the `canvas`\ncomponent) are defined via a SVG-like approach (thoug...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(examples): add static canvas test
1
feat
examples
76,607
16.09.2018 20:20:39
-7,200
33922320be552ba83f749f3d95069103f2ff5d46
doc: add link to examples folder
[ { "change_type": "MODIFY", "diff": "@@ -74,7 +74,7 @@ If you're looking to use NLP.js in your node application, you can install via NP\n## Example of use\n-You can see a great example of use at the folder \\examples\\console-bot. This example is able to train the bot and save the model to a file, so when th...
JavaScript
MIT License
axa-group/nlp.js
doc: add link to examples folder (#41)
1
doc
null
679,913
16.09.2018 21:12:31
-3,600
224a537afbb757a4d8c8ae7a3441601dcbe6ba95
perf(checks): inline checks in isNotStringAndIterable()
[ { "change_type": "MODIFY", "diff": "-import { isIterable } from \"./is-iterable\";\n-import { isString } from \"./is-string\";\n-\nexport function isNotStringAndIterable(x: any): x is Iterable<any> {\n- return !isString(x) && isIterable(x);\n+ return x != null &&\n+ typeof x !== \"string\" &&\n+ typeof x[Sy...
TypeScript
Apache License 2.0
thi-ng/umbrella
perf(checks): inline checks in isNotStringAndIterable()
1
perf
checks
679,913
16.09.2018 22:17:56
-3,600
382c45ca28f7e14f8cd8d07a20a7d8af5d5cb5ba
perf(hdom): update diffTree(), inline node type checks add child tracking index table template for diffTree() bail out early if edit distance = 2 and only attribs changed update checks in normalizeTree(), normalizeElement(), createDOM(), hydrateDOM(), setAttrib() rename releaseDeep() => releaseTree()
[ { "change_type": "MODIFY", "diff": "import { IObjectOf, SEMAPHORE } from \"@thi.ng/api/api\";\nimport * as isa from \"@thi.ng/checks/is-array\";\n-import * as iss from \"@thi.ng/checks/is-string\";\nimport { DiffLogEntry } from \"@thi.ng/diff/api\";\nimport { diffArray } from \"@thi.ng/diff/array\";\nimport...
TypeScript
Apache License 2.0
thi-ng/umbrella
perf(hdom): update diffTree(), inline node type checks - add child tracking index table template for diffTree() - bail out early if edit distance = 2 and only attribs changed - update checks in normalizeTree(), normalizeElement(), createDOM(), hydrateDOM(), setAttrib() - rename releaseDeep() => releaseTree() -
1
perf
hdom
679,913
16.09.2018 22:22:21
-3,600
a52f83c40da813fc023fa58a3c3b4fa1a9aada9e
fix(hdom-canvas): update __normalize handling, rename fns update canvas() component fn rename drawTree() => createTree() update releaseTree() call sites remove warning from hydrateTree() (just do nothing)
[ { "change_type": "MODIFY", "diff": "@@ -5,9 +5,9 @@ import { isArrayLike } from \"@thi.ng/checks/is-arraylike\";\nimport { isFunction } from \"@thi.ng/checks/is-function\";\nimport { isNotStringAndIterable } from \"@thi.ng/checks/is-not-string-iterable\";\nimport { isString } from \"@thi.ng/checks/is-string...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(hdom-canvas): update __normalize handling, rename fns - update canvas() component fn - rename drawTree() => createTree() - update releaseTree() call sites - remove warning from hydrateTree() (just do nothing)
1
fix
hdom-canvas
679,913
16.09.2018 23:25:39
-3,600
ae4b6212a2c2f0b045ff53191ec92531f2936c04
perf(hdom-canvas): inline type checks, update deps & readme
[ { "change_type": "MODIFY", "diff": "@@ -15,6 +15,7 @@ This project is part of the\n- [How it works](#how-it-works)\n- [Restrictions & behavior controls](#restrictions--behavior-controls)\n- [HDPI support](#hdpi-support)\n+- [SVG conversion](#svg-conversion)\n- [Supported shape types](#supported-shape-types)...
TypeScript
Apache License 2.0
thi-ng/umbrella
perf(hdom-canvas): inline type checks, update deps & readme
1
perf
hdom-canvas
679,913
17.09.2018 01:19:39
-3,600
7bbd1bcfbf7941dcba27b9e09bfada9bc6b67528
docs(hdom-canvas): update links
[ { "change_type": "MODIFY", "diff": "[Live demo](http://demo.thi.ng/umbrella/hdom-canvas-clock/)\nDeclarative canvas drawing using the upcoming\n-[@thi.ng/hdom-canvas](https://github.com/thi-ng/umbrella/tree/feature/hdom-canvas/packages/hdom-canvas)\n+[@thi.ng/hdom-canvas](https://github.com/thi-ng/umbrella/...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs(hdom-canvas): update links
1
docs
hdom-canvas
679,913
17.09.2018 01:56:52
-3,600
60f00590cacf2783ebd3d058082bde623d22eede
build(examples): fix deps, update readmes
[ { "change_type": "MODIFY", "diff": "@@ -12,19 +12,16 @@ Related examples:\n## Building\n-Because some of the packages used by this demo are still unreleased,\n-it's currently only possible to build from source...\n+Note: Currently, some of the packages used by this demo are only\n+available as pre-releases ...
TypeScript
Apache License 2.0
thi-ng/umbrella
build(examples): fix deps, update readmes
1
build
examples
679,913
17.09.2018 02:02:43
-3,600
38125686740fe7021776853fb385da4144324031
docs: add hdom-canvas to package table
[ { "change_type": "MODIFY", "diff": "@@ -56,6 +56,7 @@ packages) in the [examples](./examples) directory.\n| [`@thi.ng/equiv`](./packages/equiv) | [![version](https://img.shields.io/npm/v/@thi.ng/equiv.svg)](https://www.npmjs.com/package/@thi.ng/equiv) | [changelog](./packages/equiv/CHANGELOG.md) | Deep valu...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs: add hdom-canvas to package table
1
docs
null
679,913
17.09.2018 10:35:24
-3,600
763098586f8e689b5d973134d20f443d67273ee4
minor(examples): update clock example add hand shadow
[ { "change_type": "MODIFY", "diff": "@@ -17,9 +17,9 @@ const tick = (i: number, r1: number, r2: number) => {\n];\n};\n-const hand = (r1: number, r2: number, theta: number, fill?: string, eps = 0.5) => {\n+const hand = (r1: number, r2: number, theta: number, attribs = {}, eps = 0.5) => {\ntheta = theta * TAU ...
TypeScript
Apache License 2.0
thi-ng/umbrella
minor(examples): update clock example - add hand shadow
1
minor
examples
679,913
17.09.2018 10:40:06
-3,600
3e647a182bb4216a52e4e19f0c9c804adcef1e2e
fix(atom): add .value getter to IView
[ { "change_type": "MODIFY", "diff": "@@ -34,6 +34,7 @@ export interface IView<T> extends\napi.IRelease {\nreadonly path: PropertyKey[];\n+ readonly value: T;\nview(): T;\nchanged(): boolean;\n", "new_path": "packages/atom/src/api.ts", "old_path": "packages/atom/src/api.ts" }, { "change_type":...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(atom): add .value getter to IView
1
fix
atom
76,605
17.09.2018 12:37:22
-7,200
a68da16428103aa7f3c979f0585c803d117fa79c
feat: Load and Save Trim Named Entities
[ { "change_type": "MODIFY", "diff": "@@ -436,7 +436,7 @@ class NerManager {\n};\nif (entity.type === 'enum') {\nclone.locales = entity.locales;\n- } else {\n+ } else if (entity.type === 'regex') {\nclone.locales = {};\nconst localeKeys = Object.keys(entity.locales);\nfor (let j = 0; j < localeKeys.length; j ...
JavaScript
MIT License
axa-group/nlp.js
feat: Load and Save Trim Named Entities (#44)
1
feat
null
730,429
17.09.2018 14:05:07
14,400
a12e3fa532c9582c4ee3611bff712f8e6660c187
test(journeys): skip start call setting test This test fails due to it showing a call already in progress. Until we can determine the cause (bug ticket skip the failing test.
[ { "change_type": "MODIFY", "diff": "@@ -128,7 +128,7 @@ describe('Widget Space: Data API Settings', () => {\n});\n});\n- describe('start call setting', () => {\n+ describe.skip('start call setting', () => {\nbefore('inject docbrown token', () => {\nbrowserRemote.execute((localAccessToken, spaceId) => {\ncon...
JavaScript
MIT License
webex/react-widgets
test(journeys): skip start call setting test This test fails due to it showing a call already in progress. Until we can determine the cause (bug ticket SPARK-36716), skip the failing test.
1
test
journeys
679,913
17.09.2018 14:15:46
-3,600
eb674268507767164e671a9c937ac41052bbf6f3
fix(transducers): update arg types for choices() & weightedRandom()
[ { "change_type": "MODIFY", "diff": "@@ -10,7 +10,7 @@ import { tuples } from \"../iter/tuples\";\n* @param choices\n* @param weights\n*/\n-export function weightedRandom<T>(choices: T[], weights?: number[]) {\n+export function weightedRandom<T>(choices: ArrayLike<T> & Iterable<T>, weights?: ArrayLike<number...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(transducers): update arg types for choices() & weightedRandom()
1
fix
transducers
730,413
17.09.2018 14:28:03
14,400
36924f76818ac53c5ebb0fa3b7e4bd0defd0684e
feat(widget-recents): use collab-ui fonts
[ { "change_type": "MODIFY", "diff": "@@ -3,6 +3,10 @@ $icon-font-path: \"~@collab-ui/icons/fonts\";\n$images-path: \"~@collab-ui/core/images\";\n$docs-images-path: '~@collab-ui/core/docs/assets';\n+@import '~@collab-ui/core/scss/settings/core';\n+@import '~@collab-ui/core/scss/settings/rem';\n+@import '~@col...
JavaScript
MIT License
webex/react-widgets
feat(widget-recents): use collab-ui fonts
1
feat
widget-recents
679,913
17.09.2018 14:37:09
-3,600
f001314da45311190349ef94fa351bc55bf36a1c
fix(transducers): str() initial result handling
[ { "change_type": "MODIFY", "diff": "@@ -10,6 +10,6 @@ export function str(sep?: string, xs?: Iterable<any>): any {\n[...xs].join(sep) :\nreducer<string, any>(\n() => \"\",\n- (acc, x) => (acc = first ? \"\" + x : acc + sep + x, first = false, acc),\n+ (acc, x) => (acc = first ? acc + x : acc + sep + x, firs...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(transducers): str() initial result handling
1
fix
transducers
679,913
17.09.2018 14:37:50
-3,600
b488d2b32ce345e7977fb9b89ce983cb1a3f3c5e
feat(transducers): add randomID()
[ { "change_type": "ADD", "diff": "+import { choices } from \"../iter/choices\";\n+import { take } from \"../xform/take\";\n+\n+/**\n+ * Generates and returns a random string of `len` characters (default\n+ * 4), plus optional given `prefix` and using only provided `syms`\n+ * characters (default lowercase a-...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(transducers): add randomID()
1
feat
transducers
791,760
17.09.2018 15:04:13
25,200
443ff2c8a297dfd2297dfaca86c4966a87c8574a
docs(readme): updated report screenshot to 3.1.0
[ { "change_type": "ADD", "diff": "Binary files /dev/null and b/assets/example_audit.png differ\n", "new_path": "assets/example_audit.png", "old_path": "assets/example_audit.png" }, { "change_type": "MODIFY", "diff": "@@ -164,7 +164,7 @@ Lighthouse can produce a report as JSON or HTML.\nHT...
JavaScript
Apache License 2.0
googlechrome/lighthouse
docs(readme): updated report screenshot to 3.1.0 (#6042)
1
docs
readme
791,760
17.09.2018 15:05:50
25,200
25457c1e0980af7e54ab5958041c46acda6b41ee
core(icons): Add PNG check to manifest icon validation
[ { "change_type": "MODIFY", "diff": "@@ -37,15 +37,15 @@ class ManifestValues extends ComputedArtifact {\n},\n{\nid: 'hasIconsAtLeast192px',\n- failureText: 'Manifest does not have icons at least 192px',\n+ failureText: 'Manifest does not have a PNG icon of at least 192px',\nvalidate: manifestValue => icons....
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(icons): Add PNG check to manifest icon validation (#6024)
1
core
icons
730,429
17.09.2018 15:38:05
14,400
ed9dd941e137af45f51fe33fcc6d0b9e6eb16f33
docs(testplan): change testplan to new strategy
[ { "change_type": "MODIFY", "diff": "# Test Plan\n+The Webex Teams Widgets have full integration (or \"journey\") tests performed to validate proper behavior.\n+\n+The widgets are tested via [Webdriver.io](https://webdriver.io) using devices powered by [Sauce Labs](https://saucelabs.com).\n+\n+Every code cha...
JavaScript
MIT License
webex/react-widgets
docs(testplan): change testplan to new strategy
1
docs
testplan
730,412
17.09.2018 19:52:00
0
d675a6ddaebb47a7e034d007281e298447497606
chore(release): 0.1.359
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"0.1.359\"></a>\n+## [0.1.359](https://github.com/webex/react-ciscospark/compare/v0.1....
JavaScript
MIT License
webex/react-widgets
chore(release): 0.1.359
1
chore
release
730,412
17.09.2018 21:19:25
0
3e0628266fe674bc3cb42148f51b5e9f3ba674db
chore(release): 0.1.360
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"0.1.360\"></a>\n+## [0.1.360](https://github.com/webex/react-ciscospark/compare/v0.1....
JavaScript
MIT License
webex/react-widgets
chore(release): 0.1.360
1
chore
release
448,039
18.09.2018 02:12:53
25,200
f1d9e1ee595978f6a25cb46191bcabe05645eb24
release: cut v4.2.0
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"4.2.0\"></a>\n+# [4.2.0](https://github.com/ng-packagr/ng-packagr/compare/v4.1.1...v4...
TypeScript
MIT License
ng-packagr/ng-packagr
release: cut v4.2.0
1
release
null
67,479
18.09.2018 10:07:01
-36,000
ce2be3911f7b73785ba988ff96442ff6c7c2f282
fix(template-compiler): remove node after parsing
[ { "change_type": "MODIFY", "diff": "@@ -139,6 +139,7 @@ export class TemplateCompiler implements ITemplateCompiler {\nif (typeof node === 'string') {\ndomParser.innerHTML = node;\nnode = definition.templateOrNode = domParser.firstElementChild;\n+ domParser.removeChild(node);\n}\nconst rootNode = <Element>no...
TypeScript
MIT License
aurelia/aurelia
fix(template-compiler): remove node after parsing (#181)
1
fix
template-compiler
730,429
18.09.2018 12:01:13
14,400
391ed1d7e1029f8353ce6304a4c2353a159376b2
feat(scripts): publish all widgets except for demos widget-space relies on the sidebar "widgets" which didn't get published with the other command.
[ { "change_type": "MODIFY", "diff": "@@ -266,7 +266,6 @@ ansiColor('xterm') {\nsource ~/.nvm/nvm.sh\nnvm use v8.11.3\nnpm run publish:components\n- npm run publish:widgets\n'''\n}\ncatch (error) {\n", "new_path": "Jenkinsfile", "old_path": "Jenkinsfile" }, { "change_type": "MODIFY", "diff...
JavaScript
MIT License
webex/react-widgets
feat(scripts): publish all widgets except for demos widget-space relies on the sidebar "widgets" which didn't get published with the other command.
1
feat
scripts
730,413
18.09.2018 13:06:32
14,400
20e73467f1527ebccec47ea02e6d1f5161b2d86b
fix(circleci): error on multiline command doesn't fail build
[ { "change_type": "MODIFY", "diff": "@@ -108,7 +108,7 @@ jobs:\nname: Integration Tests\nno_output_timeout: 40m\ncommand: |\n- set -m\n+ set -em\n(\n(PORT=4569 SAUCE_CONNECT_PORT=5006 BROWSER=firefox VERSION=60 npm run test:integration || kill 0) &\n(sleep 60; PORT=4568 SAUCE_CONNECT_PORT=5005 BROWSER=chrome...
JavaScript
MIT License
webex/react-widgets
fix(circleci): error on multiline command doesn't fail build
1
fix
circleci
791,834
18.09.2018 13:39:41
25,200
d0313385e8e73e21d5bbaddfd562c0d60c5906f3
core(lhr): add top-level runtimeError
[ { "change_type": "MODIFY", "diff": "@@ -12,18 +12,20 @@ const strings = require('./strings');\n* @property {string} code\n* @property {string} message\n* @property {RegExp} [pattern]\n+ * @property {boolean} [lhrRuntimeError] True if it should appear in the top-level LHR.runtimeError property.\n*/\nclass Li...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(lhr): add top-level runtimeError (#6014)
1
core
lhr
730,412
18.09.2018 14:58:52
0
66698932411c6d39373b14d6f48999e4241c8de5
chore(release): 0.1.361
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"0.1.361\"></a>\n+## [0.1.361](https://github.com/webex/react-ciscospark/compare/v0.1....
JavaScript
MIT License
webex/react-widgets
chore(release): 0.1.361
1
chore
release
791,723
18.09.2018 16:06:47
25,200
ff8e00cef1a9dcff64852710b8b38e2ebbc70fc1
deps: chrome-launcher to 0.10.4
[ { "change_type": "MODIFY", "diff": "\"dependencies\": {\n\"axe-core\": \"3.0.0-beta.2\",\n\"chrome-devtools-frontend\": \"1.0.422034\",\n- \"chrome-launcher\": \"^0.10.2\",\n+ \"chrome-launcher\": \"^0.10.4\",\n\"configstore\": \"^3.1.1\",\n\"devtools-timeline-model\": \"1.1.6\",\n\"esprima\": \"^4.0.1\",\n...
JavaScript
Apache License 2.0
googlechrome/lighthouse
deps: chrome-launcher to 0.10.4 (#6043)
1
deps
null
791,723
18.09.2018 16:08:50
25,200
18e847bac8eb3d123d4d522b52290f7c1a6793eb
core(net-request): transferSize now shared via 'X-TotalFetchedSize'
[ { "change_type": "MODIFY", "diff": "@@ -279,25 +279,18 @@ module.exports = class NetworkRequest {\n}\n/**\n- * LR loses transfer size information and passes it in the 'X-Original-Content-Length' header.\n+ * LR loses transfer size information, but passes it in the 'X-TotalFetchedSize' header.\n*/\n_updateTr...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(net-request): transferSize now shared via 'X-TotalFetchedSize' (#6050)
1
core
net-request
791,834
18.09.2018 16:58:02
25,200
d73c715c08ce9a629e72edc0c739de77ab214203
core(gather-runner): include error status codes in pageLoadError
[ { "change_type": "MODIFY", "diff": "@@ -78,8 +78,8 @@ module.exports = [\n},\n},\n{\n- requestedUrl: BASE_URL + 'seo-failure-cases.html?status_code=403&' + failureHeaders,\n- finalUrl: BASE_URL + 'seo-failure-cases.html?status_code=403&' + failureHeaders,\n+ requestedUrl: BASE_URL + 'seo-failure-cases.html?...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(gather-runner): include error status codes in pageLoadError (#6051)
1
core
gather-runner
730,412
18.09.2018 19:05:06
0
c52b699389a3411d64347459095fd990d3ce62f7
chore(release): 0.1.362
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"0.1.362\"></a>\n+## [0.1.362](https://github.com/webex/react-ciscospark/compare/v0.1....
JavaScript
MIT License
webex/react-widgets
chore(release): 0.1.362
1
chore
release
76,605
18.09.2018 22:43:17
-7,200
dc81467b84bce050d4c25a1018b4832e3a1b97ff
doc: Adding slot filling gif
[ { "change_type": "MODIFY", "diff": "@@ -8,6 +8,9 @@ If you want that the chatbot is automatically using the NLG, instead of calling\nAnother feature that comes with the improved behaviour, is that when the answer starts with _/_ then is not a phrase to return to the user, and is a _session.beginDialog()_, s...
JavaScript
MIT License
axa-group/nlp.js
doc: Adding slot filling gif
1
doc
null
76,605
18.09.2018 22:44:29
-7,200
05b4c7663ebde76c3013e8c342066256197987c9
doc: fixing image extension
[ { "change_type": "MODIFY", "diff": "@@ -8,7 +8,7 @@ If you want that the chatbot is automatically using the NLG, instead of calling\nAnother feature that comes with the improved behaviour, is that when the answer starts with _/_ then is not a phrase to return to the user, and is a _session.beginDialog()_, s...
JavaScript
MIT License
axa-group/nlp.js
doc: fixing image extension
1
doc
null
791,723
19.09.2018 01:31:50
25,200
1ac7bd1176e21b3b836cbc0a67c14e42825e66d7
misc: bump bundlesize threshold a little more
[ { "change_type": "MODIFY", "diff": "\"bundlesize\": [\n{\n\"path\": \"./lighthouse-extension/dist/scripts/lighthouse-background.js\",\n- \"threshold\": \"510 Kb\"\n+ \"threshold\": \"520 Kb\"\n},\n{\n\"path\": \"./lighthouse-viewer/dist/src/viewer.js\",\n", "new_path": "package.json", "old_path": "p...
JavaScript
Apache License 2.0
googlechrome/lighthouse
misc: bump bundlesize threshold a little more (#6055)
1
misc
null
448,042
19.09.2018 10:36:03
-19,080
a617d9cb727b997e81bf510b5234742f636033a4
ci: update circle-ci workflows fixes
[ { "change_type": "MODIFY", "diff": "@@ -4,9 +4,11 @@ defaults: &defaults\n- image: angular/ngcontainer:0.3.3\nworking_directory: ~/repo\n+attach_options: &attach_options\n+ at: ~/repo\n+\njobs:\n- # Build for all branches and tags\n- build:\n+ install:\n<<: *defaults\nsteps:\n# Checkout, Download and cache ...
TypeScript
MIT License
ng-packagr/ng-packagr
ci: update circle-ci workflows fixes #1043
1
ci
null
679,913
19.09.2018 13:00:39
-3,600
363c241ce2dbc28bfcde0a21ec58a9f763989f9b
feat(hiccup): add control attrib handling, add comment support skip serialize() for elements w/ `__serialize: false` attrib omit output of any control attribs add COMMENT const and comment serialization update imports update docstring
[ { "change_type": "MODIFY", "diff": "@@ -21,6 +21,8 @@ export const ENTITIES = {\n\"'\": \"&apos;\",\n};\n+export const COMMENT = \"__COMMENT__\";\n+\nexport const NO_SPANS = {\nbutton: 1,\noption: 1,\n", "new_path": "packages/hiccup/src/api.ts", "old_path": "packages/hiccup/src/api.ts" }, { ...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(hiccup): add control attrib handling, add comment support - skip serialize() for elements w/ `__serialize: false` attrib - omit output of any control attribs - add COMMENT const and comment serialization - update imports - update docstring
1
feat
hiccup
679,913
19.09.2018 13:13:00
-3,600
53a1d2c00a67a2419596a815ab25a59fbdd5d201
refactor(hdom-canvas): add _serialize control attrib to root group
[ { "change_type": "MODIFY", "diff": "@@ -119,6 +119,7 @@ export const canvas = (_, attribs, ...body: any[]) => {\n__diff: attribs.__diff !== false,\n__normalize: attribs.__normalize !== false,\n__release: attribs.__release === true,\n+ __serialize: false,\n__clear: attribs.__clear,\nscale: dpr !== 1 ? dpr : ...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(hdom-canvas): add _serialize control attrib to root group
1
refactor
hdom-canvas
679,913
19.09.2018 13:14:14
-3,600
de17db8f2ab5be348c73952a992d5e79266af694
perf(hdom): minor updates
[ { "change_type": "MODIFY", "diff": "import { IObjectOf, SEMAPHORE } from \"@thi.ng/api/api\";\n-import * as isa from \"@thi.ng/checks/is-array\";\nimport { DiffLogEntry } from \"@thi.ng/diff/api\";\nimport { diffArray } from \"@thi.ng/diff/array\";\nimport { diffObject } from \"@thi.ng/diff/object\";\n-impo...
TypeScript
Apache License 2.0
thi-ng/umbrella
perf(hdom): minor updates
1
perf
hdom
679,913
19.09.2018 13:15:40
-3,600
e82e31228f34a846f12e11de0c0435a0d1f7b570
feat(examples): add SVG export comment to hdom-canvas-shapes
[ { "change_type": "MODIFY", "diff": "@@ -11,7 +11,7 @@ import { map } from \"@thi.ng/transducers/xform/map\";\nimport { Mat23 } from \"@thi.ng/vectors/mat23\";\n// for testing SVG conversion\n-import { serialize } from \"@thi.ng/hiccup\";\n+import { COMMENT, serialize } from \"@thi.ng/hiccup\";\nimport { con...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(examples): add SVG export comment to hdom-canvas-shapes
1
feat
examples
730,412
19.09.2018 15:49:15
0
42ce97bcd8a2e318b1765094f0453e74d59cdd93
chore(release): 0.1.363
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"0.1.363\"></a>\n+## [0.1.363](https://github.com/webex/react-ciscospark/compare/v0.1....
JavaScript
MIT License
webex/react-widgets
chore(release): 0.1.363
1
chore
release
791,760
19.09.2018 17:33:18
25,200
1af9f206af3fc8e0d4b9d7c4e80d88e97c5c1b2e
core(driver): deliver trace as events rather than a stream
[ { "change_type": "MODIFY", "diff": "@@ -36,7 +36,7 @@ class AxeAudit extends Audit {\nconst impact = rule && rule.impact;\nconst tags = rule && rule.tags;\n- /** @type {Array<{node: LH.Audit.DetailsRendererNodeDetailsJSON}>}>} */\n+ /** @type {Array<{node: LH.Audit.DetailsRendererNodeDetailsJSON}>} */\nlet ...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(driver): deliver trace as events rather than a stream (#6056)
1
core
driver
679,913
19.09.2018 21:49:52
-3,600
929c6f42367655ec453dd17098df4bfa15d77890
feat(rstream): add trigger() utility stream
[ { "change_type": "MODIFY", "diff": "@@ -4,6 +4,7 @@ export * from \"./stream\";\nexport * from \"./stream-merge\";\nexport * from \"./stream-sync\";\nexport * from \"./subscription\";\n+export * from \"./trigger\";\nexport * from \"./from/atom\";\nexport * from \"./from/event\";\n", "new_path": "package...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(rstream): add trigger() utility stream
1
feat
rstream
679,913
19.09.2018 21:53:46
-3,600
e390a54d0b3c06c10a95af564c968d8a1464d368
feat(api): add `IToHiccup` interface
[ { "change_type": "MODIFY", "diff": "@@ -412,6 +412,18 @@ export interface IImmutableStack<V, T> {\npush(x: V): T;\n}\n+export interface IToHiccup {\n+ /**\n+ * Returns a thi.ng/hiccup compatible representation. The optional\n+ * `ctx` arg is an arbitrary user context object passed to all\n+ * hiccup compone...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(api): add `IToHiccup` interface
1
feat
api
679,913
19.09.2018 21:55:11
-3,600
09a821b231a44bf73fd938a9eedf61c531e1e681
refactor(hdom-canvas): switch canvas back to lifecycle object form this allows users to augment the component with `init` & `release` lifecycle methods if needed...
[ { "change_type": "MODIFY", "diff": "@@ -101,7 +101,8 @@ const CTX_ATTRIBS = {\n* @param attribs canvas attribs\n* @param shapes shape components\n*/\n-export const canvas = (_, attribs, ...body: any[]) => {\n+export const canvas = {\n+ render: (_, attribs, ...body: any[]) => {\nconst cattribs = { ...attribs...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(hdom-canvas): switch canvas back to lifecycle object form - this allows users to augment the component with `init` & `release` lifecycle methods if needed...
1
refactor
hdom-canvas
679,913
19.09.2018 21:57:13
-3,600
46d851b68e4179b96dd041d0e87fff831f45dec3
feat(examples): add hdom-canvas-draw demo
[ { "change_type": "ADD", "diff": "+.cache\n+out\n+node_modules\n+yarn.lock\n+*.js\n", "new_path": "examples/hdom-canvas-draw/.gitignore", "old_path": null }, { "change_type": "ADD", "diff": "+# hdom-canvas-draw\n+\n+[Live demo](http://demo.thi.ng/umbrella/hdom-canvas-draw/)\n+\n+```bash\n...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(examples): add hdom-canvas-draw demo
1
feat
examples
67,476
20.09.2018 06:15:09
-7,200
fb417d4f4cd46a5f543949f3013101de2b420e6c
ci: add fixes for the publish workflow
[ { "change_type": "MODIFY", "diff": "@@ -265,8 +265,7 @@ jobs:\nname: Merge tag into release\ncommand: |\ngit checkout release\n- git merge $CIRCLE_TAG --squash\n- git commit --no-edit\n+ git merge $CIRCLE_TAG --no-ff\ngit push\npublish_latest:\n@@ -307,7 +306,7 @@ workflows:\n- e2e_browserstack:\nrequires:\...
TypeScript
MIT License
aurelia/aurelia
ci: add fixes for the publish workflow (#186)
1
ci
null
791,723
20.09.2018 10:25:27
25,200
c6f033eab429e427e6bbcb5c1324598c5ddce4d9
deps: bump speedline to 1.4.2 (faster sort)
[ { "change_type": "MODIFY", "diff": "\"rimraf\": \"^2.6.1\",\n\"robots-parser\": \"^2.0.1\",\n\"semver\": \"^5.3.0\",\n- \"speedline-core\": \"1.4.0\",\n+ \"speedline-core\": \"1.4.2\",\n\"update-notifier\": \"^2.1.0\",\n\"ws\": \"3.3.2\",\n\"yargs\": \"3.32.0\",\n", "new_path": "package.json", "old_...
JavaScript
Apache License 2.0
googlechrome/lighthouse
deps: bump speedline to 1.4.2 (faster sort) (#6073)
1
deps
null
791,760
20.09.2018 12:08:30
25,200
bb8e0304253e321b2c063bed2e241ad7ce0bfba9
core(runner): added locale to settings that can change between -G and -A
[ { "change_type": "MODIFY", "diff": "@@ -190,7 +190,12 @@ class Runner {\nartifacts = Object.assign({}, Runner.instantiateComputedArtifacts(), artifacts);\nif (artifacts.settings) {\n- const overrides = {gatherMode: undefined, auditMode: undefined, output: undefined};\n+ const overrides = {\n+ locale: undefi...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(runner): added locale to settings that can change between -G and -A (#6080)
1
core
runner
679,913
20.09.2018 13:21:51
-3,600
1ac1110bf7ec7157c204c794cddfca1df518341e
feat(examples): rename interceptor-basics, add more simpler version rename interceptor-basics => interceptor-basics2 add new / simpler interceptor-basics example
[ { "change_type": "MODIFY", "diff": "# interceptor-basics\n-[Live demo](https://demo.thi.ng/umbrella/interceptor-basics/)\n+[Live demo](http://demo.thi.ng/umbrella/interceptor-basics/)\n```bash\ngit clone https://github.com/thi-ng/umbrella.git\n@@ -8,3 +8,11 @@ cd umbrella/examples/interceptor-basics\nyarn i...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(examples): rename interceptor-basics, add more simpler version - rename interceptor-basics => interceptor-basics2 - add new / simpler interceptor-basics example
1
feat
examples
791,760
20.09.2018 15:13:54
25,200
2d00324eb83c6bb713b11b6d322a618f39d9b162
core(audit): make dom-size table prettier
[ { "change_type": "MODIFY", "diff": "@@ -32,17 +32,23 @@ const UIStrings = {\n'children/parent element. A large DOM can increase memory usage, cause longer ' +\n'[style calculations](https://developers.google.com/web/fundamentals/performance/rendering/reduce-the-scope-and-complexity-of-style-calculations), '...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(audit): make dom-size table prettier (#6065)
1
core
audit
679,913
20.09.2018 15:24:08
-3,600
dbdb72ec88a4ea1f46003cfeb13ceed66c4a0b13
docs(rstream): add diagrams
[ { "change_type": "ADD", "diff": "+<mxfile userAgent=\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.92 Safari/537.36\" version=\"9.1.6\" editor=\"www.draw.io\" type=\"device\"><diagram id=\"5a2b947f-f473-ba62-e2bb-d453c453e359\" name=\"Page-1\">7V1Nc...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs(rstream): add diagrams
1
docs
rstream
815,745
20.09.2018 15:30:03
-10,800
7dd40940fd7fa0ab644135566242c83beab268a0
fix(tags): add tag as string when there are no items defined fixes
[ { "change_type": "MODIFY", "diff": "@@ -6,9 +6,8 @@ import { Component, ChangeDetectionStrategy } from '@angular/core';\ntemplate: `\n<label>Default tags</label>\n---html,true\n- <ng-select [items]=\"companies\"\n+ <ng-select [items]=\"[]\"\n[addTag]=\"true\"\n- bindLabel=\"name\"\n[(ngModel)]=\"selectedCom...
TypeScript
MIT License
ng-select/ng-select
fix(tags): add tag as string when there are no items defined fixes #809
1
fix
tags
815,745
20.09.2018 15:54:20
-10,800
daac2345e0f607d90f5560130e72331a996634c5
fix(tags): allow to add previously added tag when select is closed fixes
[ { "change_type": "MODIFY", "diff": "@@ -1817,6 +1817,23 @@ describe('NgSelectComponent', function () {\ntickAndDetectChanges(fixture);\ntriggerKeyDownEvent(getNgSelectElement(fixture), KeyCode.Enter);\nexpect(fixture.componentInstance.selectedCity).toBe(<any>'Copenhagen');\n+ expect(fixture.componentInstanc...
TypeScript
MIT License
ng-select/ng-select
fix(tags): allow to add previously added tag when select is closed fixes #783
1
fix
tags
679,913
20.09.2018 16:00:02
-3,600
d5ec6fd835b277c7467b11b223c35503cf7bb326
docs(rstream): add docs, update readme
[ { "change_type": "MODIFY", "diff": "@@ -44,32 +44,173 @@ are provided too:\n### Stream merging\n-- [merge](https://github.com/thi-ng/umbrella/tree/master/packages/rstream/src/stream-merge.ts) - unsorted merge from multiple inputs (dynamic add/remove)\n+#### [merge()](https://github.com/thi-ng/umbrella/tree/...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs(rstream): add docs, update readme
1
docs
rstream
815,745
20.09.2018 16:12:49
-10,800
b68564bc941cd5f12720985dc4a353000d24487b
chore(release): 2.9.1
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"2.9.1\"></a>\n+## [2.9.1](https://github.com/ng-select/ng-select/compare/v2.9.0...v2....
TypeScript
MIT License
ng-select/ng-select
chore(release): 2.9.1
1
chore
release
217,922
20.09.2018 17:19:42
-7,200
566a6361dada3cc6a74b361ada20001fb1819e76
chore: WIP search
[ { "change_type": "MODIFY", "diff": "@@ -2,7 +2,7 @@ import { Injectable } from '@angular/core';\nimport { Actions, Effect, ofType } from '@ngrx/effects';\nimport { ListService } from '../list.service';\nimport { CreateList, DeleteList, ListsActionTypes, ListsLoaded, UpdateList } from './lists.actions';\n-im...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: WIP search
1
chore
null
791,690
20.09.2018 17:32:25
18,000
6483b0c9daf7e05da3d119915dc6e2226b1de671
core(network-recorder): consider iframe responses finished. helps avoid pageload timeout
[ { "change_type": "MODIFY", "diff": "@@ -99,6 +99,18 @@ class NetworkRecorder extends EventEmitter {\nreturn !!(isQUIC && receivedHeaders && record.endTime);\n}\n+ /**\n+ * frame root network requests don't always \"finish\" even when they're done loading data, use responseReceived instead\n+ * @see https://...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(network-recorder): consider iframe responses finished. helps avoid pageload timeout (#6078)
1
core
network-recorder
679,913
20.09.2018 19:08:43
-3,600
288b68d960817e441f7b09c11ab8c20fc65f4d88
feat(rstream): add trigger() generics
[ { "change_type": "MODIFY", "diff": "@@ -2,9 +2,12 @@ import { fromIterable } from \"./from/iterable\";\nimport { Stream } from \"./stream\";\n/**\n- * Utility stream. Returns a new stream which emits a single `true`\n- * value and then closes.\n+ * Utility stream. Returns a new stream which emits a single v...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(rstream): add trigger() generics
1
feat
rstream
217,922
20.09.2018 22:28:14
-7,200
1c14de735d905de0d450733a26b0acfcf5f5790e
feat: search system linked with list state
[ { "change_type": "MODIFY", "diff": "@@ -99,7 +99,7 @@ export function HttpLoaderFactory(http: HttpClient): TranslateHttpLoader {\nNgSerializerModule.forRoot(),\nAppRoutingModule,\n- CoreModule,\n+ CoreModule.forRoot(),\nPipesModule,\nAlarmsModule,\nAlarmsSidebarModule,\n", "new_path": "apps/client/src/a...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat: search system linked with list state
1
feat
null
791,676
21.09.2018 00:36:20
-7,200
e199eacb2c0670d0d0743126e48f8b0dc52c7d7a
report: align table headings & columns left/right
[ { "change_type": "MODIFY", "diff": "@@ -906,19 +906,28 @@ summary.lh-passed-audits-summary {\npadding: 8px 6px;\n}\n+/* Looks unnecessary, but mostly for keeping the <th>s left-aligned */\n.lh-table-column--text,\n+.lh-table-column--url,\n+/* .lh-table-column--thumbnail, */\n+/* .lh-table-column--empty,*/\n...
JavaScript
Apache License 2.0
googlechrome/lighthouse
report: align table headings & columns left/right (#6063)
1
report
null
76,605
21.09.2018 12:06:29
-7,200
db4368774ade53ff9eb072f5846cebd19dbf965a
fix: Error for some german stems
[ { "change_type": "MODIFY", "diff": "@@ -634,7 +634,7 @@ class GermanStemmer extends BaseStemmer {\nreturn false;\n}\n// try, line 120\n- v_10 = this.limit - this.cursor;\n+ var v_10 = this.limit - this.cursor;\nvar lab10 = true;\nlab10: while (lab10 == true) {\nlab10 = false;\n", "new_path": "lib/nlp/st...
JavaScript
MIT License
axa-group/nlp.js
fix: Error for some german stems
1
fix
null
679,913
21.09.2018 15:35:02
-3,600
78b1f4acc89d03a9b000e5310420217aa1f29222
fix(transducers-hdom): add missing type annotation
[ { "change_type": "MODIFY", "diff": "import { isString } from \"@thi.ng/checks/is-string\";\n-import { HDOMOpts } from \"@thi.ng/hdom/api\";\n+import { HDOMOpts, HDOMImplementation } from \"@thi.ng/hdom/api\";\nimport { DEFAULT_IMPL } from \"@thi.ng/hdom/default\";\nimport { Transducer } from \"@thi.ng/trans...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(transducers-hdom): add missing type annotation
1
fix
transducers-hdom
679,913
21.09.2018 15:35:32
-3,600
022101f3667bea971526d7e6a6c12f1ed1163e3e
fix(transducers): add missing type annotation
[ { "change_type": "MODIFY", "diff": "@@ -85,7 +85,7 @@ export function groupBinary<T>(\nbranch?: () => IObjectOf<T[]>,\nleaf?: Reducer<any, T>,\nleft: PropertyKey = \"l\",\n- right: PropertyKey = \"r\") {\n+ right: PropertyKey = \"r\"): Reducer<any, T> {\nconst init = branch || (() => ({}));\nlet rfn: Reduce...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(transducers): add missing type annotation
1
fix
transducers
217,922
21.09.2018 16:52:45
-7,200
9192b5a109015c5e97f82453964c9a8a5d0acea7
chore: WIP list panels
[ { "change_type": "MODIFY", "diff": "@@ -11,6 +11,10 @@ const routes: Routes = [\npath: 'lists',\nloadChildren: './pages/lists/lists-page.module#ListsPageModule'\n},\n+ {\n+ path: 'list',\n+ loadChildren: './pages/list-details/list-details.module#ListDetailsModule'\n+ },\n{\npath: 'search',\nloadChildren: '....
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: WIP list panels
1
chore
null
679,913
21.09.2018 17:15:20
-3,600
7c4dc3f0d9016e321bc931bdb6cd34652b5b3099
fix(examples): update commit-table-ssr to work w/ parceljs, update docs update server app to inject parcel middleware update build config add client COMMIT_URL const (build mode specific) update readme
[ { "change_type": "MODIFY", "diff": "@@ -8,6 +8,17 @@ server-side rendering, static file generation and an extended\ninteractive browser version of a git repo commit log. The server is a\nsimple [express](https://expressjs.com/) app.\n+There're 3 versions in this example:\n+\n+1) A server app which generates...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(examples): update commit-table-ssr to work w/ parceljs, update docs - update server app to inject parcel middleware - update build config - add client COMMIT_URL const (build mode specific) - update readme
1
fix
examples
679,913
21.09.2018 17:16:36
-3,600
8aa660557c2909f4ed887c5c00aad3b83ba2250c
build: update example generator & build scripts
[ { "change_type": "MODIFY", "diff": "@@ -20,7 +20,7 @@ for e in $examples; do\nsed -i 's/Object\\.defineProperty([a-z]\\+,\"__esModule\",{value:\\!0}),\\([^f]\\)/(\\1)/g' $src\ngzip -c $src > $src.gz\nls -la $src*\n- sed -i 's/src=\"\\//src=\".\\//g' $e/out/index.html\n+ # sed -i 's/src=\"\\//src=\".\\//g' $...
TypeScript
Apache License 2.0
thi-ng/umbrella
build: update example generator & build scripts
1
build
null
679,913
21.09.2018 17:18:07
-3,600
0dcc1b8642b4c46323271580183d7abfca90634d
refactor(rstream): remove Stream.NEXT_ID, replace w/ Subscription field
[ { "change_type": "MODIFY", "diff": "import { Stream } from \"../stream\";\n+import { Subscription } from \"../subscription\";\n/**\n* Creates a new stream of DOM events attached to given element / event\n@@ -14,5 +15,5 @@ export function fromEvent(src: EventTarget, name: string, opts: boolean | AddEve\nlet ...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(rstream): remove Stream.NEXT_ID, replace w/ Subscription field
1
refactor
rstream
791,834
21.09.2018 18:06:39
25,200
83a22bc80e85e160b0b6f4c59f3e5abb38700c90
core: smooth rough edges of pageLoadError display and reporting
[ { "change_type": "MODIFY", "diff": "@@ -156,22 +156,19 @@ class GatherRunner {\nreturn URL.equalWithExcludedFragments(record.url, url);\n});\n- let errorCode;\n- let errorReason;\n+ let errorDef;\nif (!mainRecord) {\n- errorCode = LHError.errors.NO_DOCUMENT_REQUEST;\n+ errorDef = LHError.errors.NO_DOCUMENT_...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core: smooth rough edges of pageLoadError display and reporting (#6083)
1
core
null
679,913
21.09.2018 21:36:23
-3,600
8441afcb38cb30487c2979e66408223a5a4cc1dc
assets: add new diagram sources (hdom & interceptors)
[ { "change_type": "DELETE", "diff": "-digraph g {\n-rankdir=\"LR\";\n-fontname=\"Inconsolata\";\n-fontsize=\"9\";\n-fontcolor=\"gray\";\n-label=\"Generated with @thi.ng/dot\";\n-labeljust=\"l\";\n-labelloc=\"b\";\n-node[style=\"filled\", fontname=\"Inconsolata\", fontsize=\"11\"];\n-edge[arrowsize=\"0.75\", ...
TypeScript
Apache License 2.0
thi-ng/umbrella
assets: add new diagram sources (hdom & interceptors)
1
assets
null
76,605
21.09.2018 23:16:18
-7,200
0c7143671d519461b53bde6a30039cb9e00cb337
feat: Irish Stemmer
[ { "change_type": "MODIFY", "diff": "@@ -35,6 +35,7 @@ const FinnishStemmer = require('./stemmers/finnish-stemmer');\nconst FrenchStemmer = require('./stemmers/french-stemmer');\nconst GermanStemmer = require('./stemmers/german-stemmer');\nconst HungarianStemmer = require('./stemmers/hungarian-stemmer');\n+c...
JavaScript
MIT License
axa-group/nlp.js
feat: Irish Stemmer (#50)
1
feat
null
76,605
22.09.2018 01:21:41
-7,200
39f98f693365e16a00ff743cf7a38f40adfb4f9a
feat: Czech Stemmer
[ { "change_type": "MODIFY", "diff": "@@ -26,6 +26,7 @@ const AggressiveTokenizerId = require('natural/lib/natural/tokenizers/aggressive\nconst ArabicStemmer = require('./stemmers/arabic-stemmer');\nconst BasqueStemmer = require('./stemmers/basque-stemmer');\nconst CatalanStemmer = require('./stemmers/catalan...
JavaScript
MIT License
axa-group/nlp.js
feat: Czech Stemmer (#51)
1
feat
null
76,605
22.09.2018 01:46:17
-7,200
8f4d42acafcd7603fe490efd1d0937db22fbb981
feat: Slovene Stemmer
[ { "change_type": "MODIFY", "diff": "@@ -43,6 +43,7 @@ const PortugueseStemmer = require('./stemmers/portuguese-stemmer');\nconst PunctTokenizer = require('./tokenizers/punct-tokenizer');\nconst RomanianStemmer = require('./stemmers/romanian-stemmer');\nconst RussianStemmer = require('./stemmers/russian-stem...
JavaScript
MIT License
axa-group/nlp.js
feat: Slovene Stemmer (#52)
1
feat
null
76,605
22.09.2018 02:19:15
-7,200
a2f3a90e8c18d54b62f219650ff784919964de1f
feat: Armenian Stemmer
[ { "change_type": "MODIFY", "diff": "const Natural = require('natural');\nconst AggressiveTokenizerId = require('natural/lib/natural/tokenizers/aggressive_tokenizer_id');\nconst ArabicStemmer = require('./stemmers/arabic-stemmer');\n+const ArmenianStemmer = require('./stemmers/armenian-stemmer');\nconst Basq...
JavaScript
MIT License
axa-group/nlp.js
feat: Armenian Stemmer (#53)
1
feat
null
791,834
22.09.2018 11:46:41
25,200
ffb839835693e12bbc2ebc81e3ab7baa1c8985f5
core: use cssstyle to parse CSS colors instead of WebInspector
[ { "change_type": "MODIFY", "diff": "'use strict';\nconst MultiCheckAudit = require('./multi-check-audit');\n-const validColor = require('../lib/web-inspector').Color.parse;\nconst ManifestValues = require('../gather/computed/manifest-values');\n+const cssParsers = require('cssstyle/lib/parsers');\n/**\n* @f...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core: use cssstyle to parse CSS colors instead of WebInspector (#6091)
1
core
null
791,834
22.09.2018 12:11:03
25,200
265d9563a108137480b4225a74bf36b80b570f54
core: remove some trivial uses of WebInspector
[ { "change_type": "MODIFY", "diff": "'use strict';\n/** @typedef {LH.Artifacts.FontSize['analyzedFailingNodesData'][0]} FailingNodeData */\n-/** @typedef {{Type: {Regular: 'Regular', Inline: 'Inline', Attributes: 'Attributes'}}} WebInspectorCSSStyle */\nconst URL = require('../../lib/url-shim');\nconst Audit...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core: remove some trivial uses of WebInspector (#6090)
1
core
null
679,913
22.09.2018 16:47:25
-3,600
5ef9cf0eb047932a91d0fb0e6dba52af921c4a9a
feat(hdom): add renderOnce()
[ { "change_type": "MODIFY", "diff": "@@ -2,4 +2,5 @@ export * from \"./api\";\nexport * from \"./diff\";\nexport * from \"./dom\";\nexport * from \"./normalize\";\n+export * from \"./render-once\";\nexport * from \"./start\";\n", "new_path": "packages/hdom/src/index.ts", "old_path": "packages/hdom/sr...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(hdom): add renderOnce()
1
feat
hdom
76,605
22.09.2018 17:16:15
-7,200
057b5468e421e592d1d7211dbda8f569426e45e6
doc: Adding new languages
[ { "change_type": "MODIFY", "diff": "@@ -9,8 +9,11 @@ Inside Sentiment Analysis, there are three possible algoritms: AFINN, Senticon a\n| Language | Natural | Snowball | Custom |\n| :-------------- | :-----: | :------: | :----: |\n| Arabic (ar) | | X | |\n+| Armenian (hy) | | X | |\n+| Basque (eu) | | X | |\...
JavaScript
MIT License
axa-group/nlp.js
doc: Adding new languages
1
doc
null
679,913
22.09.2018 18:11:19
-3,600
86bdd06d1150b14ebbf9a0048c1c6c115e0063ae
feat(examples): add svg-barchart demo
[ { "change_type": "ADD", "diff": "Binary files /dev/null and b/assets/screenshots/svg-barchart.png differ\n", "new_path": "assets/screenshots/svg-barchart.png", "old_path": "assets/screenshots/svg-barchart.png" }, { "change_type": "ADD", "diff": "+# svg-barchart\n+\n+[Live demo](http://de...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(examples): add svg-barchart demo
1
feat
examples
679,913
22.09.2018 18:12:47
-3,600
4bc643941df4d5513cab2fae065a83519c460f7d
chore: add HMR handling to make-example script
[ { "change_type": "MODIFY", "diff": "@@ -9,7 +9,14 @@ mkdir -p $MODULE\necho \"creating /src folder...\"\nmkdir -p $MODULE/src\n-touch $MODULE/src/index.ts\n+cat << EOF > $MODULE/src/index.ts\n+import { } from \"@thi.ng/hdom\";\n+\n+if (process.env.NODE_ENV !== \"production\") {\n+ const hot = (<any>module)....
TypeScript
Apache License 2.0
thi-ng/umbrella
chore: add HMR handling to make-example script
1
chore
null
679,913
22.09.2018 18:21:22
-3,600
897f2b36e173ab32df95a82507dcff3f9d9e474b
docs: update branch links (all back to master now)
[ { "change_type": "MODIFY", "diff": "[Live demo](http://demo.thi.ng/umbrella/hdom-canvas-clock/)\nDeclarative canvas drawing using the upcoming\n-[@thi.ng/hdom-canvas](https://github.com/thi-ng/umbrella/tree/develop/packages/hdom-canvas)\n+[@thi.ng/hdom-canvas](https://github.com/thi-ng/umbrella/tree/master/...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs: update branch links (all back to master now)
1
docs
null
679,913
22.09.2018 18:40:02
-3,600
70de921a15d72c09d54cd9c8f27171c9a6a344b7
build: add npm registry for publish script
[ { "change_type": "MODIFY", "diff": "\"depgraph\": \"scripts/depgraph && git add assets/deps.png && git commit -m 'docs: update dep graph' && git push\",\n\"doc\": \"lerna run doc\",\n\"examples\": \"scripts/build-examples\",\n- \"pub\": \"lerna publish && yarn doc && scripts/upload-docs\",\n+ \"pub\": \"ler...
TypeScript
Apache License 2.0
thi-ng/umbrella
build: add npm registry for publish script
1
build
null
76,605
22.09.2018 19:01:47
-7,200
0b4f386ce54124260033dd6e4cae2264f62f53ef
doc: Add languages to README.md
[ { "change_type": "MODIFY", "diff": "@@ -20,6 +20,7 @@ NLP.js\n- Natural Language Processing Classifier, to classify utterance into intents.\n- Natural Language Generation Manager, so from intents and conditions it can generate an answer.\n- NLP Manager: a tool able to manage several languages, the Named Ent...
JavaScript
MIT License
axa-group/nlp.js
doc: Add languages to README.md
1
doc
null
76,605
22.09.2018 19:02:55
-7,200
77b60e7b39560ef969bc4aa4f8c3e66b95124b67
doc: Add Tamil to language support
[ { "change_type": "MODIFY", "diff": "@@ -33,6 +33,7 @@ Inside Sentiment Analysis, there are three possible algoritms: AFINN, Senticon a\n| Slovene (sl) | | X | |\n| Spanish (es) | X | X | |\n| Swedish (sv) | X | X | |\n+| Tamil (ta) | | X | |\n| Turkish (tr) | | X | |\n## Sentiment Analysis\n@@ -65,6 +66,7 @...
JavaScript
MIT License
axa-group/nlp.js
doc: Add Tamil to language support
1
doc
null
679,913
23.09.2018 01:13:34
-3,600
ed3f10b56156e43936c0c8d4105084bf87944711
docs(hdom): fix/update changelog
[ { "change_type": "MODIFY", "diff": "@@ -4,38 +4,39 @@ All notable changes to this project will be documented in this file.\nSee [Conventional Commits](https://conventionalcommits.org) for commit guidelines.\n<a name=\"5.0.0\"></a>\n-# [5.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom@5.0.0-alp...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs(hdom): fix/update changelog
1
docs
hdom
679,913
23.09.2018 01:33:28
-3,600
ff5e5550caa69fc4089f3c455cf2ba2eb491f452
docs(rstream): re-org readme
[ { "change_type": "MODIFY", "diff": "This project is part of the\n[@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo.\n+<!-- TOC depthFrom:2 depthTo:3 -->\n+\n+- [About](#about)\n+- [Support packages](#support-packages)\n+- [Conceptual differences to RxJS](#conceptual-differences-to-rxjs)\n+- [...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs(rstream): re-org readme
1
docs
rstream
679,913
23.09.2018 13:38:19
-3,600
1d8eeb4d0a5c7d6927ef4a037f3c839ecf26dbfc
feat(hiccup): emmet class & class attrib merging in normalize() now same behavior as hdom's normalizeElement() update tests
[ { "change_type": "MODIFY", "diff": "@@ -222,8 +222,10 @@ const _serializeIter = (iter: Iterable<any>, ctx: any, esc: boolean, span: boole\n}\nconst normalize = (tag: any[]) => {\n- let el = tag[0], match, id, clazz;\n- const attribs: any = {};\n+ let el = tag[0];\n+ let match, id, clazz;\n+ const hasAttribs...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(hiccup): emmet class & class attrib merging in normalize() - now same behavior as hdom's normalizeElement() - update tests
1
feat
hiccup
679,913
23.09.2018 14:20:54
-3,600
4a2f79b820c374d348636771ea6759c701079d1b
refactor(hdom): minor refactoring, fix/update docs extract resolveRoot() helper fn update start(), renderOnce() update various doc strings
[ { "change_type": "MODIFY", "diff": "import { IObjectOf } from \"@thi.ng/api/api\";\nexport interface ILifecycle {\n+ /**\n+ * Component init method. Called with the actual DOM element,\n+ * hdom user context and any other args when the component is\n+ * first used, but **after** `render()` has been called o...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(hdom): minor refactoring, fix/update docs - extract resolveRoot() helper fn - update start(), renderOnce() - update various doc strings
1
refactor
hdom
217,922
23.09.2018 23:04:23
-7,200
7976f56ba4c2a064605ae225ac508bce6c1e8ebb
feat: checkboxes and bulk addition in search, plus lists state fixes TODO: proper loader for bulk items addition in search results
[ { "change_type": "MODIFY", "diff": "@@ -57,7 +57,8 @@ export class GarlandToolsService {\n* @returns {any}\n*/\npublic getFishingSpot(id: number): any {\n- return this.gt.fishing.index[id];\n+ return {};\n+ // return this.gt.fishing.index[id];\n}\n/**\n", "new_path": "apps/client/src/app/core/api/garlan...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat: checkboxes and bulk addition in search, plus lists state fixes TODO: proper loader for bulk items addition in search results
1
feat
null
791,834
24.09.2018 12:16:39
25,200
14d6450656fdb11811042fbe7585960f43caafdd
core: replace WebInspector traceparser with native JSON.parse
[ { "change_type": "MODIFY", "diff": "@@ -12,7 +12,6 @@ const stream = require('stream');\nconst Simulator = require('./dependency-graph/simulator/simulator');\nconst lanternTraceSaver = require('./lantern-trace-saver');\nconst Metrics = require('./traces/pwmetrics-events');\n-const TraceParser = require('./t...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core: replace WebInspector traceparser with native JSON.parse (#6099)
1
core
null
730,438
24.09.2018 12:54:18
25,200
8097c460cda5e76bf896942e53c1239d0c0f47ab
fix(ciscospark): fix widget call controls container CSS issue
[ { "change_type": "MODIFY", "diff": "justify-content: space-between;\nalign-items: center;\nflex-wrap: wrap;\n+ box-sizing: border-box;\n}\n.controlItem {\n- padding: 0 10px 10px;\n+ padding: 0 0;\nflex: 0 1 auto;\n}\n", "new_path": "packages/node_modules/@ciscospark/react-component-button-controls/src/s...
JavaScript
MIT License
webex/react-widgets
fix(ciscospark): fix widget call controls container CSS issue
1
fix
ciscospark
791,834
24.09.2018 14:32:34
25,200
67302a07cc778ae459c09ead9e4e3b09d2210460
core: update chrome-devtools-frontend to latest
[ { "change_type": "MODIFY", "diff": "@@ -91,7 +91,7 @@ function getEffectiveRule(property, node, {\nconst matchingRule = nodeStyles\n.find(style =>\n// the applicable property will be the only one that isn't in the \"overloaded\" state.\n- style.allProperties.some(item => item.name === property &&\n+ style.a...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core: update chrome-devtools-frontend to latest (#6101)
1
core
null
791,723
24.09.2018 15:21:54
25,200
ce96d7686c7e4255c483e9b9010c58a301bad690
core(asset-saver): stop creating screenshot files during --save-assets
[ { "change_type": "MODIFY", "diff": "@@ -17,8 +17,6 @@ last-run-results.html\n*.trace.json\n*.devtoolslog.json\n-*.screenshots.html\n-*.screenshots.json\n*.report.html\n*.report.dom.html\n*.report.json\n", "new_path": ".gitignore", "old_path": ".gitignore" }, { "change_type": "MODIFY", "d...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(asset-saver): stop creating screenshot files during --save-assets (#6066)
1
core
asset-saver
791,723
24.09.2018 15:30:34
25,200
fed4a88c842b2004793902a1f614986cceeb3d96
report(vulnerable-jslibs): tweak snyk link for highlighted matches
[ { "change_type": "MODIFY", "diff": "@@ -153,7 +153,7 @@ class NoVulnerableLibrariesAudit extends Audit {\nvulnCount,\ndetectedLib: {\ntext: lib.name + '@' + version,\n- url: `https://snyk.io/vuln/npm:${lib.npmPkgName}?lh@${version}`,\n+ url: `https://snyk.io/vuln/npm:${lib.npmPkgName}?lh=${version}`,\ntype:...
JavaScript
Apache License 2.0
googlechrome/lighthouse
report(vulnerable-jslibs): tweak snyk link for highlighted matches (#6096)
1
report
vulnerable-jslibs