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
807,849
19.07.2018 16:17:23
25,200
bcc5e0f03eba1c684e421000dfb66769531faad6
chore(helpers): add format option to getCommitMessage()
[ { "change_type": "MODIFY", "diff": "@@ -4,6 +4,6 @@ const execa = require(\"execa\");\nmodule.exports = getCommitMessage;\n-function getCommitMessage(cwd) {\n- return execa(\"git\", [\"show\", \"--no-patch\", \"--pretty=%B\"], { cwd }).then(result => result.stdout.trim());\n+function getCommitMessage(cwd, f...
JavaScript
MIT License
lerna/lerna
chore(helpers): add format option to getCommitMessage()
1
chore
helpers
791,690
19.07.2018 19:33:00
25,200
b38ecab3277cb8207847e7adf4a1a7e420b11d90
core(network-analyzer): infer RTT from receiveHeadersEnd
[ { "change_type": "MODIFY", "diff": "const INITIAL_CWD = 14 * 1024;\nconst NetworkRequest = require('../../network-request');\n+// Assume that 40% of TTFB was server response time by default for static assets\n+const DEFAULT_SERVER_RESPONSE_PERCENTAGE = 0.4;\n+\n+// For certain resource types, server respons...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(network-analyzer): infer RTT from receiveHeadersEnd (#5694)
1
core
network-analyzer
679,913
19.07.2018 21:12:55
-3,600
7df3ce04d5d851b1bbe31c8fb240586c175f8ad7
feat(transducers-stats): add other xforms bollinger() donchian() hma() rsi() sd()
[ { "change_type": "ADD", "diff": "+import { Transducer } from \"@thi.ng/transducers/api\";\n+import { comp } from \"@thi.ng/transducers/func/comp\";\n+import { drop } from \"@thi.ng/transducers/xform/drop\";\n+import { map } from \"@thi.ng/transducers/xform/map\";\n+import { multiplex } from \"@thi.ng/transd...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(transducers-stats): add other xforms - bollinger() - donchian() - hma() - rsi() - sd()
1
feat
transducers-stats
679,913
19.07.2018 21:31:14
-3,600
e8009a68ceb83e136115ecf43b3437eded807c7e
docs(transducers-stats): update readme links
[ { "change_type": "MODIFY", "diff": "@@ -23,21 +23,21 @@ This package provides a set of\nfor [technical\n(financial)](https://en.wikipedia.org/wiki/Technical_indicator) and\nstatistical analysis and replaces the older\n-[@thi.ng/indicators](https://github.com/thi-ng/indicators).\n+[@thi.ng/indicators](https:...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs(transducers-stats): update readme links
1
docs
transducers-stats
217,927
19.07.2018 22:17:14
0
f1e654734753c82be5254450a4127c3023923b7c
feat: add HQ material cost to total price popup Displays a cost range where applicable, from the cost for all NQ mats to the cost for all HQ mats. A single cost value is displayed for materials that cannot be purchased as HQ. Fixed up change detection and console log.
[ { "change_type": "MODIFY", "diff": "@@ -388,7 +388,6 @@ export class List extends DataWithPermissions {\nhasAllBaseIngredients(item: ListRow, amount = item.amount): boolean {\n// If it's not a craft, break recursion\nif (item.craftedBy === undefined || item.craftedBy.length === 0 || item.requires === undefi...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat: add HQ material cost to total price popup Displays a cost range where applicable, from the cost for all NQ mats to the cost for all HQ mats. A single cost value is displayed for materials that cannot be purchased as HQ. Fixed up change detection and console log.
1
feat
null
217,927
19.07.2018 22:31:44
0
9b517c569c2bb7ae57bc83521b215e208eae90e4
refactor: list and simulator tweaks Updates the venture amounts logic to handle cases where the amounts are present in the GT API but the required stats are not. Previously this failed and the venture level/job were not displayed. Updates the change recipe button in the simulator to disable instead of being hidden.
[ { "change_type": "MODIFY", "diff": "@@ -20,12 +20,16 @@ export class VentureDetailsPopupComponent {\n}\nventureAmounts(venture: Venture): any[] {\n+ let amounts = [];\n+\nif (venture.amounts !== undefined) {\nconst stats = venture.ilvl || venture.gathering;\nconst name = venture.ilvl ? 'filters/ilvl' : 'Gat...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
refactor: list and simulator tweaks Updates the venture amounts logic to handle cases where the amounts are present in the GT API but the required stats are not. Previously this failed and the venture level/job were not displayed. Updates the change recipe button in the simulator to disable instead of being hidden.
1
refactor
null
807,849
20.07.2018 10:19:17
25,200
f4430a345f9df16d3bc8b365c03da81bb93cacda
refactor(publish): rootPkg -> this.project.manifest
[ { "change_type": "MODIFY", "diff": "@@ -675,13 +675,12 @@ class PublishCommand extends Command {\nconst tracker = this.logger.newItem(\"npmPublish\");\n// if we skip temp tags we should tag with the proper value immediately\nconst distTag = this.options.tempTag ? \"lerna-temp\" : this.getDistTag();\n- const...
JavaScript
MIT License
lerna/lerna
refactor(publish): rootPkg -> this.project.manifest
1
refactor
publish
807,849
20.07.2018 12:55:25
25,200
488f98d9734987dd2e0c2c0fca3caf973378f26a
feat(run-lifecycle): Encapsulate npm-conf with createRunner() factory
[ { "change_type": "MODIFY", "diff": "\"use strict\";\nconst mockRunLifecycle = jest.fn(() => Promise.resolve());\n+const mockCreateRunner = jest.fn(() => (pkg, stage) => {\n+ if (pkg.scripts[stage]) {\n+ return mockRunLifecycle(pkg, stage);\n+ }\n+\n+ return Promise.resolve();\n+});\nfunction getOrderedCalls...
JavaScript
MIT License
lerna/lerna
feat(run-lifecycle): Encapsulate npm-conf with createRunner() factory
1
feat
run-lifecycle
217,922
20.07.2018 14:31:45
-7,200
4163eb69c00e111f9ee0d22a5f96bf72d606852c
feat: notification now shown when public list is commented closes
[ { "change_type": "MODIFY", "diff": "# Translation completion report\n-**Global completion** : 77%\n+**Global completion** : 76%\nde | es | fr | ja | pt |\n:---: | :---: | :---: | :---: | :---: |\n-92% | 97% | 98% | 28% | 69% |\n+91% | 96% | 97% | 27% | 69% |\n## Categories details :\n@@ -38,6 +38,7 @@ HOME_...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat: notification now shown when public list is commented closes #279
1
feat
null
807,849
20.07.2018 16:11:52
25,200
92ee4ee6521eaca0062450ee3028eb2a694e8f37
chore(mocks): Add npmPublish.order() helper
[ { "change_type": "MODIFY", "diff": "@@ -9,10 +9,16 @@ const mockNpmPublish = jest.fn((pkg, tag) => {\nreturn Promise.resolve();\n});\n+// a convenient format for assertions\n+function order() {\n+ return Array.from(registry.keys());\n+}\n+\n// keep test data isolated\nafterEach(() => {\nregistry.clear();\n}...
JavaScript
MIT License
lerna/lerna
chore(mocks): Add npmPublish.order() helper
1
chore
mocks
679,913
20.07.2018 17:40:33
-3,600
a59c5c9404b2e493ce93a001bc96f67748183bbb
perf(rstream): optimize dispatch if only single child replace Subscription.subs with array (was Set) update Subscription.dispatch() update call sites add tests
[ { "change_type": "MODIFY", "diff": "@@ -53,7 +53,7 @@ export class Stream<T> extends Subscription<T, T>\nsubscribe(sub: Partial<ISubscriber<T>>, id?: string): Subscription<T, T>;\nsubscribe(...args: any[]) {\nconst wrapped = super.subscribe.apply(this, args);\n- if (this.subs.size === 1) {\n+ if (this.subs....
TypeScript
Apache License 2.0
thi-ng/umbrella
perf(rstream): optimize dispatch if only single child - replace Subscription.subs with array (was Set) - update Subscription.dispatch() - update call sites - add tests
1
perf
rstream
679,913
20.07.2018 17:46:04
-3,600
7cfb8e5a18ea1becb1852ae0eb5104f5f64db378
minor(rstream): remove obsolete args (pubsub)
[ { "change_type": "MODIFY", "diff": "@@ -63,20 +63,16 @@ export class PubSub<A, B> extends Subscription<A, B> {\n/**\n* Unsupported. Use `subscribeTopic()` instead.\n- *\n- * @param _\n*/\n- subscribe(..._: any[]): Subscription<B, any> {\n+ subscribe(): Subscription<B, any> {\nunsupported(`use subscribeTopic...
TypeScript
Apache License 2.0
thi-ng/umbrella
minor(rstream): remove obsolete args (pubsub)
1
minor
rstream
791,690
20.07.2018 19:07:27
25,200
0265569b1970aa7383c4e12909205e1c8d8f3d6a
core(ttfb): reuse requestMainResource
[ { "change_type": "MODIFY", "diff": "@@ -35,26 +35,13 @@ class TTFBMetric extends Audit {\n* @param {LH.Artifacts} artifacts\n* @return {Promise<LH.Audit.Product>}\n*/\n- static audit(artifacts) {\n- const devtoolsLogs = artifacts.devtoolsLogs[Audit.DEFAULT_PASS];\n+ static async audit(artifacts) {\n+ const ...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(ttfb): reuse requestMainResource (#5657)
1
core
ttfb
791,719
20.07.2018 19:08:12
25,200
c4e41fa069eba2fc1269aabe60da37d430928047
report: link to our own "unused css" reference doc
[ { "change_type": "MODIFY", "diff": "@@ -23,7 +23,7 @@ class UnusedCSSRules extends ByteEfficiencyAudit {\nscoreDisplayMode: ByteEfficiencyAudit.SCORING_MODES.NUMERIC,\ndescription: 'Remove unused rules from stylesheets to reduce unnecessary ' +\n'bytes consumed by network activity. ' +\n- '[Learn more](http...
JavaScript
Apache License 2.0
googlechrome/lighthouse
report: link to our own "unused css" reference doc (#5698)
1
report
null
679,913
21.07.2018 01:48:04
-3,600
76dc450d34dfe3e038fd4588a170ae7d7f2c03b0
feat(range-coder): re-import package from MB2010
[ { "change_type": "ADD", "diff": "+bench/*\n+build/*\n+dev/*\n+node_modules\n+src*\n+test*\n+bundle.*\n+tsconfig.json\n+webpack.config.js\n+*.html\n+*.tgz\n+!doc/*\n+!*.d.ts\n+!*.js\n", "new_path": "packages/range-coder/.npmignore", "old_path": null }, { "change_type": "ADD", "diff": "+# ...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(range-coder): re-import @thi.ng/range-coder package from MB2010
1
feat
range-coder
679,913
21.07.2018 02:00:55
-3,600
e3def294d26e13e2ee0cb37b31ae0bf943691e8c
refactor(examples): switch to WMA plots in crypto-chart demo
[ { "change_type": "MODIFY", "diff": "@@ -10,9 +10,9 @@ This example demonstrates how to use\n[@thi.ng/rstream](https://github.com/thi-ng/umbrella/tree/master/packages/rstream)\n&\n[@thi.ng/transducer](https://github.com/thi-ng/umbrella/tree/master/packages/transducer)\n-constructs to create a basic crypto-cu...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(examples): switch to WMA plots in crypto-chart demo
1
refactor
examples
791,723
21.07.2018 08:42:51
-28,800
5579378c4fe5081fce7cc07d7856243ec97e8f6e
misc(asset-saver): tweak output format of logAssets
[ { "change_type": "MODIFY", "diff": "@@ -326,13 +326,16 @@ async function saveAssets(artifacts, audits, pathWithBasename) {\nasync function logAssets(artifacts, audits) {\nconst allAssets = await prepareAssets(artifacts, audits);\nallAssets.map(passAssets => {\n- log.log(`devtoolslog-${passAssets.passName}.j...
JavaScript
Apache License 2.0
googlechrome/lighthouse
misc(asset-saver): tweak output format of logAssets (#5696)
1
misc
asset-saver
679,913
21.07.2018 13:47:08
-3,600
2953caaa17d7c929cfb459bc666a330e9aa12a58
feat(examples): add MA mode dropdown, update crypto-chart dataflow
[ { "change_type": "MODIFY", "diff": "<!-- Generated by graphviz version 2.40.1 (20161225.0304)\n-->\n<!-- Title: g Pages: 1 -->\n-<svg width=\"546pt\" height=\"242pt\"\n- viewBox=\"0.00 0.00 546.07 242.00\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n-<g id=\"graph0\" ...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(examples): add MA mode dropdown, update crypto-chart dataflow
1
feat
examples
217,922
21.07.2018 15:08:13
-7,200
41527d783af9ab546ea6aa88844388263054cac6
feat: new history system for lists to see who added/removed things closes
[ { "change_type": "MODIFY", "diff": "@@ -75,7 +75,7 @@ export class UserService extends FirebaseStorage<AppUser> {\nreturn c;\n}));\n} else {\n- return of({name: 'Anonymous'});\n+ return of({name: 'Anonymous', user: u});\n}\n}),\nshareReplay()\n", "new_path": "src/app/core/database/user.service.ts", ...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat: new history system for lists to see who added/removed things closes #435
1
feat
null
679,913
21.07.2018 16:32:11
-3,600
0b0a7ca9784c6ca7f606856bded77a2f19b2245d
feat(transducers-stats): add stochastic oscillator, refactor refactor donchian() add bounds() helper fn
[ { "change_type": "MODIFY", "diff": "@@ -36,6 +36,7 @@ statistical analysis and replaces the older\n- [RSI (Relative Strength Index)](./src/rsi.ts)\n- [SD (Standard Deviation)](./src/sd.ts)\n- [SMA (Simple Moving Average)](./src/sma.ts)\n+- [Stochastic oscillator](./src/stochastic.ts)\n- [TRIX (Triple smooth...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(transducers-stats): add stochastic oscillator, refactor - refactor donchian() - add bounds() helper fn
1
feat
transducers-stats
724,054
22.07.2018 00:01:44
-28,800
2e6de7b052e41776e6503d62d581bcb93dc04af8
feat: use setValue() on select element
[ { "change_type": "MODIFY", "diff": "@@ -82,7 +82,7 @@ The default test script will do the following: lint with ESLint -> type check wi\n- **`create-instance`**: private package that creates an instance and applies mounting options.\n- - **`shared`**: private package that contains utilities used by the other...
JavaScript
MIT License
vuejs/vue-test-utils
feat: use setValue() on select element (#837)
1
feat
null
807,849
22.07.2018 11:18:00
25,200
0ad5fafa1534ea8b5db022fac2f04b5d6e5f2889
feat(package-graph): Add `rawPackageList` getter
[ { "change_type": "MODIFY", "diff": "@@ -98,6 +98,10 @@ class PackageGraph extends Map {\n});\n}\n+ get rawPackageList() {\n+ return Array.from(this.values()).map(node => node.pkg);\n+ }\n+\n/**\n* Takes a list of Packages and returns a list of those same Packages with any Packages\n* they depend on. i.e if ...
JavaScript
MIT License
lerna/lerna
feat(package-graph): Add `rawPackageList` getter
1
feat
package-graph
807,849
22.07.2018 11:19:40
25,200
b132c3ad93acfdac968cf67a93e868f50e6d7a1a
fix(changed): Clarify early exit log message
[ { "change_type": "MODIFY", "diff": "@@ -24,7 +24,7 @@ class ChangedCommand extends Command {\nconst proceedWithUpdates = this.count > 0;\nif (!proceedWithUpdates) {\n- this.logger.info(\"No packages need updating\");\n+ this.logger.info(\"\", \"No changed packages found\");\nprocess.exitCode = 1;\n}\n", ...
JavaScript
MIT License
lerna/lerna
fix(changed): Clarify early exit log message
1
fix
changed
217,922
22.07.2018 12:15:58
-7,200
95ce29c800660218cc51f36a91d20b28768dc237
chore: ability to delete notifications in the notifications page
[ { "change_type": "MODIFY", "diff": "@@ -16,6 +16,8 @@ export abstract class AbstractNotification {\npublic alerted = false;\n+ public isQuestion = false;\n+\nprotected constructor(public readonly type: NotificationType) {\nthis.date = Date.now();\n}\n", "new_path": "src/app/core/notification/abstract-no...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: ability to delete notifications in the notifications page
1
chore
null
217,922
22.07.2018 12:22:19
-7,200
0f77fd8a991643136ac0a5bc08082f1492bf23da
chore: hide lists you aren't the leader of in the team assignment menu
[ { "change_type": "MODIFY", "diff": "@@ -153,7 +153,12 @@ export class ListDetailsComponent extends ComponentWithSubscriptions implements\nmap(layout => layout.recipeZoneBreakdown)\n);\n- this.teams$ = this.teamService.getUserTeams();\n+ this.teams$ = combineLatest(this.userService.getUserData(), this.teamSe...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: hide lists you aren't the leader of in the team assignment menu
1
chore
null
679,913
23.07.2018 01:00:59
-3,600
e349cb6ab96ff3c0a337805ef6a62b1c89861c91
docs(transducers): update readmes
[ { "change_type": "MODIFY", "diff": "@@ -48,8 +48,44 @@ yarn add @thi.ng/transducers-stats\n## Usage examples\n+For some realworld use, please see the [crypto\n+chart](https://github.com/thi-ng/umbrella/tree/master/examples/crypto-chart)\n+example.\n+\n```ts\n+import * as tx from \"@thi.ng/transducers\";\nim...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs(transducers): update readmes
1
docs
transducers
807,849
23.07.2018 10:04:18
25,200
151363f63ec7a35390b83cd14b83c82cecaf63e0
fix(command): Prevent premature resolution during tests from nested commands
[ { "change_type": "MODIFY", "diff": "@@ -77,8 +77,15 @@ class Command {\n});\n// passed via yargs context in tests, never actual CLI\n+ /* istanbul ignore else */\n+ if (argv.onResolved || argv.onRejected) {\nrunner = runner.then(argv.onResolved, argv.onRejected);\n+ // when nested, never resolve inner with ...
JavaScript
MIT License
lerna/lerna
fix(command): Prevent premature resolution during tests from nested commands
1
fix
command
730,424
23.07.2018 10:11:51
25,200
01b2b183411cd680f7c2daec5efab6a0d50aa4f3
style(widget-recents): fix eslint
[ { "change_type": "MODIFY", "diff": "@@ -104,6 +104,20 @@ export class RecentsWidget extends Component {\n}\n}\n+ componentWillReceiveProps(nextProps) {\n+ RecentsWidget.checkForMercuryErrors(nextProps);\n+ RecentsWidget.setup(nextProps);\n+ this.addListeners(nextProps);\n+ this.fetchAllAvatars(nextProps);\n...
JavaScript
MIT License
webex/react-widgets
style(widget-recents): fix eslint
1
style
widget-recents
217,922
23.07.2018 13:32:01
-7,200
75ff821a3f48d832f9560945e131282775490601
feat: new team system with assignable items and notifications closes
[ { "change_type": "MODIFY", "diff": "@@ -2,10 +2,10 @@ import {Relationship} from '../database/relational/relationship';\nimport {AbstractNotification} from './abstract-notification';\nimport {DeserializeAs} from '@kaiu/serializer';\n-export class NotificationRelationship extends Relationship<string, Abstrac...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat: new team system with assignable items and notifications closes #463
1
feat
null
217,922
23.07.2018 14:26:58
-7,200
ca9ee6a1db579da9e434e9b73874ee8aa85e0291
feat: display amount of unread notifications in sidebar
[ { "change_type": "MODIFY", "diff": "matTooltipPosition=\"right\"\nmatTooltip=\"{{'NOTIFICATIONS.Title' | translate}}\"\n[matTooltipDisabled]=\"!settings.compactSidebar\">\n- <mat-icon matListIcon *ngIf=\"hasNotifications$ | async; else noNotifications\">\n+ <mat-icon matListIcon *ngIf=\"notifications$ | asy...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat: display amount of unread notifications in sidebar
1
feat
null
791,690
23.07.2018 16:44:14
25,200
4e11f2534ec4c27b1fc721eb37ee99175bdc97dd
core(i18n): localize strings at end of run
[ { "change_type": "MODIFY", "diff": "@@ -31,13 +31,9 @@ const UIStrings = {\ndescription: 'Resources are blocking the first paint of your page. Consider ' +\n'delivering critical JS/CSS inline and deferring all non-critical ' +\n'JS/styles. [Learn more](https://developers.google.com/web/tools/lighthouse/audi...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(i18n): localize strings at end of run (#5655)
1
core
i18n
217,922
23.07.2018 17:47:31
-7,200
54b921def526fd83edfe4bd7fc20daec9b3dfda4
chore: added thresholds binding to simulator component
[ { "change_type": "MODIFY", "diff": "@@ -3,6 +3,8 @@ import {I18nData} from '../list/i18n-data';\nimport {I18nDataRow} from '../list/i18n-data-row';\nimport {DeserializeFieldName} from '@kaiu/serializer';\nimport {Fish} from './fish';\n+import {SatisfactionData} from './satisfaction-data';\n+import {Masterpi...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: added thresholds binding to simulator component
1
chore
null
724,111
24.07.2018 03:44:49
-28,800
50c95987f22518a63bdd8bf05d6c88f639e7c50f
docs(zh): update
[ { "change_type": "MODIFY", "diff": "- `{Object} context`\n- `{Array<Component|Object>|Component} children`\n- `{Object} slots`\n- - `{Array<Componet|Object>|Component|String} default`\n- - `{Array<Componet|Object>|Component|String} named`\n+ - `{Array<Component|Object>|Component|String} default`\n+ - `{Arra...
JavaScript
MIT License
vuejs/vue-test-utils
docs(zh): update (#848)
1
docs
zh
217,922
24.07.2018 11:09:21
-7,200
7e586757ec25cd8944fc0f753852f75da1350bcb
feat: you can now add all alarms for a given list using a single button closes
[ { "change_type": "MODIFY", "diff": "@@ -5,13 +5,45 @@ import {combineLatest, Observable, of} from 'rxjs';\nimport {ListStore} from './storage/list/list-store';\nimport {Workshop} from '../../model/other/workshop';\nimport {catchError, map} from 'rxjs/operators';\n+import {ListRow} from '../../model/list/lis...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat: you can now add all alarms for a given list using a single button closes #465
1
feat
null
679,913
24.07.2018 12:29:16
-3,600
f7a084ae5b82c2c93d018f2aeae3f77333a98990
feat(iges): add PolylineMode enum, update addPolyline2d() add addPolygon2d()
[ { "change_type": "MODIFY", "diff": "@@ -87,6 +87,12 @@ export enum StatusHierarchy {\nUSE_PROP\n}\n+export enum PolylineMode {\n+ OPEN,\n+ CLOSED,\n+ FILLED\n+}\n+\n// spec page 24 (53)\nexport interface DictEntry {\ntype: number;\n", "new_path": "packages/iges/src/api.ts", "old_path": "packages/ige...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(iges): add PolylineMode enum, update addPolyline2d() - add addPolygon2d()
1
feat
iges
217,922
24.07.2018 13:37:24
-7,200
81bad1bd7f8166b84889f809ad32c9c02bca7ccf
fix: deleted alarms wont be playing anymore closes
[ { "change_type": "MODIFY", "diff": "@@ -68,7 +68,7 @@ export class AlarmService {\n*/\npublic unregister(id: number): void {\nthis.getAlarms(id).forEach((alarm) => {\n- this._alarms.get(alarm).next();\n+ this._alarms.get(alarm).next(null);\nthis._alarms.delete(alarm);\n});\nthis.persistAlarms();\n@@ -198,7 ...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix: deleted alarms wont be playing anymore closes #514
1
fix
null
217,922
24.07.2018 14:03:14
-7,200
d4d5bdf258e63ef50f0f3c24e79cba29a7871103
chore: updated README.md file with latest conventions
[ { "change_type": "MODIFY", "diff": "@@ -29,13 +29,22 @@ Simply run `npm start` to start a live server with file watcher.\n## Contributing\n+### Branch names\n+\n+When contributing to main repository, you'll notice that branche names follow a given pattern,\n+this pattern is the following: `<branch-type>/<sh...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: updated README.md file with latest conventions
1
chore
null
807,849
24.07.2018 14:40:16
25,200
2fcac07fe4a677088fb88a77fa5b2e39716590cb
refactor(conventional-commits): split functions into modular lib/*
[ { "change_type": "MODIFY", "diff": "\"use strict\";\n-const conventionalChangelogCore = require(\"conventional-changelog-core\");\n-const conventionalRecommendedBump = require(\"conventional-recommended-bump\");\n-const dedent = require(\"dedent\");\n-const fs = require(\"fs-extra\");\n-const getStream = re...
JavaScript
MIT License
lerna/lerna
refactor(conventional-commits): split functions into modular lib/*
1
refactor
conventional-commits
791,690
24.07.2018 17:20:12
25,200
eda3a3e2e271249f261655f9504fd542d6acf0f8
core(i18n): export rendererFormattedStrings
[ { "change_type": "MODIFY", "diff": "@@ -131,6 +131,22 @@ function getDefaultLocale() {\nreturn 'en-US';\n}\n+/**\n+ * @param {LH.Locale} locale\n+ * @return {LH.I18NRendererStrings}\n+ */\n+function getRendererFormattedStrings(locale) {\n+ const icuMessageIds = Object.keys(LOCALES[locale]).filter(f => f.inc...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(i18n): export rendererFormattedStrings (#5713)
1
core
i18n
807,849
25.07.2018 10:05:57
25,200
ef0d41d46827e3c4c98b6bd876e8b025d41faeb2
refactor(link): Use package graph getter instead of instance.packages
[ { "change_type": "MODIFY", "diff": "@@ -19,13 +19,10 @@ class LinkCommand extends Command {\n}\ninitialize() {\n- let graph = this.packageGraph;\n-\n- if (this.options.forceLocal) {\n- graph = new PackageGraph(this.packages, \"allDependencies\", \"forceLocal\");\n- }\n-\n- this.targetGraph = graph;\n+ this....
JavaScript
MIT License
lerna/lerna
refactor(link): Use package graph getter instead of instance.packages
1
refactor
link
807,849
25.07.2018 10:07:05
25,200
32a211ae14db2e2122f85efbd5e74b1d2494f7e5
refactor(command): Do not store raw packages list as instance property BREAKING CHANGE: `this.packages` no longer exists in Command subclasses, use `this.packageGraph.rawPackageList`
[ { "change_type": "MODIFY", "diff": "@@ -229,15 +229,6 @@ describe(\"core-command\", () => {\n});\n});\n- describe(\".packages\", () => {\n- it(\"returns the list of packages\", async () => {\n- const command = testFactory();\n- await command;\n-\n- expect(command.packages).toEqual([]);\n- });\n- });\n-\ndes...
JavaScript
MIT License
lerna/lerna
refactor(command): Do not store raw packages list as instance property BREAKING CHANGE: `this.packages` no longer exists in Command subclasses, use `this.packageGraph.rawPackageList`
1
refactor
command
791,723
25.07.2018 12:52:25
25,200
13fe26f4bc8fd080b189adcf98bf995a4aabb43f
docs(report): add a renderer readme
[ { "change_type": "MODIFY", "diff": "@@ -11,7 +11,7 @@ _Some incomplete notes_\n* **Artifacts** - output of a gatherer\n* **Audit** - Tests for a single feature/optimization/metric. Using the Artifacts as input, an audit evaluates a test and resolves to a numeric score. See [Understanding Results](./understa...
JavaScript
Apache License 2.0
googlechrome/lighthouse
docs(report): add a renderer readme (#5725)
1
docs
report
807,849
25.07.2018 13:01:24
25,200
08f096bfe7fb0082f3be61b7a4e738b4006f8310
refactor(publish): Use runLifecycle.createRunner()
[ { "change_type": "MODIFY", "diff": "@@ -9,12 +9,10 @@ jest.mock(\"../lib/is-behind-upstream\");\nconst path = require(\"path\");\n// mocked modules\n-const writePkg = require(\"write-pkg\");\nconst runLifecycle = require(\"@lerna/run-lifecycle\");\n// helpers\nconst initFixture = require(\"@lerna-test/init-...
JavaScript
MIT License
lerna/lerna
refactor(publish): Use runLifecycle.createRunner()
1
refactor
publish
679,913
25.07.2018 15:18:52
-3,600
b92aaa584e8505bdac20f7a7f08d722b1703cbe2
feat(transducers-stats): add MACD (fixes
[ { "change_type": "MODIFY", "diff": "@@ -2,6 +2,7 @@ export * from \"./bollinger\";\nexport * from \"./donchian\";\nexport * from \"./ema\";\nexport * from \"./hma\";\n+export * from \"./macd\";\nexport * from \"./momentum\";\nexport * from \"./roc\";\nexport * from \"./rsi\";\n", "new_path": "packages/t...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(transducers-stats): add MACD (fixes #31)
1
feat
transducers-stats
679,913
25.07.2018 15:21:05
-3,600
c97cb75c4ee15451557f682cc00efcd1466e8322
feat(transducers-stats): add BollingerBand value interface
[ { "change_type": "MODIFY", "diff": "@@ -8,18 +8,24 @@ import { partition } from \"@thi.ng/transducers/xform/partition\";\nimport { mse } from \"./mse\";\nimport { sma } from \"./sma\";\n+export interface BollingerBand {\n+ min: number;\n+ max: number;\n+ mean: number;\n+ pb: number;\n+}\n+\n/**\n* Computes ...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(transducers-stats): add BollingerBand value interface
1
feat
transducers-stats
679,913
25.07.2018 15:21:38
-3,600
d967f94ee03d9ba1777e429e2fa15876c63b4406
docs(transducers-stats): update docs & readme
[ { "change_type": "MODIFY", "diff": "@@ -31,6 +31,7 @@ statistical analysis and replaces the older\n- [Donchian Channel](./src/donchian.ts)\n- [EMA (Exponential Moving Average)](./src/ema.ts)\n- [HMA (Hull Moving Average)](./src/hma.ts)\n+- [MACD (Moving Average Convergence/Divergence)](./src/macd.ts)\n- [Mo...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs(transducers-stats): update docs & readme
1
docs
transducers-stats
679,913
25.07.2018 15:37:37
-3,600
a322e001b6317b81500e9574fa69a6708955f721
fix(transducers-stats): fix naming of MACD results
[ { "change_type": "MODIFY", "diff": "@@ -6,15 +6,15 @@ import { ema } from \"./ema\";\nexport interface MACD {\n/**\n- * MACD signal: `ema(fast) - ema(slow)`\n+ * Main MACD value: `ema(fast) - ema(slow)`\n*/\n- signal: number;\n+ macd: number;\n/**\n- * Smoothed MACD signal, i.e. EMA of `signal` value\n+ * S...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(transducers-stats): fix naming of MACD results (#31)
1
fix
transducers-stats
217,922
25.07.2018 15:51:12
-7,200
7765d9ece86117f936cc1ac818503c94abe71f68
fix: fixed some drag and drop issues, including timeline jitter in simulator closes
[ { "change_type": "MODIFY", "diff": "\"balanced-match\": {\n\"version\": \"1.0.0\",\n\"bundled\": true,\n- \"dev\": true,\n- \"optional\": true\n+ \"dev\": true\n},\n\"brace-expansion\": {\n\"version\": \"1.1.11\",\n\"bundled\": true,\n\"dev\": true,\n- \"optional\": true,\n\"requires\": {\n\"balanced-match\...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix: fixed some drag and drop issues, including timeline jitter in simulator closes #422
1
fix
null
679,913
25.07.2018 16:11:05
-3,600
35af6a566a69cbea33a3adf5f5e3c597e0fe4d4d
feat(vectors): add minor/majorAxis(), minor/major2/3 add minXid / maxXid maths helpers
[ { "change_type": "MODIFY", "diff": "@@ -13,16 +13,6 @@ export const atan2Abs = (y: number, x: number) => {\nreturn theta < 0 ? TAU + theta : theta;\n};\n-/**\n- * Clamps value `x` to given closed interval.\n- *\n- * @param x value to clamp\n- * @param min lower bound\n- * @param max upper bound\n- */\n-expo...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(vectors): add minor/majorAxis(), minor/major2/3 - add minXid / maxXid maths helpers
1
feat
vectors
791,690
25.07.2018 17:08:49
25,200
63df678302b3ebbfb9220273db65ec0946300809
tests: better display value tests with i18n
[ { "change_type": "MODIFY", "diff": "@@ -14,6 +14,7 @@ module.exports = {\n'!**/test/',\n'!**/scripts/',\n],\n+ setupTestFrameworkScriptFile: './lighthouse-core/test/test-utils.js',\ntestEnvironment: 'node',\ntestMatch: [\n'**/lighthouse-core/**/*-test.js',\n", "new_path": "jest.config.js", "old_path...
JavaScript
Apache License 2.0
googlechrome/lighthouse
tests: better display value tests with i18n (#5720)
1
tests
null
807,996
25.07.2018 20:00:32
14,400
f3ffd333d19ad7bbe935d225a2efa5563ef2a268
docs: Fix "Getting Started" code snippet [skip ci] `$_` retrieves the last argument of the previous command. `!$` retrieves the last argument of previous command in the shell history.
[ { "change_type": "MODIFY", "diff": "@@ -84,7 +84,7 @@ The two primary commands in Lerna are `lerna bootstrap` and `lerna publish`.\nLet's start by installing Lerna as a dev dependency of your project with [npm](https://www.npmjs.com/).\n```sh\n-$ mkdir lerna-repo && cd !$\n+$ mkdir lerna-repo && cd $_\n$ np...
JavaScript
MIT License
lerna/lerna
docs: Fix "Getting Started" code snippet (#1519) [skip ci] `$_` retrieves the last argument of the previous command. `!$` retrieves the last argument of previous command in the shell history. https://unix.stackexchange.com/a/219627
1
docs
null
791,690
25.07.2018 21:37:29
25,200
6af477a706b616439006f895951e51f2f861d155
core(i18n): always use english for status logs
[ { "change_type": "MODIFY", "diff": "@@ -13,6 +13,7 @@ const MessageParser = require('intl-messageformat-parser');\nconst LOCALES = require('./locales');\nconst LH_ROOT = path.join(__dirname, '../../');\n+const MESSAGE_INSTANCE_ID_REGEX = /(.* \\| .*) # (\\d+)$/;\n(() => {\n// Node usually doesn't come with ...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(i18n): always use english for status logs (#5727)
1
core
i18n
679,913
25.07.2018 22:25:47
-3,600
b59fadfd9de258153e5a834cb0492b6cdc4f1d53
feat(vectors): add vec4 ops & class wrapper
[ { "change_type": "MODIFY", "diff": "export * from \"./api\";\n+export * from \"./common\";\n+export * from \"./math\";\nexport * from \"./vec2\";\nexport * from \"./vec3\";\n+export * from \"./vec4\";\n", "new_path": "packages/vectors/src/index.ts", "old_path": "packages/vectors/src/index.ts" }, ...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(vectors): add vec4 ops & class wrapper
1
feat
vectors
679,913
25.07.2018 22:53:28
-3,600
2a5a744d4c41c04b64ddf87e3d96c15ffcd145f1
fix(vectors): copy/paste mistakes, add tests
[ { "change_type": "MODIFY", "diff": "@@ -53,10 +53,10 @@ export const add2n = (a: Vec, n: number, ia = 0, sa = 1) =>\n(a[ia] += n, a[ia + sa] += n, a);\nexport const sub2n = (a: Vec, n: number, ia = 0, sa = 1) =>\n- (a[ia] *= n, a[ia + sa] *= n, a);\n+ (a[ia] -= n, a[ia + sa] -= n, a);\nexport const mul2n = ...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(vectors): copy/paste mistakes, add tests
1
fix
vectors
807,932
26.07.2018 01:58:40
-7,200
8500aef6e5c3ac2636ff32883fdc78d670a01fac
docs(readme): document npmClientArgs on lerna.json [skip ci] One small step towards
[ { "change_type": "MODIFY", "diff": "@@ -145,7 +145,8 @@ Running `lerna` without arguments will show all commands/options.\n]\n},\n\"bootstrap\": {\n- \"ignore\": \"component-*\"\n+ \"ignore\": \"component-*\",\n+ \"npmClientArgs\": [\"--no-package-lock\"]\n}\n},\n\"packages\": [\"packages/*\"]\n@@ -155,6 +1...
JavaScript
MIT License
lerna/lerna
docs(readme): document npmClientArgs on lerna.json (#1514) [skip ci] One small step towards #1283
1
docs
readme
807,960
26.07.2018 07:58:52
-28,800
878073ab43c77a34716606c4d6fc717f91ce4f9c
docs: Fix link to hoist docs in bootstrap README [skip ci]
[ { "change_type": "MODIFY", "diff": "@@ -49,7 +49,7 @@ the default is `**` (hoist everything). This option only affects the\n$ lerna bootstrap --hoist\n```\n-For background on `--hoist`, see the [hoist documentation](doc/hoist.md).\n+For background on `--hoist`, see the [hoist documentation](../../doc/hoist....
JavaScript
MIT License
lerna/lerna
docs: Fix link to hoist docs in bootstrap README (#1518) [skip ci]
1
docs
null
217,922
26.07.2018 10:05:46
-7,200
26bd117b554ea618a8ba3cf446ba8d24d1ad1ae8
chore: fix for CI build on PR
[ { "change_type": "MODIFY", "diff": "@@ -605,6 +605,8 @@ export class ListDetailsComponent extends ComponentWithSubscriptions implements\ndata: this.listData.modificationsHistory\n.sort((a, b) => a.date > b.date ? -1 : 1)\n});\n+ }\n+\npublic assignTeam(list: List, team: Team): void {\nlist.teamId = team.$ke...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: fix for CI build on PR
1
chore
null
217,922
26.07.2018 10:32:10
-7,200
be0872bed61e7ee93a75fe8ae2738d3eb63e2bc8
chore: updated translation report file
[ { "change_type": "MODIFY", "diff": "de | es | fr | ja | pt |\n:---: | :---: | :---: | :---: | :---: |\n-91% | 96% | 97% | 27% | 69% |\n+91% | 95% | 97% | 27% | 68% |\n## Categories details :\n@@ -21,7 +21,7 @@ ALARM | 67% | 67% | 100% | 0% | 67% |\nSETTINGS | 90% | 70% | 100% | 10% | 60% |\nPROFILE | 95% | ...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: updated translation report file
1
chore
null
217,922
26.07.2018 10:42:39
-7,200
a800061cda5db71de8702b9f09334044967d45d8
chore: updated translation report file with a bug fix for SIMULATOR keys
[ { "change_type": "MODIFY", "diff": "de | es | fr | ja | pt |\n:---: | :---: | :---: | :---: | :---: |\n-91% | 95% | 97% | 27% | 68% |\n+91% | 96% | 97% | 28% | 68% |\n## Categories details :\n@@ -33,7 +33,7 @@ ANNOUNCEMENT | 100% | 100% | 100% | 50% | 100% |\nLIST_TEMPLATE | 100% | 100% | 100% | 0% | 100% |...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: updated translation report file with a bug fix for SIMULATOR keys
1
chore
null
217,922
26.07.2018 11:12:44
-7,200
dd4c4ab55d1d6f2d2adbe27a7348c37b38d68522
chore: added FR translations for 4.4
[ { "change_type": "MODIFY", "diff": "# Translation completion report\n-**Global completion** : 76%\n+**Global completion** : 77%\nde | es | fr | ja | pt |\n:---: | :---: | :---: | :---: | :---: |\n-91% | 96% | 97% | 28% | 68% |\n+91% | 96% | 100% | 28% | 68% |\n## Categories details :\n@@ -36,9 +36,9 @@ WIKI...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: added FR translations for 4.4
1
chore
null
791,723
26.07.2018 11:50:03
25,200
d666ad7d687249073b9b97fd81fdd1e564681e01
report: (minor) add license to HTML files
[ { "change_type": "MODIFY", "diff": "<!--\n-Copyright 2017 Google Inc. All Rights Reserved.\n+@license Copyright 2017 Google Inc. All Rights Reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of t...
JavaScript
Apache License 2.0
googlechrome/lighthouse
report: (minor) add license to HTML files (#5731)
1
report
null
791,834
26.07.2018 13:35:56
25,200
0421b6cbe42d0a0a9fdfdb245d9d158c3ae9aa6d
core: adjust audit titles for consistency
[ { "change_type": "MODIFY", "diff": "@@ -12,7 +12,7 @@ const i18n = require('../lib/i18n');\nconst UIStrings = {\ntitle: 'JavaScript boot-up time',\n- failureTitle: 'JavaScript boot-up time is too high',\n+ failureTitle: 'Reduce JavaScript boot-up time',\ndescription: 'Consider reducing the time spent parsin...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core: adjust audit titles for consistency (#5717)
1
core
null
679,913
26.07.2018 15:29:30
-3,600
eb3f66fbe9274db282b1c4cd3a8d999d4d3d3243
test(vectors): add tests
[ { "change_type": "MODIFY", "diff": "@@ -34,4 +34,9 @@ describe(\"vec2\", () => {\nit(\"subn\", () => opn(v.sub2n, -9, -8));\nit(\"muln\", () => opn(v.mul2n, 10, 20));\nit(\"divn\", () => opn(v.div2n, 0.1, 0.2));\n+\n+ it(\"eqdelta\", () => {\n+ assert(v.eqDelta2([0, 1.001, 0, 1.999, 0], [1, 2], 0.01, 1, 0, ...
TypeScript
Apache License 2.0
thi-ng/umbrella
test(vectors): add tests
1
test
vectors
791,690
26.07.2018 16:02:02
25,200
5633819f7f5ba8ab8ae8af5addca92dae367ffd9
core(i18n): support descriptions
[ { "change_type": "MODIFY", "diff": "'use strict';\nconst ByteEfficiencyAudit = require('./byte-efficiency-audit');\n-// @ts-ignore - TODO: https://github.com/DefinitelyTyped/DefinitelyTyped/pull/25410\nconst esprima = require('esprima');\nconst i18n = require('../../lib/i18n');\n@@ -54,7 +53,8 @@ class Unmi...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(i18n): support descriptions (#5718)
1
core
i18n
791,723
26.07.2018 18:03:36
25,200
658a5e50a01000768f2506739bb90215902b1239
core(i18n): add [ICU Syntax] label to relevant message descriptions
[ { "change_type": "MODIFY", "diff": "@@ -15,6 +15,7 @@ const UIStrings = {\n'Large network payloads cost users real money and are highly correlated with ' +\n'long load times. [Learn ' +\n'more](https://developers.google.com/web/tools/lighthouse/audits/network-payloads).',\n+ /** [ICU Syntax] Used to summari...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(i18n): add [ICU Syntax] label to relevant message descriptions (#5736)
1
core
i18n
679,913
26.07.2018 18:12:47
-3,600
21b04f06366066680f4e0caafdf1dffa1bbcfd8c
feat(vectors): re-import updated mat44, add orthoNormal3
[ { "change_type": "MODIFY", "diff": "@@ -127,7 +127,7 @@ export const invert23 = (m: Mat, i = 0) => {\nconst m21 = m[i + 5];\nlet det = m00 * m11 - m01 * m10;\nif (!det) {\n- return null;\n+ return;\n}\ndet = 1.0 / det;\nreturn set23s(\n", "new_path": "packages/vectors/src/mat23.ts", "old_path": "pac...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(vectors): re-import updated mat44, add orthoNormal3
1
feat
vectors
807,849
26.07.2018 18:25:25
25,200
ef1210e8fa7a497d7a47869dd4d1878c1f7c553f
docs(bootstrap): Make link to hoist docs absolute
[ { "change_type": "MODIFY", "diff": "@@ -49,7 +49,7 @@ the default is `**` (hoist everything). This option only affects the\n$ lerna bootstrap --hoist\n```\n-For background on `--hoist`, see the [hoist documentation](../../doc/hoist.md).\n+For background on `--hoist`, see the [hoist documentation](https://gi...
JavaScript
MIT License
lerna/lerna
docs(bootstrap): Make link to hoist docs absolute
1
docs
bootstrap
679,913
26.07.2018 18:44:12
-3,600
29500b6db41063c4cdf1166d8de115ce78bffea6
build: add babel-minify dev dependency
[ { "change_type": "MODIFY", "diff": "\"packages/*\"\n],\n\"devDependencies\": {\n+ \"babel-minify\": \"^0.4.3\",\n\"benchmark\": \"^2.1.4\",\n\"lerna\": \"^2.11.0\",\n\"mocha\": \"^5.1.1\",\n", "new_path": "package.json", "old_path": "package.json" }, { "change_type": "MODIFY", "diff": "B...
TypeScript
Apache License 2.0
thi-ng/umbrella
build: add babel-minify dev dependency
1
build
null
217,927
26.07.2018 22:49:39
0
7a2160a91cc216485677390bfb6fb30eacd314f2
refactor: list and workshop button order Moves the open button to the far left and the security & delete buttons to the far right. This should better order the buttons from most to least used. Also colors the delete button red, since it is destructive.
[ { "change_type": "MODIFY", "diff": "</mat-panel-description>\n</div>\n<div class=\"buttons\" *ngIf=\"!isMobile()\">\n+ <button mat-icon-button *ngIf=\"buttons\" routerLink=\"/list/{{list.$key}}\"\n+ matTooltip=\"{{'LIST.BUTTONS.Open' | translate}}\" matTooltipPosition=\"above\"\n+ (click)=\"$event.stopPropa...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
refactor: list and workshop button order Moves the open button to the far left and the security & delete buttons to the far right. This should better order the buttons from most to least used. Also colors the delete button red, since it is destructive.
1
refactor
null
791,723
27.07.2018 10:58:56
25,200
56b7fbf9a87f85d5520d2238cb13a42f52b52743
core(i18n): reframe the ICU message descriptions with placeholders
[ { "change_type": "MODIFY", "diff": "@@ -15,7 +15,7 @@ const UIStrings = {\n'Large network payloads cost users real money and are highly correlated with ' +\n'long load times. [Learn ' +\n'more](https://developers.google.com/web/tools/lighthouse/audits/network-payloads).',\n- /** [ICU Syntax] Used to summari...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(i18n): reframe the ICU message descriptions with placeholders (#5737)
1
core
i18n
791,723
27.07.2018 17:15:37
25,200
65b2a1eff5182b5f2f0ed4e511b8aab3ca43533f
core(i18n): add strings of the opportunity group split (first paint, overall)
[ { "change_type": "MODIFY", "diff": "@@ -19,6 +19,14 @@ const UIStrings = {\nloadOpportunitiesGroupTitle: 'Opportunities',\n/** Description of the opportunity section of the Performance category. 'Optimizations' could also be 'recommendations' or 'suggestions'. Within this section are audits with imperative ...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(i18n): add strings of the opportunity group split (first paint, overall) (#5744)
1
core
i18n
807,849
27.07.2018 18:54:44
25,200
8f4798a5f0d1f4280b31ca51976d48207563a147
chore(run): Restore local file: specifier dependency
[ { "change_type": "MODIFY", "diff": "\"@lerna/npm-run-script\": \"file:../../utils/npm-run-script\",\n\"@lerna/output\": \"file:../../utils/output\",\n\"@lerna/run-parallel-batches\": \"file:../../utils/run-parallel-batches\",\n- \"@lerna/validation-error\": \"^3.0.0-rc.0\",\n+ \"@lerna/validation-error\": \...
JavaScript
MIT License
lerna/lerna
chore(run): Restore local file: specifier dependency
1
chore
run
807,849
27.07.2018 19:02:44
25,200
f1cb15e38951f12c10498c19df7697f696008e00
chore(helpers): Extract serialize-tempdir
[ { "change_type": "MODIFY", "diff": "\"use strict\";\n-const fs = require(\"fs\");\n-const os = require(\"os\");\n-const path = require(\"path\");\n-const normalizePath = require(\"normalize-path\");\n-\n// mocked modules\nconst output = require(\"@lerna/output\");\n@@ -17,15 +12,8 @@ const lernaLs = require...
JavaScript
MIT License
lerna/lerna
chore(helpers): Extract serialize-tempdir
1
chore
helpers
807,849
27.07.2018 19:11:46
25,200
14892069bdc8850de02158a19f940f1f08626615
chore(helpers): Extract multi-line-trim-right
[ { "change_type": "MODIFY", "diff": "\"use strict\";\nconst chalk = require(\"chalk\");\n-const normalizeNewline = require(\"normalize-newline\");\n+const multiLineTrimRight = require(\"@lerna-test/multi-line-trim-right\");\n// keep snapshots stable cross-platform\nchalk.enabled = false;\n@@ -10,14 +10,7 @@ ...
JavaScript
MIT License
lerna/lerna
chore(helpers): Extract multi-line-trim-right
1
chore
helpers
217,927
27.07.2018 22:09:59
0
dde2d8a7973eefaf5ac5cd9a6ac10d79688c5cd8
refactor: recipe search striping Striping odd rows instead of even rows. Lowered the opacity of the striping to provide a less harsh contrast, especially for light themes.
[ { "change_type": "MODIFY", "diff": "</div>\n<div *ngIf=\"results.length > 0 && !loading\">\n- <mat-list-item *ngFor=\"let item of results; let even = even\" class=\"recipes-list-row\" [class.even]=\"even\">\n+ <mat-list-item *ngFor=\"let item of results; let odd = odd\" class=\"recipes-list-row\" [class.odd...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
refactor: recipe search striping Striping odd rows instead of even rows. Lowered the opacity of the striping to provide a less harsh contrast, especially for light themes.
1
refactor
null
791,714
28.07.2018 02:28:04
-32,400
2e2acf15d93f016086e275e9788f34a4f69b4fae
extension: remove X-UA-Compatible meta
[ { "change_type": "MODIFY", "diff": "@@ -8,7 +8,6 @@ Unless required by applicable law or agreed to in writing, software distributed\n<html>\n<head>\n<meta charset=\"utf-8\">\n- <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge,chrome=1\">\n<meta name=\"author\" content=\"Lighthouse Team\">\n<meta name=...
JavaScript
Apache License 2.0
googlechrome/lighthouse
extension: remove X-UA-Compatible meta (#5739)
1
extension
null
679,913
28.07.2018 11:30:36
-3,600
1f0551d09941489fd10faf0469bca748fcbeecc3
refactor(vectors): various small fixes/additions (matrices)
[ { "change_type": "MODIFY", "diff": "@@ -7,11 +7,33 @@ This project is part of the\n<!-- TOC depthFrom:2 depthTo:3 -->\n+- [About](#about)\n+- [Installation](#installation)\n+- [Usage examples](#usage-examples)\n+- [Authors](#authors)\n+- [License](#license)\n+\n<!-- /TOC -->\n## About\n-TODO...\n+Vector and...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(vectors): various small fixes/additions (matrices)
1
refactor
vectors
679,913
29.07.2018 02:07:13
-3,600
e3c616759228aa7952291643afb32e48687e3927
feat(vectors): add generic vec fns & class wrapper
[ { "change_type": "ADD", "diff": "+import { ICopy, IEqualsDelta } from \"@thi.ng/api/api\";\n+import { ReadonlyVec, Vec } from \"./api\";\n+import { eqDelta } from \"./common\";\n+import {\n+ clamp1,\n+ EPS,\n+ sign1,\n+ smoothStep1,\n+ step1\n+} from \"./math\";\n+\n+export const opg1 = (fn: (x: number) => ...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(vectors): add generic vec fns & class wrapper
1
feat
vectors
217,922
29.07.2018 14:56:50
-7,200
935b223b352517cff12c2962bf44ab28651bfe32
feat: add commission creation date in the commission panel and details
[ { "change_type": "MODIFY", "diff": "-Subproject commit 83f43d1dff3681a139d17d9f9b5e4f1740c1aae4\n+Subproject commit b352c0965f6537ee9181b55144377ada6309a4bb\n", "new_path": "data-extraction/SaintCoinach", "old_path": "data-extraction/SaintCoinach" }, { "change_type": "MODIFY", "diff": "\...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat: add commission creation date in the commission panel and details
1
feat
null
679,913
29.07.2018 18:36:58
-3,600
f99cf3dc52d2ac139c6fda5d05697f640765f8c6
refactor(vectors): add gvec default length args
[ { "change_type": "MODIFY", "diff": "@@ -9,74 +9,74 @@ import {\nstep1\n} from \"./math\";\n-export const opg1 = (fn: (x: number) => number, a: Vec, n: number, i = 0, s = 1) => {\n- while (--n >= 0) {\n- a[i + n * s] = fn(a[i + n * s]);\n+export const opg1 = (fn: (x: number) => number, a: Vec, num = a.length...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(vectors): add gvec default length args
1
refactor
vectors
679,913
29.07.2018 18:38:00
-3,600
54b3db2d234fd7f217b1965d67adaace425e7cd8
feat(vectors): update get & copy fns to retain buffer types
[ { "change_type": "MODIFY", "diff": "@@ -10,6 +10,9 @@ import {\nVec2\n} from \"./vec2\";\n+export const get23 = (a: Mat, i = 0) =>\n+ set23(new (<any>(a.constructor))(6), a, 0, i);\n+\nexport const set23 = (a: Mat, b: Mat, ia = 0, ib = 0) => (\na[ia] = b[ib],\na[ia + 1] = b[ib + 1],\n@@ -217,7 +220,7 @@ exp...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(vectors): update get & copy fns to retain buffer types
1
feat
vectors
679,913
29.07.2018 18:39:01
-3,600
d2bdf79ec38b54cad33b14be5e7042da14d739a3
refactor(vector): update eqDelta impls, rename array transformers
[ { "change_type": "MODIFY", "diff": "@@ -7,18 +7,32 @@ export const z = (v: ReadonlyVec, i = 0, s = 1) => v[i + 2 * s];\nexport const w = (v: ReadonlyVec, i = 0, s = 1) => v[i + 3 * s];\n/**\n+ * Applies vector op `fn` to all raw vectors in array `a`, using raw\n+ * vector `b` as 2nd argument for each iterat...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(vector): update eqDelta impls, rename array transformers
1
refactor
vector
679,913
29.07.2018 18:39:25
-3,600
6571b8a3c89bc684412052baa62682adb2f363cc
test(vectors): add gvec tests
[ { "change_type": "ADD", "diff": "+import * as assert from \"assert\";\n+import * as v from \"../src/index\";\n+\n+describe(\"gvec\", () => {\n+\n+ const op2 = (fn, x, y, z, w) => {\n+ assert.deepEqual(\n+ fn([1, 2, 3, 4], [10, 20, 30, 40], 4),\n+ [x, y, z, w]\n+ );\n+ assert.deepEqual(\n+ fn([0, 1, 0, 0, 0,...
TypeScript
Apache License 2.0
thi-ng/umbrella
test(vectors): add gvec tests
1
test
vectors
217,927
29.07.2018 20:29:11
0
18f21055cb56014da61192968046e8b7bdf42564
refactor: crafting cost Simplifies the logic for calculating the crafting cost now that the form guarantees the sum of the NQ and HQ amounts is equal to the total required amount.
[ { "change_type": "MODIFY", "diff": "@@ -70,7 +70,7 @@ export class PricingComponent {\n}\n/**\n- * Gets the minimum crafting cost of a given item.\n+ * Gets the crafting cost of a given item.\n* @param {ListRow} row\n* @returns {number}\n*/\n@@ -83,26 +83,7 @@ export class PricingComponent {\n}\nconst price...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
refactor: crafting cost Simplifies the logic for calculating the crafting cost now that the form guarantees the sum of the NQ and HQ amounts is equal to the total required amount.
1
refactor
null
679,913
29.07.2018 21:13:29
-3,600
ae1da134bc989082779c84dfb6019f73843ec16b
docs(vectors): update readme & package info
[ { "change_type": "MODIFY", "diff": "@@ -13,7 +13,7 @@ This project is part of the\n- [Installation](#installation)\n- [Usage examples](#usage-examples)\n- [Basics](#basics)\n- - [Interleaved vectors in large buffer](#interleaved-vectors-in-large-buffer)\n+ - [Vector classes & interleaved vectors in large bu...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs(vectors): update readme & package info
1
docs
vectors
679,913
30.07.2018 00:32:11
-3,600
3de5cea494f45e380c3e8db4f4a83b81e0830ba4
fix(vectors): naming convention, add function overview tables
[ { "change_type": "MODIFY", "diff": "@@ -49,16 +49,103 @@ arbitrary sizes, `add2` for 2D vectors, `add3` for 3D, `add4` for 4D...\nAll vector operations (regardless of size) operate on any array-like\nbuffer and accept optional start indices and component strides (number\nof elements (+1) between individual ...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(vectors): naming convention, add function overview tables
1
fix
vectors
679,913
30.07.2018 04:02:31
-3,600
3534274aba1186db27f2dde5ba882a7fb43b303f
fix(vectors): get*() return types, refactor using set*()
[ { "change_type": "MODIFY", "diff": "@@ -30,13 +30,8 @@ export const opg3 = (fn: (x: number, y: number, z: number) => number, a: Vec, b:\nreturn a;\n};\n-export const get = (a: ReadonlyVec, num = a.length, i = 0, s = 1) => {\n- const res = new (<any>(a.constructor))(num);\n- for (let j = 0; j < num; j++ , i ...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(vectors): get*() return types, refactor using set*()
1
fix
vectors
730,413
30.07.2018 09:42:41
14,400
f9a5ba402547ae725310f372036d373b2807c8bc
feat(widget-recents): use new avatar design
[ { "change_type": "MODIFY", "diff": "\"<rootDir>/src/\"\n],\n\"testPathIgnorePatterns\": [\"<rootDir>/node_modules/\"],\n+ \"testURL\": \"http://localhost\",\n\"transformIgnorePatterns\": [\"<rootDir>/node_modules/\"],\n\"moduleNameMapper\": {\n\"^.+\\\\.(css|less)$\": \"identity-obj-proxy\",\n", "new_pa...
JavaScript
MIT License
webex/react-widgets
feat(widget-recents): use new avatar design
1
feat
widget-recents
807,849
30.07.2018 10:45:20
25,200
acfd48bd3d899965d27a79763bd2e50c2706e752
fix(create): Use filename without scope when generating imports from test file
[ { "change_type": "MODIFY", "diff": "@@ -399,7 +399,7 @@ class CreateCommand extends Command {\nwriteTestFile() {\nconst testContent = this.options.esModule\n? dedent`\n- import ${this.camelName} from '../src/${this.pkgName}';\n+ import ${this.camelName} from '../src/${this.dirName}';\ndescribe('${this.pkgNa...
JavaScript
MIT License
lerna/lerna
fix(create): Use filename without scope when generating imports from test file
1
fix
create
815,745
30.07.2018 11:15:13
-10,800
1bc3f02f6f4fae7ebbc499065b77aeca1b3a8078
fix: focus select after unselecting single item fixes
[ { "change_type": "MODIFY", "diff": "@@ -2615,9 +2615,9 @@ describe('NgSelectComponent', function () {\nexpect(select.isOpen).toBe(false);\n}));\n- it('should focus dropdown', fakeAsync(() => {\n+ it('should focus dropdown while unselecting', fakeAsync(() => {\nconst focus = spyOn(select, 'focus');\n- trigge...
TypeScript
MIT License
ng-select/ng-select
fix: focus select after unselecting single item fixes #661
1
fix
null
815,745
30.07.2018 12:33:20
-10,800
a7778ab0a76c1fcea4b28c239bf77844931793cf
chore(release): 2.3.6
[ { "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.3.6\"></a>\n+## [2.3.6](https://github.com/ng-select/ng-select/compare/v2.3.5...v2....
TypeScript
MIT License
ng-select/ng-select
chore(release): 2.3.6
1
chore
release
807,849
30.07.2018 13:20:53
25,200
bf56018f3bcf4db5b8ecc899c3afa32ec8bb2b17
feat(list): Extract utility
[ { "change_type": "MODIFY", "diff": "\"use strict\";\nconst filterable = require(\"@lerna/filter-options\");\n+const listable = require(\"@lerna/listable\");\n/**\n* @see https://github.com/yargs/yargs/blob/master/docs/advanced.md#providing-a-command-module\n@@ -12,31 +13,7 @@ exports.aliases = [\"ls\", \"la...
JavaScript
MIT License
lerna/lerna
feat(list): Extract @lerna/listable utility
1
feat
list
217,922
30.07.2018 13:29:40
-7,200
0a9a69056133456a3b09dfbcec3845b897034b90
fix: fixed an issue with change detection inside pricing mode By using trackBy, the changes are now propagated properly without the need to re-create each row, resulting in a performance gain and a way better UX when you check/uncheck an item.
[ { "change_type": "MODIFY", "diff": "<mat-panel-title>{{\"Crystals\" | translate}}</mat-panel-title>\n</mat-expansion-panel-header>\n<mat-list dense>\n- <app-pricing-row *ngFor=\"let item of list.crystals; let odd = odd\" (save)=\"save()\" [item]=\"item\"\n+ <app-pricing-row *ngFor=\"let item of list.crystal...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix: fixed an issue with change detection inside pricing mode By using trackBy, the changes are now propagated properly without the need to re-create each row, resulting in a performance gain and a way better UX when you check/uncheck an item.
1
fix
null
807,849
30.07.2018 13:51:40
25,200
41f231fd241fab02cc028db9d029e76e5ef3e994
fix(add): Support explicit & implicit relative file: specifiers
[ { "change_type": "MODIFY", "diff": "@@ -11,6 +11,7 @@ const bootstrap = require(\"@lerna/bootstrap\");\n// helpers\nconst initFixture = require(\"@lerna-test/init-fixture\")(__dirname);\nconst pkgMatchers = require(\"@lerna-test/pkg-matchers\");\n+const { getPackages } = require(\"@lerna/project\");\n// fil...
JavaScript
MIT License
lerna/lerna
fix(add): Support explicit & implicit relative file: specifiers
1
fix
add
791,723
30.07.2018 14:35:32
25,200
cebdfae38946a93ac169870d9af5ac64ffe2364a
report: adopt 80-char line-length license
[ { "change_type": "MODIFY", "diff": "/**\n- * @license Copyright 2017 Google Inc. All Rights Reserved.\n- * Licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses...
JavaScript
Apache License 2.0
googlechrome/lighthouse
report: adopt 80-char line-length license (#5757)
1
report
null
791,834
30.07.2018 14:47:19
25,200
e367395c564878d396d9abbeb880c521581e3085
core(i18n): add locale fallback when language not supported
[ { "change_type": "MODIFY", "diff": "const defaultConfigPath = './default-config.js';\nconst defaultConfig = require('./default-config.js');\nconst fullConfig = require('./full-config.js');\n-const constants = require('./constants');\n+const constants = require('./constants.js');\n+const i18n = require('./.....
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(i18n): add locale fallback when language not supported (#5746)
1
core
i18n
807,849
30.07.2018 15:17:08
25,200
6ecdd83d14f3b9d0cac62cc68b4066ec554e79ce
feat(changed): Support list output options BREAKING CHANGE: The package names emitted to stdout are no longer prefixed by a "- ", and private packages are no longer displayed by default.
[ { "change_type": "MODIFY", "diff": "# `@lerna/changed`\n-> Check which packages have changed since the last publish\n+> List local packages that have changed since the last tagged release\n## Usage\n+The output of `lerna changed` is a list of packages that would be the subjects of the next `lerna version` o...
JavaScript
MIT License
lerna/lerna
feat(changed): Support list output options BREAKING CHANGE: The package names emitted to stdout are no longer prefixed by a "- ", and private packages are no longer displayed by default.
1
feat
changed
807,849
30.07.2018 15:18:48
25,200
84d961c2ef75b27bf88ab3373f52cf92d3971522
docs: Add root link to version command
[ { "change_type": "MODIFY", "diff": "* [Troubleshooting](#troubleshooting)\n* Commands\n- [`lerna publish`](./commands/publish#readme)\n+ - [`lerna version`](./commands/version#readme)\n- [`lerna bootstrap`](./commands/bootstrap#readme)\n- [`lerna list`](./commands/list#readme)\n- [`lerna changed`](./command...
JavaScript
MIT License
lerna/lerna
docs: Add root link to version command
1
docs
null
807,849
30.07.2018 15:19:50
25,200
dff8176db77fe463025aadc7ec11821be8c53e5a
docs(list): Add options TOC, fix location format, tweak option headings
[ { "change_type": "MODIFY", "diff": "@@ -24,9 +24,14 @@ In any case, you can always pass `--loglevel silent` to create pristine chains o\n## Options\n+* [`--json`](#--json)\n+* [`-a`, `--all`](#--all)\n+* [`-l`, `--long`](#--long)\n+* [`-p`, `--parseable`](#--parseable)\n+\n`lerna ls` respects the `--ignore`...
JavaScript
MIT License
lerna/lerna
docs(list): Add options TOC, fix location format, tweak option headings
1
docs
list
807,849
30.07.2018 15:20:08
25,200
aa6d3d02983f4a47fc92862cdb0fb9d3f4f7f723
docs(version): Document --ignore-changes option
[ { "change_type": "MODIFY", "diff": "@@ -43,6 +43,7 @@ If you have any packages with a prerelease version number (e.g. `2.0.0-beta.3`)\n* [`--changelog-preset`](#--changelog-preset)\n* [`--exact`](#--exact)\n* [`--force-publish`](#--force-publish)\n+* [`--ignore-changes`](#--ignore-changes)\n* [`--git-remote...
JavaScript
MIT License
lerna/lerna
docs(version): Document --ignore-changes option
1
docs
version