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 ⌀ |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
791,760 | 24.09.2018 16:44:52 | 14,400 | f0e6dd9e7e94602e55b2d19a2eacfa349b47113a | core(driver): add check to make sure Runtime.evaluate result exists | [
{
"change_type": "MODIFY",
"diff": "@@ -311,15 +311,23 @@ class Driver {\ncontextId,\n};\n- this.sendCommand('Runtime.evaluate', evaluationParams).then(result => {\n+ this.sendCommand('Runtime.evaluate', evaluationParams).then(response => {\nclearTimeout(asyncTimeout);\n- const value = result.result.value;\... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(driver): add check to make sure Runtime.evaluate result exists (#6089) | 1 | core | driver |
67,482 | 24.09.2018 19:09:15 | 25,200 | 8390e4d352b63e7de7be2f06e0a591ef5dbb59b5 | doc(readme): add npm badge and reorganize badges | [
{
"change_type": "MODIFY",
"diff": "[](https://opensource.org/licenses/MIT)\n-[](https://lernajs.io/)\n-[: add npm badge and reorganize badges | 1 | doc | readme |
679,913 | 24.09.2018 19:25:11 | -3,600 | 39f7fb0c630ef64c41f178781927d034644a5df8 | build: add `preserveConstEnums` to global tsconfig | [
{
"change_type": "MODIFY",
"diff": "\"target\": \"es6\",\n\"experimentalDecorators\": true,\n\"noUnusedParameters\": true,\n- \"noUnusedLocals\": true\n+ \"noUnusedLocals\": true,\n+ \"preserveConstEnums\": true\n},\n\"exclude\": [\n\"./**/node_modules\"\n",
"new_path": "tsconfig.json",
"old_path": ... | TypeScript | Apache License 2.0 | thi-ng/umbrella | build: add `preserveConstEnums` to global tsconfig | 1 | build | null |
679,913 | 24.09.2018 19:28:07 | -3,600 | c3e8d689ab8181910e660b1e411205901e2fe997 | perf(csp): `State` => const enum
export `__State` for reverse lookups | [
{
"change_type": "MODIFY",
"diff": "@@ -2,12 +2,17 @@ import { IID, ILength, IRelease } from \"@thi.ng/api/api\";\nimport { Channel } from \"./channel\";\n-export enum State {\n+export const enum State {\nOPEN,\nCLOSED,\nDONE,\n}\n+/**\n+ * Reverse lookup for `State` enums\n+ */\n+export const __State = (<a... | TypeScript | Apache License 2.0 | thi-ng/umbrella | perf(csp): `State` => const enum
- export `__State` for reverse lookups | 1 | perf | csp |
679,913 | 24.09.2018 19:29:52 | -3,600 | a7b9a427a50bb3f186302b76e57a0447a43a0005 | perf(pointfree-lang): `NodeType` => const enum
export `__NodeType` for reverse lookups | [
{
"change_type": "MODIFY",
"diff": "@@ -13,7 +13,7 @@ export interface VisitorState {\nword: boolean;\n}\n-export enum NodeType {\n+export const enum NodeType {\nSYM = 1,\nWORD,\n@@ -31,6 +31,11 @@ export enum NodeType {\nSTACK_COMMENT,\n};\n+/**\n+ * Reverse lookup for `NodeType` enums\n+ */\n+export const... | TypeScript | Apache License 2.0 | thi-ng/umbrella | perf(pointfree-lang): `NodeType` => const enum
- export `__NodeType` for reverse lookups | 1 | perf | pointfree-lang |
679,913 | 24.09.2018 19:30:41 | -3,600 | 7ac83c6fd0bb2f93773f005a939b24fc4f9a8864 | perf(rstream): `State` => const enum
export `__State` for reverse lookups | [
{
"change_type": "MODIFY",
"diff": "@@ -4,7 +4,7 @@ import { Transducer } from \"@thi.ng/transducers/api\";\nimport { Stream } from \"./stream\";\nimport { Subscription } from \"./subscription\";\n-export enum State {\n+export const enum State {\nIDLE,\nACTIVE,\nDONE,\n@@ -12,6 +12,11 @@ export enum State {... | TypeScript | Apache License 2.0 | thi-ng/umbrella | perf(rstream): `State` => const enum
- export `__State` for reverse lookups | 1 | perf | rstream |
679,913 | 24.09.2018 19:31:51 | -3,600 | 8e4fc90258faacccdfd654f6eae0c7297e8e4202 | perf(rstream-gestures): `GestureType` => const enum
export `__GestureType` for reverse lookups | [
{
"change_type": "MODIFY",
"diff": "@@ -3,7 +3,7 @@ import { fromEvent } from \"@thi.ng/rstream/from/event\";\nimport { merge, StreamMerge } from \"@thi.ng/rstream/stream-merge\";\nimport { map } from \"@thi.ng/transducers/xform/map\";\n-export enum GestureType {\n+export const enum GestureType {\nSTART,\nM... | TypeScript | Apache License 2.0 | thi-ng/umbrella | perf(rstream-gestures): `GestureType` => const enum
- export `__GestureType` for reverse lookups | 1 | perf | rstream-gestures |
679,913 | 24.09.2018 19:32:23 | -3,600 | fc6a4d323670d783061854fda9d017a6c9fe5a23 | perf(rstream-log): `Level` => const enum
export `__Level` for reverse lookups | [
{
"change_type": "MODIFY",
"diff": "import { IID } from \"@thi.ng/api/api\";\nimport { ISubscribable } from \"@thi.ng/rstream/api\";\n-export enum Level {\n+export const enum Level {\nFINE,\nDEBUG,\nINFO,\n@@ -10,6 +10,11 @@ export enum Level {\nNONE,\n}\n+/**\n+ * Reverse lookup for `Level` enums\n+ */\n+e... | TypeScript | Apache License 2.0 | thi-ng/umbrella | perf(rstream-log): `Level` => const enum
- export `__Level` for reverse lookups | 1 | perf | rstream-log |
679,913 | 24.09.2018 19:34:36 | -3,600 | 665564c7d27fcb60aafa367c301215ead47f52be | feat(sax): update parse() to return iterator if input given (optional)
now same behavior as most other transducers
`State` => const enum
update readme | [
{
"change_type": "MODIFY",
"diff": "@@ -56,9 +56,13 @@ src=`<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<b2 foo=\"bar\" />\n</a>`\n+// sax.parse() returns a transducer\ndoc = [...tx.iterator(sax.parse(), src)]\n-// (see description of `type` values further below)\n+// ...or returns iterator if input is give... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(sax): update parse() to return iterator if input given (optional)
- now same behavior as most other transducers
- `State` => const enum
- update readme | 1 | feat | sax |
679,913 | 24.09.2018 23:51:12 | -3,600 | c0a8926b535abc83f51e2d50daa9e56a414ce470 | fix(examples): rename `prepare` script alias, add commits.json
rename `prepare` => `prep` to avoid autoexec during `yarn install`
add getCommits() to retrieve commits for caching and
write to `commits.json`
commits.json stub file | [
{
"change_type": "ADD",
"diff": "+[]\n\\ No newline at end of file\n",
"new_path": "examples/commit-table-ssr/commits.json",
"old_path": null
},
{
"change_type": "MODIFY",
"diff": "\"license\": \"Apache-2.0\",\n\"scripts\": {\n\"clean\": \"rm -rf .cache build out\",\n- \"prepare\": \"yar... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(examples): rename `prepare` script alias, add commits.json (#46)
- rename `prepare` => `prep` to avoid autoexec during `yarn install`
- add getCommits() to retrieve commits for caching and
write to `commits.json`
- commits.json stub file | 1 | fix | examples |
679,913 | 24.09.2018 23:52:16 | -3,600 | 888ea747c3c4a8f5d0f75a631cb4595482eb5d2a | fix(examples): rename `prepare` script aliases
avoid autoexec during `yarn install` | [
{
"change_type": "MODIFY",
"diff": "\"license\": \"Apache-2.0\",\n\"scripts\": {\n\"clean\": \"rm -rf .cache build out\",\n- \"prepare\": \"yarn clean && mkdir -p out && cp foo.json out\",\n- \"build\": \"yarn prepare && parcel build index.html -d out --no-source-maps --no-cache --detailed-report --public-u... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(examples): rename `prepare` script aliases
- avoid autoexec during `yarn install` | 1 | fix | examples |
679,913 | 24.09.2018 23:53:10 | -3,600 | 8cbfb97e586595a308654907c7344914318adcc0 | fix(strings): rename number parsers
rename to `maybeParseInt` / `maybeParseFloat` | [
{
"change_type": "MODIFY",
"diff": "-export const parseInt = (x: string, defaultVal = 0, radix = 10) => {\n+export const maybeParseInt = (x: string, defaultVal: any = 0, radix = 10) => {\nconst n = parseInt(x, radix);\nreturn isNaN(n) ? defaultVal : n;\n};\n-export const parseFloat = (x: string, defaultVal ... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(strings): rename number parsers
- rename to `maybeParseInt` / `maybeParseFloat` | 1 | fix | strings |
679,913 | 25.09.2018 00:03:33 | -3,600 | cb263002a3438da99efcea81cf6df989a4687f95 | feat(examples): add xml-converter example | [
{
"change_type": "ADD",
"diff": "+.cache\n+out\n+node_modules\n+yarn.lock\n+*.js\n",
"new_path": "examples/xml-converter/.gitignore",
"old_path": null
},
{
"change_type": "ADD",
"diff": "+# xml-converter\n+\n+[Live demo](http://demo.thi.ng/umbrella/xml-converter/)\n+\n+This example uses\... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(examples): add xml-converter example | 1 | feat | examples |
679,913 | 25.09.2018 02:08:58 | -3,600 | 5119b67eb593c1b8b5333f901dacfc0eb61cb775 | feat(sax): add opt support for boolean attribs, add tests | [
{
"change_type": "MODIFY",
"diff": "@@ -27,8 +27,23 @@ export interface ParseOpts {\n* Default: false\n*/\ntrim: boolean;\n+ /**\n+ * If `true`, HTML5 boolean attributes are supported.\n+ *\n+ * Default: false\n+ */\n+ boolean: boolean;\n+ /**\n+ * If given, element names in this set are allowed to omit the... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(sax): add opt support for boolean attribs, add tests | 1 | feat | sax |
679,913 | 25.09.2018 02:09:32 | -3,600 | 0cddc7d678bb8c2fc10e6f761c6cdb6edd8b33ac | feat(example): update xml-converter (add boolean attrib support) | [
{
"change_type": "MODIFY",
"diff": "<div>\n<h3>Current limitations</h3>\n<ul>\n- <li>No HTML quirks allowed (well formed XML only)</li>\n- <li>No HTML boolean attribs</li>\n+ <li>Nicer output formatting needed</li>\n+ <li>No HTML quirks supported (well formed XML only)</li>\n+ <li><del>No HTML boolean attri... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(example): update xml-converter (add boolean attrib support) | 1 | feat | example |
730,429 | 25.09.2018 10:42:33 | 14,400 | 98be8111314b358f552039c3acafe17c584a60ca | fix(message-composer): export missing string constant | [
{
"change_type": "MODIFY",
"diff": "-const UPDATE_TEXTAREA_FOCUS = 'UPDATE_TEXTAREA_FOCUS';\n+export const UPDATE_TEXTAREA_FOCUS = 'UPDATE_TEXTAREA_FOCUS';\nexport function blurTextArea() {\nreturn {\n",
"new_path": "packages/node_modules/@ciscospark/react-container-message-composer/src/actions.js",
... | JavaScript | MIT License | webex/react-widgets | fix(message-composer): export missing string constant | 1 | fix | message-composer |
730,429 | 25.09.2018 10:43:14 | 14,400 | eecfe9f86d28f577153de7db6a84ac03b27b7816 | fix(r-m-activities): add files directories to package.json | [
{
"change_type": "MODIFY",
"diff": "\"license\": \"MIT\",\n\"repository\": \"https://github.com/webex/react-ciscospark\",\n\"files\": [\n+ \"src\",\n\"dist\",\n- \"src\"\n+ \"cjs\",\n+ \"es\"\n]\n}\n",
"new_path": "packages/node_modules/@ciscospark/redux-module-activities/package.json",
"old_path": ... | JavaScript | MIT License | webex/react-widgets | fix(r-m-activities): add files directories to package.json | 1 | fix | r-m-activities |
730,429 | 25.09.2018 10:45:26 | 14,400 | dabfe19b573cfe90646ec543cd1ac5df878b9a4c | fix(spark-widget-base): remove unused enhancers option
This was causing a spread issue when used via npm. | [
{
"change_type": "MODIFY",
"diff": "@@ -36,10 +36,9 @@ function constructReducers(reducers) {\n* HOC for injecting an initial Redux state from reducers and enhancers\n* @param {Object} options\n* @param {Object} options.reducers object of reducers\n- * @param {Object} options.enhancers enhancers that will b... | JavaScript | MIT License | webex/react-widgets | fix(spark-widget-base): remove unused enhancers option
This was causing a spread issue when used via npm. | 1 | fix | spark-widget-base |
679,913 | 25.09.2018 14:09:53 | -3,600 | 0cce048818e61bc3f7606082e870531d5af3fee1 | feat(strings): add splice(), refactor repeat(), add tests | [
{
"change_type": "MODIFY",
"diff": "@@ -21,7 +21,7 @@ This project is part of the\n## About\nVarious higher-order, but low-level string formatting & utility\n-functions, some memoized. WIP / Alpha.\n+functions, some memoized. WIP / Alpha. Please sources for now.\n## Installation\n",
"new_path": "package... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(strings): add splice(), refactor repeat(), add tests | 1 | feat | strings |
679,913 | 25.09.2018 14:13:30 | -3,600 | 79cf49e1d471a48e0ad5e7e18de32d32bdea13c3 | feat(examples): add value coercions & re-formatter (xml-converter) | [
{
"change_type": "MODIFY",
"diff": "<body class=\"ma0 pa2 sans-serif\">\n<div id=\"app\"></div>\n<div>\n- <h3>Current limitations</h3>\n+ <h3>Current features</h3>\n<ul>\n- <li>Nicer output formatting needed</li>\n- <li>No HTML quirks supported (well formed XML only)</li>\n- <li><del>No HTML boolean attribs... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(examples): add value coercions & re-formatter (xml-converter) | 1 | feat | examples |
679,913 | 25.09.2018 14:35:36 | -3,600 | a169d2dfe618ae7001e40e38c710aa848615ca42 | fix(examples): add missing index.html | [
{
"change_type": "ADD",
"diff": "+<!DOCTYPE html>\n+<html lang=\"en\">\n+\n+<head>\n+ <meta http-equiv=\"Content-Type\" content=\"text/html;charset=UTF-8\">\n+ <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n+ <link rel=\"stylesheet\" href=\"https://unpkg.com/tachyons@4.11.1/css/tachyons.min.css\... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(examples): add missing index.html (#46) | 1 | fix | examples |
679,913 | 25.09.2018 15:08:50 | -3,600 | b8a93ea83338c9e97fb78b8d9bf2a8ce23eb9fae | fix(examples): add null check & parseAttrib() in transformCSS() | [
{
"change_type": "MODIFY",
"diff": "@@ -40,7 +40,7 @@ const transformCSS = (css: string) =>\ncss.split(\";\").reduce(\n(acc, p) => {\nconst [k, v] = p.split(\":\");\n- acc[k.trim()] = v.trim();\n+ (v != null) && (acc[k.trim()] = parseAttrib([k, v.trim()])[1]);\nreturn acc;\n},\n{}\n",
"new_path": "examp... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(examples): add null check & parseAttrib() in transformCSS() | 1 | fix | examples |
679,913 | 25.09.2018 17:13:32 | -3,600 | 823d828da193ceb72d7dc8a50dcc7e4c801bdb8a | fix(transducers): fix matchLast(), fix & update return match*() types
use iterator() instead of iterator1() for matchLast()
fix return type decls for both matchFirst() / matchLast()
update doc strings | [
{
"change_type": "MODIFY",
"diff": "@@ -14,12 +14,28 @@ import { take } from \"./take\";\n* ```\n*\n* Yields none or only the first value which passed the predicate check\n- * and then causes early termination.\n+ * and then causes early termination. If `src` input is given, returns\n+ * first match found (... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(transducers): fix matchLast(), fix & update return match*() types
- use iterator() instead of iterator1() for matchLast()
- fix return type decls for both matchFirst() / matchLast()
- update doc strings | 1 | fix | transducers |
679,913 | 25.09.2018 18:07:59 | -3,600 | ad1bac8f71ff7c00f712763cba3b555fbc6f6f51 | refactor(examples): refactor hiccup formatter, minor fixes | [
{
"change_type": "MODIFY",
"diff": "<meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\" />\n<title>xml-converter</title>\n<link href=\"https://unpkg.com/tachyons@4.9.1/css/tachyons.min.css\" rel=\"stylesheet\" />\n+ <!-- <link href=\"tachyons.min.css\" rel=\"stylesheet\" /> -->\n<style>\n</style>\n</he... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(examples): refactor hiccup formatter, minor fixes | 1 | refactor | examples |
791,690 | 26.09.2018 08:48:05 | 18,000 | f5c043dc633fd53b44392f66479e76a1af4f3d6d | core: add emulatedFormFactor setting | [
{
"change_type": "MODIFY",
"diff": "@@ -57,7 +57,7 @@ function getFlags(manualArgv) {\n.group(\n[\n'save-assets', 'list-all-audits', 'list-trace-categories', 'additional-trace-categories',\n- 'config-path', 'preset', 'chrome-flags', 'port', 'hostname',\n+ 'config-path', 'preset', 'chrome-flags', 'port', 'ho... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core: add emulatedFormFactor setting (#6098) | 1 | core | null |
217,922 | 26.09.2018 10:52:29 | -7,200 | 1cd9c4179b32367b9927f502c481a03b956eb929 | feat: proper implementation for lists reordering using ngx-dnd | [
{
"change_type": "MODIFY",
"diff": "@@ -34,6 +34,7 @@ import { AngularFireDatabaseModule } from '@angular/fire/database';\nimport { AngularFireAuthModule } from '@angular/fire/auth';\nimport { AngularFirestoreModule } from '@angular/fire/firestore';\nimport { XivapiClientModule } from '@xivapi/angular-clien... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: proper implementation for lists reordering using ngx-dnd
https://swimlane.github.io/ngx-dnd/ | 1 | feat | null |
791,723 | 26.09.2018 12:03:49 | 25,200 | a097a234847c175b14da3ed0b4c7ab74c0559ab4 | report(psi): remove redundant varience disclaimer | [
{
"change_type": "MODIFY",
"diff": "@@ -112,7 +112,7 @@ class PerformanceCategoryRenderer extends CategoryRenderer {\n/**\n* @param {LH.ReportResult.Category} category\n* @param {Object<string, LH.Result.ReportGroup>} groups\n- * @param {string=} environment 'PSI' and undefined are the only valid values\n+ ... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | report(psi): remove redundant varience disclaimer (#6110) | 1 | report | psi |
730,413 | 26.09.2018 13:23:30 | 14,400 | e9259605451197647e527713069b99b352675be2 | feat(widget-recents): implement new IA for spaces list | [
{
"change_type": "MODIFY",
"diff": "\"testURL\": \"http://localhost\",\n\"transformIgnorePatterns\": [\"<rootDir>/node_modules/\"],\n\"moduleNameMapper\": {\n- \"^.+\\\\.(css|less)$\": \"identity-obj-proxy\",\n+ \"^.+\\\\.(css|scss|less)$\": \"identity-obj-proxy\",\n\"^.+\\\\.(mp3|wav)$\": \"<rootDir>/__moc... | JavaScript | MIT License | webex/react-widgets | feat(widget-recents): implement new IA for spaces list | 1 | feat | widget-recents |
679,913 | 26.09.2018 16:06:35 | -3,600 | 4b78c8a3c858fac6756fec6b47b8d91b58f20bc3 | minor(examples): xml-converter | [
{
"change_type": "MODIFY",
"diff": "@@ -165,7 +165,7 @@ src.next(`<html lang=\"en\">\n<title>foo</title>\n</head>\n<body class=\"foo bar\">\n- <h1 style=\"color:red;bg:blue\">\n+ <h1 style=\"color:red\">\nHTML & Hiccup walk into a bar...\n</h1>\n<div id=\"app\"></div>\n",
"new_path": "examples/xml-c... | TypeScript | Apache License 2.0 | thi-ng/umbrella | minor(examples): xml-converter | 1 | minor | examples |
791,690 | 26.09.2018 17:04:52 | 18,000 | 72b59c55302ca3669b01e1b82e9db1dcda328155 | core(content-width): not applicable on desktop | [
{
"change_type": "MODIFY",
"diff": "@@ -19,23 +19,37 @@ class ContentWidth extends Audit {\ndescription: 'If the width of your app\\'s content doesn\\'t match the width ' +\n'of the viewport, your app might not be optimized for mobile screens. ' +\n'[Learn more](https://developers.google.com/web/tools/light... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(content-width): not applicable on desktop (#5893) | 1 | core | content-width |
730,429 | 26.09.2018 17:06:04 | 14,400 | ee6a45ca472c7a6baeefa76b4851170b6b189461 | feat(scripts): transpile widgets using webpack | [
{
"change_type": "MODIFY",
"diff": "-const {transpile} = require('../../utils/build');\n+const {transpile, webpackTranspile} = require('../../utils/build');\nmodule.exports = {\ncommand: 'transpile <packageName> [packagePath]',\n@@ -6,11 +6,12 @@ module.exports = {\nbuilder: {},\nhandler: ({packageName, pac... | JavaScript | MIT License | webex/react-widgets | feat(scripts): transpile widgets using webpack | 1 | feat | scripts |
791,723 | 26.09.2018 17:57:43 | 25,200 | e15f87d89930788edef6829a1762d28a16222def | docs(releasing): minor updates | [
{
"change_type": "MODIFY",
"diff": "@@ -7,7 +7,7 @@ assets/\nbuild/\ncoverage/\n-lighthouse-core/scripts/\n+lighthouse-core/scripts/*\nlighthouse-core/test/\nlighthouse-core/third_party/src/\nlighthouse-viewer/\n@@ -18,21 +18,13 @@ lighthouse-logger/\n# keep the chrome launcher script\n!lighthouse-core/scri... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | docs(releasing): minor updates (#5345) | 1 | docs | releasing |
791,834 | 27.09.2018 13:45:52 | 25,200 | 304bbec53213ef0e8f027155d01ab2fd27b33135 | deps: update to tsc 3.1.1 | [
{
"change_type": "MODIFY",
"diff": "@@ -97,7 +97,6 @@ class Interactive extends MetricArtifact {\n* @return {number}\n*/\nstatic getLastLongTaskEndTime(nodeTimings, duration = 50) {\n- // @ts-ignore TS can't infer how the object invariants change\nreturn Array.from(nodeTimings.entries())\n.filter(([node, ti... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | deps: update to tsc 3.1.1 (#6126) | 1 | deps | null |
791,723 | 27.09.2018 15:40:26 | 25,200 | df9481c2ec0e9168febb582e47dfda6583922dc0 | misc: tweaks for devtools client | [
{
"change_type": "MODIFY",
"diff": "/* Removing too much whitespace */\n.lh-audit-group--metrics {\n- margin-top: -28px;\n+ margin-top: calc(var(--circle-size)/2 * -1);\nborder-bottom: none;\n}\n",
"new_path": "lighthouse-core/report/html/report-styles.css",
"old_path": "lighthouse-core/report/html/... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | misc: tweaks for devtools client (#6127) | 1 | misc | null |
679,913 | 27.09.2018 16:20:29 | -3,600 | 95ba4f6d9311779196824a0cbe855f7fedd811dd | feat(examples): extend xml-converter, add CLI version, update docs | [
{
"change_type": "ADD",
"diff": "+digraph g {\n+ rankdir=LR;\n+ node[fontname=\"Inconsolata\", fontsize=\"11\"];\n+ edge[arrowsize=\"0.75\", fontname=\"Inconsolata\", fontsize=\"9\"];\n+\n+ rank=same {\n+ prettyPrint;\n+ doubleQuote;\n+ trailingComma;\n+ removeTags;\n+ removeAttribs;\n+ xml;\n+ }\n+\n+ pret... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(examples): extend xml-converter, add CLI version, update docs | 1 | feat | examples |
679,913 | 27.09.2018 16:25:10 | -3,600 | 71cbd19a5615506ca4055056dd5131902a24c19a | fix(examples): fix attrib format | [
{
"change_type": "MODIFY",
"diff": "@@ -114,7 +114,7 @@ format.add(\"obj\", (opts, res, x) => {\nres += \"{\" + opts.ws + formatPair({ ...opts, indent: 0 }, x, keys[0]) + opts.ws + \"}\";\n} else {\nconst outer = spaces(opts.indent);\n- res += opts.prefix + opts.lineSep;\n+ res += opts.prefix + \"{\" + opts... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(examples): fix attrib format | 1 | fix | examples |
791,690 | 27.09.2018 16:51:12 | 18,000 | 54c2b5df7fdcbc289c2ac5942e2d17efa5a8194c | core(unminified-javascript): replace esprima with custom tokenizer | [
{
"change_type": "MODIFY",
"diff": "const ByteEfficiencyAudit = require('./byte-efficiency-audit');\nconst UnusedCSSRules = require('./unused-css-rules');\nconst i18n = require('../../lib/i18n/i18n.js');\n+const computeTokenLength = require('../../lib/minification-estimator').computeCSSTokenLength;\nconst U... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(unminified-javascript): replace esprima with custom tokenizer (#5925) | 1 | core | unminified-javascript |
791,760 | 27.09.2018 19:24:45 | 14,400 | 2f00f88e2ac061e4753f45dba3f5a910656b17f2 | docs(readme): change image references be commit hash raw gh urls | [
{
"change_type": "MODIFY",
"diff": "@@ -45,6 +45,15 @@ If you have a contribution for our [documentation](https://developers.google.com\n1. Ensure that your code adheres to the existing style in the sample to which you are contributing.\n1. Submit a pull request.\n+## Adding Images to a Readme\n+\n+If you a... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | docs(readme): change image references be commit hash raw gh urls (#6116) | 1 | docs | readme |
679,913 | 27.09.2018 20:55:38 | -3,600 | 5cfbf70da641c8239445435fb624ede35c3a793f | feat(examples): update css | [
{
"change_type": "MODIFY",
"diff": "<meta http-equiv=\"Content-Type\" content=\"text/html;charset=UTF-8\" />\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n<meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\" />\n- <title>xml-converter</title>\n+ <title>xml/html/svg-to-hi... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(examples): update css | 1 | feat | examples |
679,913 | 28.09.2018 01:31:38 | -3,600 | 6db26c2b2ff8db80dc3dfdce202737b26f2726c0 | feat(examples): add copy-to-clipboard, extract UI config & components
add copy button to place result tree in clipboard
move all components to `ui.ts`
extract UI config to simplify components
update transformTree() to check for empty input | [
{
"change_type": "MODIFY",
"diff": "<link href=\"https://unpkg.com/tachyons@4.9.1/css/tachyons.min.css\" rel=\"stylesheet\" />\n</head>\n-<body class=\"ma0 pa0 sans-serif fw2 f7 f6-ns bg-moon-gray white\">\n- <header class=\"ph3 pv2 bg-light-green dark-gray\">\n+<body class=\"ma0 pa0 sans-serif fw2 f7 f6-ns... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(examples): add copy-to-clipboard, extract UI config & components
- add copy button to place result tree in clipboard
- move all components to `ui.ts`
- extract UI config to simplify components
- update transformTree() to check for empty input | 1 | feat | examples |
679,913 | 28.09.2018 02:23:39 | -3,600 | d964865e982043136aa05e6922ce5860c32b7a68 | docs(hdom): add xml-converter example link & screenshot | [
{
"change_type": "ADD",
"diff": "Binary files /dev/null and b/assets/screenshots/xml-converter.png differ\n",
"new_path": "assets/screenshots/xml-converter.png",
"old_path": "assets/screenshots/xml-converter.png"
},
{
"change_type": "MODIFY",
"diff": "@@ -28,6 +28,7 @@ This project is pa... | TypeScript | Apache License 2.0 | thi-ng/umbrella | docs(hdom): add xml-converter example link & screenshot | 1 | docs | hdom |
679,913 | 28.09.2018 04:57:05 | -3,600 | b5ed2545add8f8a9d3cc50b9dcad3387aae95872 | feat(vectors): add vector ops codegen, update basic vec2/3/4 ops | [
{
"change_type": "MODIFY",
"diff": "@@ -18,12 +18,24 @@ export type VecOp1<T> = (v: Vec, i?: number, s?: number) => T;\n*/\nexport type VecOp2<T> = (a: Vec, b: ReadonlyVec, ia?: number, ib?: number, sa?: number, sb?: number) => T;\n+/**\n+ * A vector operation involving a vector and a scalar. The vector mig... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(vectors): add vector ops codegen, update basic vec2/3/4 ops (#51) | 1 | feat | vectors |
679,913 | 28.09.2018 05:22:34 | -3,600 | 9bee7f853622233fb379c937c85451e890d86101 | refactor(vectors): use codegen for unary vec2/3/4 ops | [
{
"change_type": "MODIFY",
"diff": "@@ -18,7 +18,8 @@ import {\nvbinop,\nvbinopN,\nvbinopO,\n- vbinopON\n+ vbinopON,\n+ vuniop\n} from \"./codegen\";\nimport { $iter, declareIndices } from \"./common\";\nimport {\n@@ -117,33 +118,20 @@ export const subN2o = vbinopON(2, \"-\");\nexport const mulN2o = vbinopO... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(vectors): use codegen for unary vec2/3/4 ops | 1 | refactor | vectors |
791,690 | 28.09.2018 09:05:58 | 18,000 | 5745790cd4e0d2b3b552b5a8a91d26036f21ac19 | core(network-analyzer): move throughput to NetworkAnalyzer | [
{
"change_type": "MODIFY",
"diff": "@@ -56,16 +56,6 @@ class UnusedBytes extends Audit {\n}\n}\n- /**\n- * @param {number} bytes\n- * @param {number} networkThroughput measured in bytes/second\n- * @return {number}\n- */\n- static bytesToMs(bytes, networkThroughput) {\n- const milliseconds = bytes / network... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(network-analyzer): move throughput to NetworkAnalyzer (#5900) | 1 | core | network-analyzer |
471,527 | 28.09.2018 09:11:46 | -7,200 | 5826475dd936703df617dc0f57e5c1b364846e5d | fix(eslint-config): Use babel-eslint to support dynamic imports | [
{
"change_type": "MODIFY",
"diff": "@@ -2,8 +2,10 @@ module.exports = {\nextends: [\n'eslint-config-airbnb-base',\n].map(require.resolve),\n+ parser: 'babel-eslint',\nenv: {\nbrowser: true,\n+ mocha: true,\n},\nrules: {\n'import/extensions': 'off',\n",
"new_path": "packages/eslint-config/index.js",
... | JavaScript | MIT License | open-wc/open-wc | fix(eslint-config): Use babel-eslint to support dynamic imports | 1 | fix | eslint-config |
791,723 | 28.09.2018 11:22:34 | 25,200 | 08db09988a0f6811be8523c0381f66e53609e985 | misc: add cli module diagram | [
{
"change_type": "MODIFY",
"diff": "*/\n'use strict';\n-require('./bin.js').run();\n+require('./bin.js').begin();\n",
"new_path": "lighthouse-cli/index.js",
"old_path": "lighthouse-cli/index.js"
}
] | JavaScript | Apache License 2.0 | googlechrome/lighthouse | misc: add cli module diagram (#6129) | 1 | misc | null |
67,482 | 28.09.2018 12:35:13 | 25,200 | 16831358e3f28adbdb5fadc4d5184d210699b8b9 | fix(DI): alias registration param order and tests
There was a small bug in the alias registration fluent API for InterfaceSymbol as well as a number of incorrect tests. | [
{
"change_type": "MODIFY",
"diff": "@@ -129,21 +129,22 @@ export const DI = {\n};\nKey.register = function(container: IContainer, key?: Key<T>): IResolver<T> {\n+ const trueKey = key || Key;\nreturn configure({\ninstance(value: T): IResolver {\n- return container.registerResolver(Key, new Resolver(key || Ke... | TypeScript | MIT License | aurelia/aurelia | fix(DI): alias registration param order and tests (#202)
There was a small bug in the alias registration fluent API for InterfaceSymbol as well as a number of incorrect tests. | 1 | fix | DI |
791,834 | 28.09.2018 12:53:08 | 25,200 | 8b8cdbb78f47b08e1ac03d254815b930bb9b635d | core: await js-libraries detection | [
{
"change_type": "MODIFY",
"diff": "@@ -138,6 +138,14 @@ module.exports = [\n],\n},\n},\n+ 'js-libraries': {\n+ score: 1,\n+ details: {\n+ items: [{\n+ name: 'jQuery',\n+ }],\n+ },\n+ },\n},\n},\n];\n",
"new_path": "lighthouse-cli/test/smokehouse/dobetterweb/dbw-expectations.js",
"old_path": "lighth... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core: await js-libraries detection (#6141) | 1 | core | null |
791,723 | 28.09.2018 13:26:22 | 25,200 | 69d328db4de1dc8b1a4828fe4eefd21f81026091 | core(emulation): set desktop viewport to 1350x940 | [
{
"change_type": "MODIFY",
"diff": "@@ -33,8 +33,8 @@ const NEXUS5X_EMULATION_METRICS = {\n*/\nconst DESKTOP_EMULATION_METRICS = {\nmobile: false,\n- width: 1366,\n- height: 768,\n+ width: 1350,\n+ height: 940,\ndeviceScaleFactor: 1,\n};\n",
"new_path": "lighthouse-core/lib/emulation.js",
"old_path"... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(emulation): set desktop viewport to 1350x940 (#6131) | 1 | core | emulation |
679,913 | 28.09.2018 17:40:33 | -3,600 | 247dec027ba2e46a7d8876d151c7885469af39bb | refactor(vectors): generate more ops, move declareIndices()
redefine set(), setN(), pow(), min(), max() as part of defcommon()
remove obsolete op22/32/42()
move declareIndices() to codegen.ts
fix QUARTER_PI (typo)
remove codegen from main re-exports | [
{
"change_type": "MODIFY",
"diff": "@@ -88,6 +88,10 @@ export const ZERO4 = Object.freeze([0, 0, 0, 0]);\nexport type CommonOps = [\n+ // set, setN\n+ VecOp2<Vec>,\n+ VecOpN2<Vec>,\n+\n// add, sub, mul, div\nVecOp2<Vec>,\nVecOp2<Vec>,\n@@ -124,6 +128,11 @@ export type CommonOps = [\nVecOp1<Vec>,\nVecOp1<Vec... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(vectors): generate more ops, move declareIndices() (#51)
- redefine set(), setN(), pow(), min(), max() as part of defcommon()
- remove obsolete op22/32/42()
- move declareIndices() to codegen.ts
- fix QUARTER_PI (typo)
- remove codegen from main re-exports | 1 | refactor | vectors |
679,913 | 28.09.2018 18:01:50 | -3,600 | 8399ec2f16d3fd049ac126d4db06372ae5581c0c | docs(vectors): fix docstrings, hide CommonOpts type alias | [
{
"change_type": "MODIFY",
"diff": "@@ -6,8 +6,6 @@ export type ReadonlyVec = ArrayLike<number> & Iterable<number>;\nexport type Mat = NumericArray;\nexport type ReadonlyMat = ArrayLike<number> & Iterable<number>;\n-// FIXME update all VecOp* descriptions\n-\n/**\n* A vector operation involving only a singl... | TypeScript | Apache License 2.0 | thi-ng/umbrella | docs(vectors): fix docstrings, hide CommonOpts type alias | 1 | docs | vectors |
217,922 | 28.09.2018 23:09:33 | -7,200 | 258ece94a1396beda2bc70e80c1c260a524891ae | fix: fixed an issue with freshly created accounts | [
{
"change_type": "MODIFY",
"diff": "@@ -28,6 +28,7 @@ import { XivapiService } from '@xivapi/angular-client';\nimport { LoadAlarms } from '../core/alarms/+state/alarms.actions';\nimport { User } from 'firebase';\nimport { AngularFireAuth } from '@angular/fire/auth';\n+import { AuthFacade } from './auth.faca... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed an issue with freshly created accounts | 1 | fix | null |
791,690 | 28.09.2018 23:15:33 | 18,000 | 23633e465861eff4a16b37de9a40a9a81a1ea37b | tests: add angular test for JS minification | [
{
"change_type": "MODIFY",
"diff": "*/\n'use strict';\n+const fs = require('fs');\nconst assert = require('assert');\nconst {computeCSSTokenLength, computeJSTokenLength} = require('../../lib/minification-estimator');\n+const angularFullScript = fs.readFileSync(require.resolve('angular/angular.js'), 'utf8');... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | tests: add angular test for JS minification (#6138) | 1 | tests | null |
471,527 | 29.09.2018 00:45:04 | -7,200 | 02b63ab573a21e35b1ee6230667a257d1a042653 | feat: initial release of | [
{
"change_type": "ADD",
"diff": "+MIT License\n+\n+Copyright (c) 2018 open-wc\n+\n+Permission is hereby granted, free of charge, to any person obtaining a copy\n+of this software and associated documentation files (the \"Software\"), to deal\n+in the Software without restriction, including without limitatio... | JavaScript | MIT License | open-wc/open-wc | feat: initial release of @open-wc/test | 1 | feat | null |
471,527 | 29.09.2018 00:59:48 | -7,200 | 7aa2dc08fc018f079dcc2ad3373602bc7b7016b9 | fix(storybook): html`` need to work if there are no dynamic parts | [
{
"change_type": "MODIFY",
"diff": "@@ -39,6 +39,10 @@ export function html(strings, ...values) {\nconst newVal = []; // result values to be passed on to lit-html\nconst newStr = []; // result strings to be passed on to lit-html\n+ if (values.length === 0) {\n+ return litHtml(strings, ...values);\n+ }\n+\nc... | JavaScript | MIT License | open-wc/open-wc | fix(storybook): html`` need to work if there are no dynamic parts | 1 | fix | storybook |
471,527 | 29.09.2018 01:00:47 | -7,200 | 6cfd014adfb03cb4c7628eb11d02edd5139109d6 | chore: apply eslint config | [
{
"change_type": "ADD",
"diff": "+node_modules\n+/packages/generator-open-wc/generators/*/templates/**/*\n\\ No newline at end of file\n",
"new_path": ".eslintignore",
"old_path": null
},
{
"change_type": "ADD",
"diff": "+module.exports = {\n+ extends: [\n+ './packages/eslint-config/inde... | JavaScript | MIT License | open-wc/open-wc | chore: apply eslint config | 1 | chore | null |
217,922 | 29.09.2018 13:44:57 | -7,200 | 852ec611306677b6a49472e8fb7fb1dd62e7a4f4 | feat: add alarm logic to the item row component | [
{
"change_type": "MODIFY",
"diff": "@@ -11,7 +11,7 @@ import {\nUpdateAlarm,\nUpdateAlarmGroup\n} from './alarms.actions';\n-import { debounceTime, distinctUntilChanged, map, mergeMap, withLatestFrom } from 'rxjs/operators';\n+import { debounceTime, distinctUntilChanged, map, mergeMap, tap, withLatestFrom }... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: add alarm logic to the item row component | 1 | feat | null |
217,922 | 29.09.2018 14:23:19 | -7,200 | 733619ea0a5a0ad06cc936e729f8ea3171969b40 | feat: support for reduction node alarms | [
{
"change_type": "MODIFY",
"diff": "@@ -38,6 +38,7 @@ export class BellNodesService {\nnodeCopy.icon = match.icon;\nnodeCopy.itemId = id;\nnodeCopy.slot = +match.slot;\n+ nodeCopy.type = ['Rocky Outcropping', 'Mineral Deposit', 'Mature Tree', 'Lush Vegetation'].indexOf(node.type);\nnodeCopy.zoneid = this.lo... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: support for reduction node alarms
#576 | 1 | feat | null |
471,527 | 29.09.2018 14:27:55 | -7,200 | 1e5e4c36d1d033aca55289fa0945296e12cbb6fd | feat: add commitlint and husky | [
{
"change_type": "ADD",
"diff": "+module.exports = {\n+ extends: [\n+ '@commitlint/config-conventional',\n+ '@commitlint/config-lerna-scopes',\n+ ],\n+};\n",
"new_path": "commitlint.config.js",
"old_path": null
},
{
"change_type": "ADD",
"diff": "+module.exports = {\n+ hooks: {\n+ 'pre-c... | JavaScript | MIT License | open-wc/open-wc | feat: add commitlint and husky | 1 | feat | null |
217,922 | 29.09.2018 14:43:46 | -7,200 | 23922b3fa6bd29ad490ae49039cb164e3a444449 | feat: support for masterbook icons
TODO: mark masterbook as not obtained if it isn't and simple click to add it | [
{
"change_type": "MODIFY",
"diff": "@@ -11,6 +11,7 @@ import { I18nName } from '../../../model/common/i18n-name';\nimport { Drop } from '../model/drop';\nimport { Alarm } from '../../../core/alarms/alarm';\nimport { ListRow } from '../model/list-row';\n+import { CompactMasterbook } from '../../../model/comm... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: support for masterbook icons
TODO: mark masterbook as not obtained if it isn't and simple click to add it
#576 | 1 | feat | null |
67,482 | 29.09.2018 15:45:04 | 25,200 | 0fa3e4497f9315bbbb46afef015094e4dc3a1063 | chore(lifecycle): small removal of old code | [
{
"change_type": "MODIFY",
"diff": "@@ -38,7 +38,6 @@ export type ElementDefinition = Immutable<Required<ITemplateSource>> | null;\n/*@internal*/\nexport interface IInternalCustomElementImplementation extends Writable<ICustomElement> {\n$behavior: IRuntimeBehavior;\n- $encapsulationSource: INode;\n}\n/**\n@... | TypeScript | MIT License | aurelia/aurelia | chore(lifecycle): small removal of old code | 1 | chore | lifecycle |
679,913 | 29.09.2018 18:36:25 | -3,600 | 5c44ad9896521da1c2d49bea2a1ef3f002d0c0d4 | feat(vectors): add operation specific interfaces, rename Vec3.toPolar()
update class wrappers w/ interface decls
rename toSpherical3() => toPolar3()
rename Vec3.toSpherical() => Vec3.toPolar()
add msub/msubN for all vec types | [
{
"change_type": "MODIFY",
"diff": "@@ -77,6 +77,72 @@ export interface IVec {\ns: number;\n}\n+export interface IAngleBetween<T> {\n+ angleBetween(v: Readonly<T>, normalize?: boolean): number;\n+}\n+\n+export interface IDistance<T> {\n+ dist(v: Readonly<T>): number;\n+ distSq(v: Readonly<T>): number;\n+}\n... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(vectors): add operation specific interfaces, rename Vec3.toPolar()
- update class wrappers w/ interface decls
- rename toSpherical3() => toPolar3()
- rename Vec3.toSpherical() => Vec3.toPolar()
- add msub/msubN for all vec types | 1 | feat | vectors |
679,913 | 29.09.2018 18:46:14 | -3,600 | 9c27c77f847186ab68953d4fb5a43bec192f99ef | feat(geom): update all shape types, add interfaces & ops, update tests | [
{
"change_type": "MODIFY",
"diff": "\"typescript\": \"^3.0.1\"\n},\n\"dependencies\": {\n- \"@thi.ng/api\": \"^4.1.1\",\n- \"@thi.ng/transducers\": \"^2.1.1\",\n- \"@thi.ng/vectors\": \"^1.1.0\"\n+ \"@thi.ng/api\": \"^4.2.1\",\n+ \"@thi.ng/transducers\": \"^2.1.6\",\n+ \"@thi.ng/vectors\": \"^1.3.0\"\n},\n\... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(geom): update all shape types, add interfaces & ops, update tests | 1 | feat | geom |
679,913 | 29.09.2018 19:08:15 | -3,600 | 34312d8f17bae21f3512c0e6ac270eee0947b231 | feat(vectors): add IMinMax interface | [
{
"change_type": "MODIFY",
"diff": "@@ -113,6 +113,11 @@ export interface IMath<T> {\nmsubN(v: Readonly<T>, n: number): T;\n}\n+export interface IMinMax<T> {\n+ min(v: Readonly<T>): T;\n+ max(v: Readonly<T>): T;\n+}\n+\nexport interface IMix<T> {\nmix(v: Readonly<T>, t: Readonly<T>): T;\nmixN(v: Readonly<T>... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(vectors): add IMinMax interface | 1 | feat | vectors |
679,913 | 29.09.2018 19:29:25 | -3,600 | 9fb2091a7cfac994da4ed9b8e9d1c10ec24524b6 | refactor(geom): add interfaces, split out common.ts into /func folder | [
{
"change_type": "MODIFY",
"diff": "\"license\": \"Apache-2.0\",\n\"scripts\": {\n\"build\": \"yarn run clean && tsc --declaration\",\n- \"clean\": \"rm -rf *.js *.d.ts .nyc_output build coverage doc\",\n+ \"clean\": \"rm -rf *.js *.d.ts .nyc_output build coverage doc func\",\n\"cover\": \"yarn test && nyc ... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(geom): add interfaces, split out common.ts into /func folder | 1 | refactor | geom |
679,913 | 29.09.2018 21:51:34 | -3,600 | 6a0f8aa9ffc6a4dbe6cb6d47745c7a82fe10bd18 | feat(vectors): add comparators & ICompare impls for vec2/3/4 | [
{
"change_type": "MODIFY",
"diff": "@@ -70,6 +70,10 @@ export type ReadonlyVecOp1<T> = (v: ReadonlyVec, i?: number, s?: number) => T;\n*/\nexport type ReadonlyVecOp2<T> = (a: ReadonlyVec, b: ReadonlyVec, ia?: number, ib?: number, sa?: number, sb?: number) => T;\n+export type Vec2Coord = 0 | 1;\n+export type... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(vectors): add comparators & ICompare impls for vec2/3/4 | 1 | feat | vectors |
217,922 | 29.09.2018 23:30:38 | -7,200 | a37fe03753d5b1cf987acbc6bcea1a387d4f83ce | feat: added all the buttons for item details (except the trade one), no dialog details for now | [
{
"change_type": "MODIFY",
"diff": "<!--TODO Simulator link-->\n<button nz-button [nzShape]=\"'circle'\" nz-tooltip nzTitle=\"{{craft.level}}{{craft.stars_tooltip}}\"\n[nzGhost]=\"true\" *ngFor=\"let craft of item.craftedBy\">\n- <img [src]=\"craft.icon\" alt=\"\" class=\"button-img\">\n+ <img [src]=\"craft... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: added all the buttons for item details (except the trade one), no dialog details for now
#576 | 1 | feat | null |
679,913 | 30.09.2018 05:13:33 | -3,600 | 473ec8000146ea1503f89c01661ae09311c8c63f | feat(vectors): add axis consts, add/update ops
add angleRatio2/3(), update angleBetween2/3()
add static X_AXIS, Y_AXIS, etc. consts
add static madd/maddN(), msub/msubN() methods
add static swizzle() methods
update GVec/Vec2/3/4.mixN() to use n=0.5 as default | [
{
"change_type": "MODIFY",
"diff": "@@ -158,3 +158,8 @@ export const MIN4 = Object.freeze([min, min, min, min]);\nexport const MAX4 = Object.freeze([max, max, max, max]);\nexport const ONE4 = Object.freeze([1, 1, 1, 1]);\nexport const ZERO4 = Object.freeze([0, 0, 0, 0]);\n+export const X4 = Object.freeze([1... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(vectors): add axis consts, add/update ops
- add angleRatio2/3(), update angleBetween2/3()
- add static X_AXIS, Y_AXIS, etc. consts
- add static madd/maddN(), msub/msubN() methods
- add static swizzle() methods
- update GVec/Vec2/3/4.mixN() to use n=0.5 as default | 1 | feat | vectors |
679,913 | 30.09.2018 05:14:10 | -3,600 | 2ba99311d1d865fe47a3666d841b1739a61ba47d | build(geom): update dev deps & yarn.lock | [
{
"change_type": "MODIFY",
"diff": "\"@types/node\": \"^10.5.5\",\n\"mocha\": \"^5.2.0\",\n\"nyc\": \"^12.0.2\",\n- \"typedoc\": \"^0.11.1\",\n+ \"typedoc\": \"^0.12.0\",\n\"typescript\": \"^3.0.1\"\n},\n\"dependencies\": {\n",
"new_path": "packages/geom/package.json",
"old_path": "packages/geom/pac... | TypeScript | Apache License 2.0 | thi-ng/umbrella | build(geom): update dev deps & yarn.lock | 1 | build | geom |
679,913 | 30.09.2018 05:17:47 | -3,600 | 3b1bf647a211b8826b79ca0e0bf0d7e9705eb356 | feat(geom): add ICollate & ICopy impls, re-add/update convexHull2 | [
{
"change_type": "MODIFY",
"diff": "import { ICopy } from \"@thi.ng/api/api\";\n-import { IDistance, IMix } from \"@thi.ng/vectors/api\";\n+import { IDistance, IMix, Vec } from \"@thi.ng/vectors/api\";\n-export type SampleableVector<T> = ICopy<T> & IDistance<T> & IMix<T>;\n+export type SampleableVector<T> =... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(geom): add ICollate & ICopy impls, re-add/update convexHull2 | 1 | feat | geom |
679,913 | 30.09.2018 05:18:50 | -3,600 | aa6b1206d6fe8e4a921b0e620c328de0e59b3d08 | feat(geom): re-add Arc2, update Circle2, update helper fns | [
{
"change_type": "ADD",
"diff": "+import { TAU } from \"@thi.ng/vectors/math\";\n+import { Vec2, setS2, mul2, rotate2, add2 } from \"@thi.ng/vectors/vec2\";\n+import { IVertices, IEdges } from \"./api\";\n+import { Vec } from \"@thi.ng/vectors/api\";\n+import { edges } from \"./func/edges\";\n+\n+export cla... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(geom): re-add Arc2, update Circle2, update helper fns | 1 | feat | geom |
679,913 | 30.09.2018 05:20:18 | -3,600 | 515e5ba509f3c1ee771f2b41db5101da46875553 | feat(transducers): update wrap*() fns to accept iterables | [
{
"change_type": "MODIFY",
"diff": "@@ -7,6 +7,6 @@ import { wrap } from \"./wrap\";\n* @param src\n* @param n\n*/\n-export function wrapBoth<T>(src: T[], n = 1) {\n+export function wrapBoth<T>(src: Iterable<T>, n = 1) {\nreturn wrap(src, n);\n}\n",
"new_path": "packages/transducers/src/iter/wrap-both.t... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(transducers): update wrap*() fns to accept iterables | 1 | feat | transducers |
679,913 | 30.09.2018 05:23:45 | -3,600 | 1ef23611fcfd358d029cd74addfcaf761f79d54d | fix(transducers): minor TS3.1 fixes | [
{
"change_type": "MODIFY",
"diff": "@@ -38,7 +38,7 @@ export function* iterator<A, B>(xform: Transducer<A, B>, xs: Iterable<A>): Itera\n* @param xs\n*/\nexport function* iterator1<A, B>(xform: Transducer<A, B>, xs: Iterable<A>): IterableIterator<B> {\n- const reduce = (<Reducer<B, A>>xform([null, null, (acc... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(transducers): minor TS3.1 fixes | 1 | fix | transducers |
679,913 | 30.09.2018 05:24:47 | -3,600 | 775cc8a7c0a42719689c60a0c3a4a649cd5ef202 | fix(hdom-components): add Canvas2DContextAttributes (removed in TS3.1) | [
{
"change_type": "MODIFY",
"diff": "@@ -3,6 +3,13 @@ export type CanvasContext =\nWebGLRenderingContext |\nWebGL2RenderingContext;\n+interface Canvas2DContextAttributes {\n+ alpha?: boolean;\n+ storage?: boolean;\n+ willReadFrequently?: boolean;\n+ [attribute: string]: boolean | string | undefined;\n+}\n+\n... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(hdom-components): add Canvas2DContextAttributes (removed in TS3.1) | 1 | fix | hdom-components |
724,111 | 30.09.2018 12:56:14 | -28,800 | a6a64d41bc0f064bc0f0b0bc6dedc7c690825163 | docs(zh): keep update | [
{
"change_type": "MODIFY",
"diff": "!!!include(docs/zh/api/renderToString.md)!!!\n!!!include(docs/zh/api/selectors.md)!!!\n!!!include(docs/zh/api/createLocalVue.md)!!!\n+!!!include(docs/zh/api/createWrapper.md)!!!\n!!!include(docs/zh/api/config.md)!!!\n",
"new_path": "docs/zh/api/README.md",
"old_pa... | JavaScript | MIT License | vuejs/vue-test-utils | docs(zh): keep update (#972) | 1 | docs | zh |
217,922 | 30.09.2018 13:48:28 | -7,200 | aa89104b0afcb9df6501a211441caf09191b15a2 | feat: add support for trade sources icon | [
{
"change_type": "MODIFY",
"diff": "</div>\n</div>\n<div class=\"item-obtention\" nz-col nzXs=\"24\" nzSm=\"6\" nzMd=\"4\">\n- <div fxLayout=\"row wrap\" fxLayoutGap=\"2px\">\n+ <div fxLayout=\"row wrap\" fxLayoutGap=\"2px\" fxFlex=\"0 1 auto\">\n<!--TODO Simulator link-->\n<button nz-button [nzShape]=\"'ci... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: add support for trade sources icon
#576 | 1 | feat | null |
217,922 | 30.09.2018 14:29:42 | -7,200 | c91e80599c50a5f9a63124790d77ba31996da96b | feat: support for list clone button
Also fixed an issue relative to bad use of deprecated fromPromise method | [
{
"change_type": "MODIFY",
"diff": "-import { Observable } from 'rxjs';\n+import { from, Observable } from 'rxjs';\nimport { DataModel } from '../data-model';\nimport { DataStore } from '../data-store';\nimport { NgSerializerService } from '@kaiu/ng-serializer';\nimport { NgZone } from '@angular/core';\nimp... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: support for list clone button
Also fixed an issue relative to bad use of deprecated fromPromise method
#576 | 1 | feat | null |
217,922 | 30.09.2018 15:15:56 | -7,200 | b1ab0090e8fcdc5dc398f37bd7352eb97ce3fc38 | chore: disable test for CI during dev process | [
{
"change_type": "MODIFY",
"diff": "@@ -131,9 +131,6 @@ workflows:\n- lint:\nrequires:\n- setup\n- - test:\n- requires:\n- - setup\n- build:\nrequires:\n- lint\n",
"new_path": ".circleci/config.yml",
"old_path": ".circleci/config.yml"
}
] | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: disable test for CI during dev process | 1 | chore | null |
679,913 | 30.09.2018 17:13:07 | -3,600 | 2657df66675f07892e6e10ef618f97686ff2527b | feat(geom): add/update interfaces & impls
add CollateOpts, update collate() in both containers
add generics for IVertices
add ArcSamplingOpts
update edges(), vertices() for Arc2 & Circle2
add .toJSON() impls
add dep | [
{
"change_type": "MODIFY",
"diff": "},\n\"dependencies\": {\n\"@thi.ng/api\": \"^4.2.1\",\n+ \"@thi.ng/checks\": \"^1.5.11\",\n\"@thi.ng/transducers\": \"^2.1.6\",\n\"@thi.ng/vectors\": \"^1.3.0\"\n},\n",
"new_path": "packages/geom/package.json",
"old_path": "packages/geom/package.json"
},
{
... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(geom): add/update interfaces & impls
- add CollateOpts, update collate() in both containers
- add generics for IVertices
- add ArcSamplingOpts
- update edges(), vertices() for Arc2 & Circle2
- add .toJSON() impls
- add @thi.ng/checks dep | 1 | feat | geom |
730,438 | 01.10.2018 11:25:32 | 25,200 | 1e87dc5a5dbc393e67250d5d5bd62858b76d1774 | fix(ciscospark): Do not display device joins/leaves in message widget 1:1 | [
{
"change_type": "MODIFY",
"diff": "@@ -80,6 +80,40 @@ const activities = [{\n},\nclientTempId: 'abc-123-346',\nencryptionKeyUrl: 'https://encryption-a.wbx2.com/encryption/api/v1/keys/11f13e-a95e-41c5-b1b1-daaa926f3432'\n+}, {\n+ id: '6cc26e40-c1d0-11e8-be73-fb59db7aeff3',\n+ machineUserId: '8912e485-4944-4... | JavaScript | MIT License | webex/react-widgets | fix(ciscospark): Do not display device joins/leaves in message widget 1:1 | 1 | fix | ciscospark |
807,849 | 01.10.2018 12:43:55 | 25,200 | 9752f3e3dc613bbcfcf04fb99e2ec51ecbbf76b3 | fix(conventional-commits): Upgrade dependencies
References
Closes | [
{
"change_type": "MODIFY",
"diff": "},\n\"dependencies\": {\n\"@lerna/validation-error\": \"file:../validation-error\",\n- \"conventional-changelog-angular\": \"^1.6.6\",\n- \"conventional-changelog-core\": \"^2.0.5\",\n- \"conventional-recommended-bump\": \"^2.0.6\",\n+ \"conventional-changelog-angular\": ... | JavaScript | MIT License | lerna/lerna | fix(conventional-commits): Upgrade dependencies
References #1641
Closes #1661 | 1 | fix | conventional-commits |
807,849 | 01.10.2018 15:07:16 | 25,200 | 159a0b040d9e9e96c7f217b6f008121a359ac6b4 | fix(conventional-commits): Upgrade angular preset, ensure header is not duplicated
conventional-changelog-angular 5.0.0 removed the anchor, thus the insertion point logic was changed to detect the end of the header, not the beginning of entries.
References | [
{
"change_type": "MODIFY",
"diff": "@@ -158,13 +158,12 @@ new file mode 100644\nindex SHA..SHA\n--- /dev/null\n+++ b/CHANGELOG.md\n-@@ -0,0 +1,12 @@\n+@@ -0,0 +1,11 @@\n+# Change Log\n+\n+All notable changes to this project will be documented in this file.\n+See [Conventional Commits](https://conventionalco... | JavaScript | MIT License | lerna/lerna | fix(conventional-commits): Upgrade angular preset, ensure header is not duplicated
conventional-changelog-angular 5.0.0 removed the anchor, thus the insertion point logic was changed to detect the end of the header, not the beginning of entries.
References #1696 | 1 | fix | conventional-commits |
730,412 | 01.10.2018 16:02:10 | 0 | 28e336284ccc3008f26b88e590f5c57affb360e2 | chore(release): 0.1.364 | [
{
"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.364\"></a>\n+## [0.1.364](https://github.com/webex/react-ciscospark/compare/v0.1.... | JavaScript | MIT License | webex/react-widgets | chore(release): 0.1.364 | 1 | chore | release |
67,482 | 01.10.2018 16:25:38 | 25,200 | cd5c6207fecfad5c3fcdec959f7edeed9f9525a6 | test(runtime): comment out encapsulationSource assertions | [
{
"change_type": "MODIFY",
"diff": "@@ -297,10 +297,10 @@ describe(`View`, () => {\nlifecycle.attach(sut).end();\nexpect(sut.$isAttached).to.be.true;\n- expect(sut['$encapsulationSource']).to.equal(source);\n+ //expect(sut['$encapsulationSource']).to.equal(source);\nif (sut.$attachables.length) {\nexpect(su... | TypeScript | MIT License | aurelia/aurelia | test(runtime): comment out encapsulationSource assertions | 1 | test | runtime |
76,636 | 01.10.2018 17:02:21 | 10,800 | 7b4a6629086d4448fa5050d72642e88afacfd466 | doc: updated Builtin Entity Extraction documentation on the language-support.md file | [
{
"change_type": "MODIFY",
"diff": "@@ -70,21 +70,21 @@ Inside Sentiment Analysis, there are three possible algoritms: AFINN, Senticon a\n## Builtin Entity Extraction\n-| Builtin | English | French | Spanish | Portuguese | Other |\n-| :----------- | :-----: | :----: | :-----: | :--------: | :---: |\n-| Emai... | JavaScript | MIT License | axa-group/nlp.js | doc: updated Builtin Entity Extraction documentation on the language-support.md file (#66) | 1 | doc | null |
217,922 | 01.10.2018 18:02:52 | -7,200 | d23428da09d0f754a4c059a27708f6038ac367b9 | fix: fixed error messages being shown when trying to log in using oauth | [
{
"change_type": "MODIFY",
"diff": "<button nz-button nzType=\"primary\" [disabled]=\"!form.valid\" type=\"submit\">{{'Submit' | translate}}</button>\n</nz-form-control>\n</nz-form-item>\n- <nz-alert *ngIf=\"errorMessageCode !== undefined\" nzType=\"error\" nzMessage=\"{{('AUTH_ERRORS.'+errorMessageCode) | ... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed error messages being shown when trying to log in using oauth | 1 | fix | null |
217,922 | 01.10.2018 18:18:09 | -7,200 | 86bf6f04767ddd72c446fb3b20e2a791c409f3f3 | feat: add tag to outdated lists in /lists page | [
{
"change_type": "MODIFY",
"diff": "<nz-list-item-meta [nzAvatar]=\"item.icon | icon\" [nzTitle]=\"item.id | itemName | i18n\"></nz-list-item-meta>\n</nz-list-item>\n<ng-template #amountModifier>\n- <input nz-input type=\"number\" [(ngModel)]=\"item.amount\">\n+ <input nz-input class=\"amount-input\" type=\... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: add tag to outdated lists in /lists page | 1 | feat | null |
791,834 | 01.10.2018 18:31:19 | 25,200 | d70197126094da6dcab57d2c0d9ce3efb977c92e | core(computed): fix new computed artifact interface | [
{
"change_type": "MODIFY",
"diff": "const Audit = require('./audit');\nconst LHError = require('../lib/lh-error');\n+const Screenshots = require('../gather/computed/screenshots.js');\nclass FinalScreenshot extends Audit {\n/**\n@@ -24,11 +25,12 @@ class FinalScreenshot extends Audit {\n/**\n* @param {LH.Art... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(computed): fix new computed artifact interface (#6151) | 1 | core | computed |
808,017 | 01.10.2018 20:14:40 | -7,200 | a60a0c32c1cdbc7336ba0309e6aa5ba5721354af | docs: Add 'lerna create' command to README.md
[skip ci] | [
{
"change_type": "MODIFY",
"diff": "- [`lerna clean`](./commands/clean#readme)\n- [`lerna import`](./commands/import#readme)\n- [`lerna link`](./commands/link#readme)\n+ - [`lerna create`](./commands/create#readme)\n* [Concepts](#concepts)\n* [Lerna.json](#lernajson)\n* [Global Flags](./core/global-options)... | JavaScript | MIT License | lerna/lerna | docs: Add 'lerna create' command to README.md (#1680)
[skip ci] | 1 | docs | null |
217,922 | 01.10.2018 20:30:25 | -7,200 | a675a3887ac18c8fadb033c1ce698934d6791d0a | feat: add support for different layout types | [
{
"change_type": "MODIFY",
"diff": "import { NgModule } from '@angular/core';\n-import { IconCopy, IconLayout, IconShield } from 'angular-feather';\n+import { IconCopy, IconLayout, IconMap, IconShield } from 'angular-feather';\n@NgModule({\nexports: [\nIconLayout,\nIconShield,\nIconCopy,\n+ IconMap\n]\n})\n... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: add support for different layout types
#576 | 1 | feat | null |
76,605 | 01.10.2018 22:26:18 | -7,200 | 6bdb94584ead94e5ae6a75a3fc556fb9358fdc01 | feat: Add entity extraction method to NLP manager | [
{
"change_type": "MODIFY",
"diff": "@@ -332,6 +332,32 @@ class NlpManager {\nreturn true;\n}\n+ /**\n+ * Process to extract entities from an utterance.\n+ * @param {string} srcLocale Locale of the utterance, optional.\n+ * @param {string} srcUtterance Text of the utterance.\n+ * @param {string[]} whitelist ... | JavaScript | MIT License | axa-group/nlp.js | feat: Add entity extraction method to NLP manager (#67) | 1 | feat | null |
807,828 | 02.10.2018 04:13:41 | -36,000 | 265ec0c4deb8f0c7d3d8bdcc34d2e630df3d45aa | docs(readme): update independent mode instructions
[skip ci] | [
{
"change_type": "MODIFY",
"diff": "@@ -108,13 +108,15 @@ Fixed mode Lerna projects operate on a single version line. The version is kept\nThis is the mode that [Babel](https://github.com/babel/babel) is currently using. Use this if you want to automatically tie all package versions together. One issue with... | JavaScript | MIT License | lerna/lerna | docs(readme): update independent mode instructions (#1701)
[skip ci] | 1 | docs | readme |
730,429 | 02.10.2018 10:30:17 | 14,400 | 80559b6e6e1570e39a7be4a9647fe72a57010fe7 | chore(jenkinsfile): use project based npmrc for publish | [
{
"change_type": "MODIFY",
"diff": "@@ -255,9 +255,7 @@ ansiColor('xterm') {\nstring(credentialsId: 'WIDGETS_NPM_PUBLISH_TOKEN', variable: 'WIDGETS_NPM_TOKEN')\n]) {\ntry {\n- // Copy & update config file\n- sh 'cp .npmrc $HOME/.npmrc'\n- sh 'echo \\'//registry.npmjs.org/:_authToken=${WIDGETS_NPM_TOKEN}\\' ... | JavaScript | MIT License | webex/react-widgets | chore(jenkinsfile): use project based npmrc for publish | 1 | chore | jenkinsfile |
791,723 | 02.10.2018 13:38:53 | 25,200 | b49e2ad981b822e02a3656ba2547f35b15f28414 | extension(lr): skip early emulation now that lr-desktop is defined | [
{
"change_type": "MODIFY",
"diff": "@@ -99,10 +99,6 @@ async function runLighthouseInLR(connection, url, flags, {lrDevice, categoryIDs,\n// Certain fixes need to kick-in under LR, see https://github.com/GoogleChrome/lighthouse/issues/5839\nglobal.isLightRider = true;\n- // Override default device to be desk... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | extension(lr): skip early emulation now that lr-desktop is defined (#6158) | 1 | extension | lr |
730,412 | 02.10.2018 14:57:13 | 0 | e537c86c0ef2f0e63dd7d01ac118ebacaa24ee47 | chore(release): 0.1.365 | [
{
"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.365\"></a>\n+## [0.1.365](https://github.com/webex/react-ciscospark/compare/v0.1.... | JavaScript | MIT License | webex/react-widgets | chore(release): 0.1.365 | 1 | chore | release |
791,760 | 02.10.2018 16:17:51 | 25,200 | 9bfcf91494a712aded65da8809b08d61bc11b7a7 | core(network): handle invalid NetworkRequests | [
{
"change_type": "MODIFY",
"diff": "@@ -320,7 +320,7 @@ class NetworkRecorder extends EventEmitter {\n*/\n_findRealRequest(requestId) {\nlet request = this._recordsById.get(requestId);\n- if (!request) return undefined;\n+ if (!request || !request.isValid) return undefined;\nwhile (request.redirectDestinati... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(network): handle invalid NetworkRequests (#6157) | 1 | core | network |
471,527 | 02.10.2018 18:46:12 | -7,200 | 5aff947c8713390f5ffb666654fb0f076c35e913 | feat(test): add karma and browserstack | [
{
"change_type": "MODIFY",
"diff": "node_modules\n+coverage/\n/packages/generator-open-wc/generators/*/templates/**/*\n\\ No newline at end of file\n",
"new_path": ".eslintignore",
"old_path": ".eslintignore"
},
{
"change_type": "MODIFY",
"diff": "## system files\n.DS_Store\n+# code cove... | JavaScript | MIT License | open-wc/open-wc | feat(test): add karma and browserstack | 1 | feat | test |
217,922 | 02.10.2018 18:53:41 | -7,200 | 0ae78073ffde0764046569a0c556a2e40596fae9 | chore: changed list picker drawer for a service, easier to use to pick a list from anywhere | [
{
"change_type": "ADD",
"diff": "+<nz-list [nzDataSource]=\"myLists$ | async\" [nzRenderItem]=\"list\" [nzHeader]=\"header\">\n+ <ng-template #list let-list>\n+ <nz-list-item [nzActions]=\"[pickOwnList]\">\n+ <nz-list-item-meta [nzTitle]=\"list.name\" [nzDescription]=\"list.description\">\n+ </nz-list-item-... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: changed list picker drawer for a service, easier to use to pick a list from anywhere | 1 | chore | null |
217,922 | 02.10.2018 18:55:37 | -7,200 | 5df5b9454a5edc575dbe289718d160101bb6acc5 | chore: list picker drawer now directly loads the list details | [
{
"change_type": "MODIFY",
"diff": "import { Injectable } from '@angular/core';\nimport { NzDrawerService } from 'ng-zorro-antd';\nimport { List } from '../list/model/list';\n-import { Observable } from 'rxjs';\n+import { Observable, of } from 'rxjs';\nimport { ListPickerDrawerComponent } from './list-picke... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: list picker drawer now directly loads the list details | 1 | chore | null |
471,527 | 02.10.2018 18:58:02 | -7,200 | c508561519857eecb32c554390ebe6009f2588d7 | chore: add browserstack logo | [
{
"change_type": "MODIFY",
"diff": "@@ -19,7 +19,8 @@ npx -p yo -p generator-open-wc -c 'yo open-wc:storybook'\nnpx -p yo -p generator-open-wc -c 'yo open-wc:eslint'\n```\n-\n+## We proudly use\n+<a href=\"http://browserstack.com/\" style=\"border: none;\"><img src=\"https://github.com/open-wc/open-wc/blob/... | JavaScript | MIT License | open-wc/open-wc | chore: add browserstack logo | 1 | chore | null |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.