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 ⌀ |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
67,476 | 04.11.2018 21:22:02 | -3,600 | d464e12752023f96754b4d6a45a2d07eff1ea4a9 | fix(kernel): fix small regression in decorator typings and add clarifications | [
{
"change_type": "MODIFY",
"diff": "@@ -16,7 +16,15 @@ export type Decoratable<TOptional, TRequired> = Function & {\n};\nexport type Decorated<TOptional, TRequired> = Function & {\nreadonly prototype: Required<TOptional> & Required<TRequired>;\n- new(...args: unknown[]): unknown;\n+ // Constructor signature... | TypeScript | MIT License | aurelia/aurelia | fix(kernel): fix small regression in decorator typings and add clarifications | 1 | fix | kernel |
67,476 | 04.11.2018 21:29:33 | -3,600 | bf48fceaa20c03c57a622121d8585d1f1edddfd2 | fix(kernel): fix a small typing regression in iindexable and add clarification | [
{
"change_type": "MODIFY",
"diff": "@@ -29,7 +29,13 @@ export type Decorated<TOptional, TRequired> = Function & {\nexport type Injectable<T = {}> = Constructable<T> & { inject?: unknown[] };\n-export type IIndexable<T extends object = object> = T & { [key: string]: unknown };\n+// Note: use of \"any\" here ... | TypeScript | MIT License | aurelia/aurelia | fix(kernel): fix a small typing regression in iindexable and add clarification | 1 | fix | kernel |
67,476 | 05.11.2018 04:01:08 | -3,600 | b0dbe1c6a6b3b7cafed2f695cb4a6c754155321f | refactor(expression-parser): get rid of exponentiation to preserve ES2015 parser compatibility
And move to native number parsing for simplity | [
{
"change_type": "MODIFY",
"diff": "@@ -719,51 +719,35 @@ function scanIdentifier(state: ParserState): Token {\n}\nfunction scanNumber(state: ParserState, isFloat: boolean): Token {\n- if (isFloat) {\n- state.tokenValue = 0;\n- } else {\n- state.tokenValue = state.currentChar - Char.Zero;\n- while (nextChar... | TypeScript | MIT License | aurelia/aurelia | refactor(expression-parser): get rid of exponentiation to preserve ES2015 parser compatibility
And move to native number parsing for simplity | 1 | refactor | expression-parser |
67,476 | 05.11.2018 05:06:47 | -3,600 | 1d39b89ecaaeca184436e137ada9bc1643a5c199 | chore(examples): fix jit-parcel-ts | [
{
"change_type": "ADD",
"diff": "+{\n+ \"plugins\": [\n+ \"transform-class-properties\",\n+ \"transform-decorators-legacy\"\n+ ]\n+}\n",
"new_path": "examples/jit-parcel-ts/.babelrc",
"old_path": null
},
{
"change_type": "MODIFY",
"diff": "},\n\"devDependencies\": {\n\"@types/node\": \"l... | TypeScript | MIT License | aurelia/aurelia | chore(examples): fix jit-parcel-ts | 1 | chore | examples |
471,527 | 05.11.2018 05:46:18 | -3,600 | 123890938c1e5a2840e6ad29dfc889c7becec36e | fix: testing can not be run in parallel
A single browser can not run tests in multiple packages at the same
time. Limiting concurrency to 1. | [
{
"change_type": "MODIFY",
"diff": "\"publish\": \"lerna publish --message 'chore: release new versions'\",\n\"site:build\": \"npm run vuepress:build\",\n\"site:start\": \"npm run vuepress:start\",\n- \"test\": \"lerna run test --stream\",\n- \"test:bs\": \"lerna run test:bs --stream\",\n+ \"test\": \"lerna... | JavaScript | MIT License | open-wc/open-wc | fix: testing can not be run in parallel
A single browser can not run tests in multiple packages at the same
time. Limiting concurrency to 1. | 1 | fix | null |
67,476 | 05.11.2018 08:26:37 | -3,600 | dac6c351af29125ffaf305fa5cddbef5c40fa84a | chore(examples): attempt at fixing parcel example | [
{
"change_type": "MODIFY",
"diff": "@@ -16,6 +16,7 @@ map-1: &package_globs\n- dist\n- packages/*/dist\n- packages/*/node_modules\n+ - packages/*/*.tgz\nmap-2: &filter_ignore_develop_release\nfilters:\n@@ -164,6 +165,12 @@ commands:\nname: \"Bundle packages\"\ncommand: npm run bundle:all\n+ do_publish_local... | TypeScript | MIT License | aurelia/aurelia | chore(examples): attempt #2 at fixing parcel example | 1 | chore | examples |
504,035 | 05.11.2018 10:05:11 | 18,000 | 082bb8d9360841e242a177074b6e19d3a477adbb | fix(typescript): Export LoginBox and make PageSection props optional | [
{
"change_type": "MODIFY",
"diff": "@@ -12,6 +12,7 @@ export * from './Checkbox';\nexport * from './Dropdown';\nexport * from './Form';\nexport * from './List';\n+export * from './LoginBox';\nexport * from './Modal';\nexport * from './Nav';\nexport * from './Progress';\n",
"new_path": "packages/patternf... | TypeScript | MIT License | patternfly/patternfly-react | fix(typescript): Export LoginBox and make PageSection props optional (#880) | 1 | fix | typescript |
71,663 | 05.11.2018 10:31:42 | 28,800 | f32cba93e7dca9ae83f5f715e201b08944be45da | fix(aws-codebuild): correctly set S3 path when using it as artifact. | [
{
"change_type": "MODIFY",
"diff": "@@ -72,7 +72,7 @@ export class S3BucketBuildArtifacts extends BuildArtifacts {\nreturn {\ntype: 'S3',\nlocation: this.props.bucket.bucketName,\n- path: this.props.bucket.path,\n+ path: this.props.path,\nnamespaceType: this.parseNamespaceType(this.props.includeBuildID),\nn... | TypeScript | Apache License 2.0 | aws/aws-cdk | fix(aws-codebuild): correctly set S3 path when using it as artifact. (#1072) | 1 | fix | aws-codebuild |
67,482 | 05.11.2018 10:58:47 | 28,800 | c4701d0fe3f31255ad4e70ad47b5c2650817797c | doc(readme): point devs to the examples folder | [
{
"change_type": "MODIFY",
"diff": "@@ -25,7 +25,7 @@ This is the Aurelia vNext monorepo, containing core and plugin packages, example\n> Please keep in mind that vNext is still in pre-alpha and by no means ready for production (or even development) yet. Many core features and use cases around the public AP... | TypeScript | MIT License | aurelia/aurelia | doc(readme): point devs to the examples folder | 1 | doc | readme |
217,922 | 05.11.2018 11:51:42 | -3,600 | 6f44e859b846cb146ffbabf19c1f0d844c881d51 | feat: defined notifications language on team level
TODO: change language in team details. | [
{
"change_type": "MODIFY",
"diff": "import { HttpClient } from '@angular/common/http';\nimport { TranslateService } from '@ngx-translate/core';\nimport { Injectable } from '@angular/core';\n+import { I18nToolsService } from './tools/i18n-tools.service';\n+import { first, switchMap } from 'rxjs/operators';\n... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: defined notifications language on team level
TODO: change language in team details. | 1 | feat | null |
71,663 | 05.11.2018 12:33:35 | 28,800 | b1322bbc45adc6f4b933a859b549776497c33d7c | fix(aws-codebuild): correctly pass the timeout property to CFN when creating a Project. | [
{
"change_type": "MODIFY",
"diff": "@@ -523,6 +523,7 @@ export class Project extends ProjectRef {\nbadgeEnabled: props.badge,\ncache,\nname: props.projectName,\n+ timeoutInMinutes: props.timeout,\n});\nthis.projectArn = resource.projectArn;\n",
"new_path": "packages/@aws-cdk/aws-codebuild/lib/project.ts... | TypeScript | Apache License 2.0 | aws/aws-cdk | fix(aws-codebuild): correctly pass the timeout property to CFN when creating a Project. (#1071) | 1 | fix | aws-codebuild |
791,723 | 05.11.2018 12:48:47 | 28,800 | f4aa2c665483e684ff4c4286865460df57f2993e | misc(timing): move timing-trace to async events | [
{
"change_type": "MODIFY",
"diff": "*/\n'use strict';\n-/**\n- * Technically, it's fine for usertiming measures to overlap, however non-async events make\n- * for a much clearer UI in traceviewer. We do this check to make sure we aren't passing off\n- * async-like measures as non-async.\n- * prevEntries are... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | misc(timing): move timing-trace to async events (#6440) | 1 | misc | timing |
503,951 | 05.11.2018 13:06:44 | 18,000 | 80e54dfa18a908cb1d975fad610a292564c77eb8 | fix(overlay): add anchor tag to filter overlay | [
{
"change_type": "MODIFY",
"diff": "@@ -174,7 +174,7 @@ class PageLayoutDefaultNav extends React.Component {\n[BackgroundImageSrc.xl]: '/assets/images/pfbg_2000.jpg',\n[BackgroundImageSrc.xs]: '/assets/images/pfbg_576.jpg',\n[BackgroundImageSrc.xs2x]: '/assets/images/pfbg_576@2x.jpg',\n- [BackgroundImageSrc... | TypeScript | MIT License | patternfly/patternfly-react | fix(overlay): add anchor tag to filter overlay (#883) | 1 | fix | overlay |
791,723 | 05.11.2018 13:35:38 | 28,800 | d6862935d8502b841810fac1d6012ac55fe0026f | report: add details-element polyfill for Edge | [
{
"change_type": "MODIFY",
"diff": "@@ -11,6 +11,9 @@ const REPORT_TEMPLATE = fs.readFileSync(__dirname + '/report-template.html', 'ut\nconst REPORT_JAVASCRIPT = [\nfs.readFileSync(__dirname + '/renderer/util.js', 'utf8'),\nfs.readFileSync(__dirname + '/renderer/dom.js', 'utf8'),\n+ // COMPAT: Remove when M... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | report: add details-element polyfill for Edge (#6465) | 1 | report | null |
217,922 | 05.11.2018 15:28:59 | -3,600 | 66ff6f25afd5e20e67e7f21b9203d782c5d512a6 | feat: you can now assign a list to a team ! | [
{
"change_type": "MODIFY",
"diff": "@@ -6,13 +6,15 @@ import { ListsState } from './lists.reducer';\nimport { listsQuery } from './lists.selectors';\nimport {\nCreateList,\n- DeleteList, LoadCommunityLists,\n+ DeleteList,\n+ LoadCommunityLists,\nLoadListCompact,\nLoadListDetails,\nLoadListsWithWriteAccess,\... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: you can now assign a list to a team ! | 1 | feat | null |
67,507 | 05.11.2018 16:01:03 | -3,600 | 92057ed1b8bc6e00564bacb832198fdce27ca6fe | style(kernel): use official Reflect metadata API type definitions | [
{
"change_type": "MODIFY",
"diff": "\"strip-indent\": \"^1.0.1\"\n}\n},\n+ \"reflect-metadata\": {\n+ \"version\": \"0.1.12\",\n+ \"resolved\": \"https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.12.tgz\",\n+ \"integrity\": \"sha512-n+IyV+nGz3+0q3/Yf1ra12KpCyi001bi4XFxSjbiWWjfqb52iTTtpGXmCC... | TypeScript | MIT License | aurelia/aurelia | style(kernel): use official Reflect metadata API type definitions | 1 | style | kernel |
791,834 | 05.11.2018 16:49:09 | 28,800 | c93b028d808a8564d586711cc7a2da283f2d7ef8 | report: rename clump classes; give classes to all audit groups | [
{
"change_type": "MODIFY",
"diff": "@@ -46,19 +46,19 @@ class CategoryRenderer {\nget _clumpDisplayInfo() {\nreturn {\n'failed': {\n- className: 'lh-failed-audits',\n+ className: 'lh-clump--failed',\n},\n'manual': {\ntitle: Util.UIStrings.manualAuditsGroupTitle,\n- className: 'lh-audit-group--manual',\n+ cl... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | report: rename clump classes; give classes to all audit groups (#6482) | 1 | report | null |
217,922 | 05.11.2018 17:46:47 | -3,600 | 9c3b83c10a4f8cf9a8919b3d10029278b9fe39ee | feat: list tracking is now properly linked to teams system | [
{
"change_type": "MODIFY",
"diff": "@@ -8,6 +8,8 @@ export enum ListsActionTypes {\nLoadListsWithWriteAccess = '[Lists] Load Lists With Write Access',\nLoadCommunityLists = '[Lists] Load Community Lists',\n+ ListsForTeamsLoaded = '[Lists] Lists For Team Loaded',\n+\nLoadListDetails = '[Lists] Load List',\nL... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: list tracking is now properly linked to teams system | 1 | feat | null |
217,922 | 05.11.2018 17:56:58 | -3,600 | a06428b5714d02b23b948722513b3f285b2fbafc | feat: rename team and remove members is now possible | [
{
"change_type": "MODIFY",
"diff": "<ng-template #header>\n<div fxLayout=\"row\" fxLayoutGap=\"5px\" fxLayoutAlign=\"center center\" class=\"team-header\">\n<div>{{team.name}}</div>\n+ <button nz-button nzShape=\"circle\" nzSize=\"small\" (click)=\"$event.stopPropagation();renameTeam(team)\"\n+ *ngIf=\"team... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: rename team and remove members is now possible | 1 | feat | null |
217,922 | 05.11.2018 19:09:42 | -3,600 | 034cd4ded3c1e1c198a189a98d8efa8d4ec6ba96 | feat: new teams system is now complete and ready to be tested !
closes | [
{
"change_type": "MODIFY",
"diff": "<li nz-menu-item (click)=\"setWorkingOnIt(userId)\" *ngIf=\"item.workingOnIt === undefined && loggedIn$ | async\">\n{{'Work_on_it' | translate}}\n</li>\n- <!--TODO handle team leader role here-->\n<li nz-menu-item (click)=\"removeWorkingOnIt()\"\n- *ngIf=\"item.workingOnI... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: new teams system is now complete and ready to be tested !
closes #573 | 1 | feat | null |
504,065 | 05.11.2018 19:34:52 | 18,000 | 5512ff31a9d89b62b8a0560215cad5d1c6d6ef7c | fix(modal transition): Reduce translate3d (right offset) positioning for right-side-modal-pf to 25%
This is a requested modification related to the OpenShift Console Catalog pr | [
{
"change_type": "MODIFY",
"diff": "}\n&.fade:not(.in) .modal-dialog {\n- -webkit-transform: translate3d(-75%, 0, 0);\n- transform: translate3d(75%, 0, 0);\n+ -webkit-transform: translate3d(-25%, 0, 0);\n+ transform: translate3d(25%, 0, 0);\n}\n}\n",
"new_path": "packages/patternfly-3/patternfly-react/l... | TypeScript | MIT License | patternfly/patternfly-react | fix(modal transition): Reduce translate3d (right offset) positioning for right-side-modal-pf to 25% (#878)
This is a requested modification related to the OpenShift Console Catalog pr
https://github.com/openshift/console/pull/666 | 1 | fix | modal transition |
503,942 | 05.11.2018 19:40:40 | 18,000 | dbd98b6f8e0630690675092b548c701cad60eff6 | chore(Release script): Remove rawgit from release script | [
{
"change_type": "MODIFY",
"diff": "RED='\\033[0;31m'\nNC='\\033[0m' # No Color\n-SSH_REPO=\"git@github.com:${TRIGGER_REPO_SLUG}\"\n-\n-getDeployKey () {\n- if [ \"${TRAVIS_PULL_REQUEST}\" != \"false\" ]; then\n- echo -e \"${RED}The travis ecrypted key var is not available to builds triggered by pull reques... | TypeScript | MIT License | patternfly/patternfly-react | chore(Release script): Remove rawgit from release script (#873) | 1 | chore | Release script |
67,476 | 05.11.2018 19:47:00 | -3,600 | 59d7c6e3c22c6c6bcf4244c60a28e3fa94f48add | refactor(lifecycle): add task functionality back in (still a few details left todo) | [
{
"change_type": "MODIFY",
"diff": "@@ -14,7 +14,8 @@ export const enum State {\nisDetaching = 0b000000100000,\nisUnbinding = 0b000001000000,\nisCached = 0b000010000000,\n- needsMount = 0b000100000000\n+ needsMount = 0b000100000000,\n+ needsUnbind = 0b001000000000\n}\nexport const enum Hooks {\n@@ -494,7 +4... | TypeScript | MIT License | aurelia/aurelia | refactor(lifecycle): add task functionality back in (still a few details left todo) | 1 | refactor | lifecycle |
67,476 | 05.11.2018 19:47:25 | -3,600 | 8c9592dd7fad2340b76660845f7aa0aa54fd9219 | chore(lifecycle): re-enable compose + async compose tests | [
{
"change_type": "MODIFY",
"diff": "@@ -120,15 +120,15 @@ suite.addDataSlot('i') // app markup\n`<template>\n<au-compose if.bind=\"true\" repeat.for=\"i of 1\" subject.bind=\"${ctx.g}\"></au-compose>\n</template>`)\n- .addData('06').setFactory(ctx =>\n+ .addData('07').setFactory(ctx =>\n`<template>\n<au-com... | TypeScript | MIT License | aurelia/aurelia | chore(lifecycle): re-enable compose + async compose tests | 1 | chore | lifecycle |
67,476 | 05.11.2018 20:49:41 | -3,600 | bb59e72302b40c5053ffe4f749b1951053373a98 | test(template-compiler): add some initial skeleton for more complex integration tests | [
{
"change_type": "ADD",
"diff": "+import { expect } from 'chai';\n+import { tearDown, setupAndStart, cleanup, defineCustomElement } from './prepare';\n+import { baseSuite } from './template-compiler.base';\n+import { IContainer, Constructable, DI, IRegistry } from '../../../kernel/src/index';;\n+import { Au... | TypeScript | MIT License | aurelia/aurelia | test(template-compiler): add some initial skeleton for more complex integration tests | 1 | test | template-compiler |
67,476 | 05.11.2018 20:53:42 | -3,600 | 023065b4549f347f8f1bae1adf242ce9d72107ef | chore(jit): re-enable other jit tests | [
{
"change_type": "MODIFY",
"diff": "@@ -124,7 +124,7 @@ function verifyResultOrError(expr: string, expected: any, expectedMsg?: string,\n// Note: we could loop through all generated tests by picking SimpleIsBindingBehaviorList and ComplexIsBindingBehaviorList,\n// but we're separating them out to make the t... | TypeScript | MIT License | aurelia/aurelia | chore(jit): re-enable other jit tests | 1 | chore | jit |
67,476 | 05.11.2018 21:50:26 | -3,600 | 29f23a2a377622395acc0c2a4d72a57f1944d728 | chore(jit): cleanup test typings | [
{
"change_type": "MODIFY",
"diff": "@@ -117,7 +117,7 @@ export function setupAndStart(template: string, $class: Constructable | null, ..\nconst container = DI.createContainer();\ncontainer.register(...registrations);\nconst lifecycle = container.get(ILifecycle);\n- const observerLocator = container.get<IObs... | TypeScript | MIT License | aurelia/aurelia | chore(jit): cleanup test typings | 1 | chore | jit |
471,527 | 05.11.2018 22:10:10 | -3,600 | 8935befa7e1b670817d89380d0adbec1aea2fe9a | feat: add chai-dom-equals | [
{
"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: add chai-dom-equals | 1 | feat | null |
471,527 | 05.11.2018 22:53:57 | -3,600 | ba3c283c33d7d5390e65f2163d265d3d3f77efcd | chore(chai-dom-equals): index should have only exports | [
{
"change_type": "ADD",
"diff": "+import { getSemanticDomDiff } from '@open-wc/semantic-dom-diff';\n+\n+/**\n+ * el.outerHTML is not polyfilled so we need to recreate the tag + attributes and\n+ * combine it with el.innerHTML.\n+ */\n+export const getOuterHtml = (el) => {\n+ if (window.ShadyCSS && window.Sh... | JavaScript | MIT License | open-wc/open-wc | chore(chai-dom-equals): index should have only exports | 1 | chore | chai-dom-equals |
679,913 | 06.11.2018 00:03:20 | 0 | 4066c80f6af1ec19336efdcdefc63bd9efcaa8da | feat(defmulti): add relations() | [
{
"change_type": "MODIFY",
"diff": "@@ -297,8 +297,42 @@ export function defmultiN<T>(impls: { [id: number]: Implementation<T> }) {\n* @param impls\n*/\nexport const implementations = (type: PropertyKey, ...impls: (MultiFn<any> | Implementation<any>)[]) => {\n- (impls.length & 1) && illegalArgs(\"require an... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(defmulti): add relations() | 1 | feat | defmulti |
679,913 | 06.11.2018 00:05:25 | 0 | c4db51aa3a62d7673ddd575f65632dc3779ded3e | feat(vectors): add IMatrix & impls for Mat23/33/44, add/update accessors | [
{
"change_type": "MODIFY",
"diff": "@@ -127,6 +127,18 @@ export interface INDArray<T> extends\ntranspose(...args: number[]): INDArray<T>;\n}\n+export interface IMatrix<T> extends\n+ Vec,\n+ ICopy<T>,\n+ IEqualsDelta<T> {\n+\n+ mul(m: Readonly<T>): T;\n+ mulV(v: ReadonlyVec, out?: Vec): Vec;\n+\n+ identity()... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(vectors): add IMatrix & impls for Mat23/33/44, add/update accessors | 1 | feat | vectors |
471,527 | 06.11.2018 00:40:31 | -3,600 | ddceeca2405c05e42975c760b4aa9055d4d5db2c | fix: add an npmignore file | [
{
"change_type": "ADD",
"diff": "+coverage/\n+test/\n+karma-bs.config.js\n+karma.config.js\n+wallaby.js\n",
"new_path": "packages/chai-dom-equals/.npmignore",
"old_path": null
},
{
"change_type": "ADD",
"diff": "+coverage/\n+test/\n+karma-bs.config.js\n+karma.config.js\n+wallaby.js\n",
... | JavaScript | MIT License | open-wc/open-wc | fix: add an npmignore file | 1 | fix | null |
471,527 | 06.11.2018 00:48:56 | -3,600 | 9700532bee5bfde6490430a866603701b41d312e | fix: add karma.conf.js to npmignore | [
{
"change_type": "MODIFY",
"diff": "coverage/\ntest/\nkarma-bs.config.js\n-karma.config.js\n+karma.conf.js\nwallaby.js\n",
"new_path": "packages/chai-dom-equals/.npmignore",
"old_path": "packages/chai-dom-equals/.npmignore"
},
{
"change_type": "MODIFY",
"diff": "coverage/\ntest/\nkarma-b... | JavaScript | MIT License | open-wc/open-wc | fix: add karma.conf.js to npmignore | 1 | fix | null |
679,913 | 06.11.2018 01:44:38 | 0 | 9d60ad0929e4fb08d2b71bc229f5cf4ced801536 | perf(geom): emit hline/vline segments if possible | [
{
"change_type": "MODIFY",
"diff": "@@ -266,6 +266,8 @@ export const intersectShape = defmulti<IShape, IShape, any>(dispatch);\nexport const intersectLine = defmulti<IShape, Line2, LineIntersection>(dispatch);\n+export const isEmpty = defmulti<IShape, boolean>(dispatch);\n+\nexport const mapPoint: MultiFn2O... | TypeScript | Apache License 2.0 | thi-ng/umbrella | perf(geom): emit hline/vline segments if possible | 1 | perf | geom |
679,913 | 06.11.2018 01:45:38 | 0 | df9b9f9faac1656a12a16ad82fb64f440ca21deb | fix(geom): asCubic() for arc | [
{
"change_type": "MODIFY",
"diff": "@@ -39,7 +39,7 @@ import {\nRect2,\nSamplingOpts,\nType,\n- vertices\n+ vertices,\n} from \"./api\";\nimport \"./bezier\";\nimport { bounds as _bounds } from \"./internal/bounds\";\n@@ -108,7 +108,7 @@ implementations(\nreturn [Cubic2.fromLine(p, q, { ...arc.attribs })];\... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(geom): asCubic() for arc | 1 | fix | geom |
679,913 | 06.11.2018 01:55:59 | 0 | 94a40cc50dc323e3525f5d45e580851b326d7eb6 | fix(geom): Path2 transform() & translate(), add asCubic() impl | [
{
"change_type": "MODIFY",
"diff": "@@ -11,6 +11,7 @@ import { map } from \"@thi.ng/transducers/xform/map\";\nimport { mapcat } from \"@thi.ng/transducers/xform/mapcat\";\nimport {\nadd,\n+ addNew,\ncopy,\nmaddNewN,\nmulN,\n@@ -23,11 +24,13 @@ import {\n} from \"@thi.ng/vectors2/api\";\nimport { Mat23 } fro... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(geom): Path2 transform() & translate(), add asCubic() impl | 1 | fix | geom |
679,913 | 06.11.2018 01:56:29 | 0 | c0134fda30c474837a58e4c9fc7c205b59d5a504 | minor(geom): update imports | [
{
"change_type": "MODIFY",
"diff": "import { serialize } from \"@thi.ng/hiccup\";\nimport { convertTree } from \"@thi.ng/hiccup-svg/convert\";\n-import { svg } from \"@thi.ng/hiccup-svg/svg\";\nimport { ff } from \"@thi.ng/hiccup-svg/format\";\n+import { svg } from \"@thi.ng/hiccup-svg/svg\";\n+import { Att... | TypeScript | Apache License 2.0 | thi-ng/umbrella | minor(geom): update imports | 1 | minor | geom |
679,913 | 06.11.2018 01:57:49 | 0 | 9a18620d3865af1a452a39822c2b56e15409c0dc | minor(hiccup-svg): update path conversion/creation | [
{
"change_type": "MODIFY",
"diff": "import { implementsFunction } from \"@thi.ng/checks/implements-function\";\nimport { isArray } from \"@thi.ng/checks/is-array\";\nimport { isArrayLike } from \"@thi.ng/checks/is-arraylike\";\n-import { PathSegment } from \"./api\";\nimport { circle } from \"./circle\";\ni... | TypeScript | Apache License 2.0 | thi-ng/umbrella | minor(hiccup-svg): update path conversion/creation | 1 | minor | hiccup-svg |
504,004 | 06.11.2018 07:53:11 | 18,000 | e50496432a41f90b1610a7e886366a7d44c42626 | fix(BadgedResource): Use css over inlined style for bg color
Also provides defaults for some resource kinds. | [
{
"change_type": "MODIFY",
"diff": "line-height: @badge-icon-height;\ncolor: @color-pf-white;\nmargin-right: 4px;\n- background-color: @color-pf-black;\n+ background-color: @color-pf-light-blue-400;\n+\n+ &.alert {\n+ background-color: @color-pf-light-blue-400;\n+ }\n+\n+ &.alertrule,\n+ &.configmap {\n+ ba... | TypeScript | MIT License | patternfly/patternfly-react | fix(BadgedResource): Use css over inlined style for bg color (#870)
Also provides defaults for some resource kinds. | 1 | fix | BadgedResource |
504,064 | 06.11.2018 09:23:06 | 18,000 | be3822351bef76f455ee2337d75e3f726d72ad83 | fix(DropdownKebab): Allow title attribute | [
{
"change_type": "MODIFY",
"diff": "@@ -8,11 +8,11 @@ import { ButtonGroup } from '../Button';\n/**\n* DropdownKebab Component for Patternfly React\n*/\n-const DropdownKebab = ({ className, children, id, pullRight, componentClass, toggleStyle }) => {\n+const DropdownKebab = ({ className, children, id, pullR... | TypeScript | MIT License | patternfly/patternfly-react | fix(DropdownKebab): Allow title attribute (#885) | 1 | fix | DropdownKebab |
679,913 | 06.11.2018 11:15:17 | 0 | 9f03889b074c41e2f66f0a4557d60ae318919dff | minor(geom): add/update edges()/vertices() arg types | [
{
"change_type": "MODIFY",
"diff": "@@ -36,6 +36,7 @@ import {\nclosestPoint,\ntranslate,\ncenter,\n+ SamplingOpts,\n} from \"./api\";\nexport function circle(pos: Vec, r = 1, attribs?: Attribs): Circle2 {\n@@ -103,7 +104,7 @@ implementations(\n),\nvertices,\n- (circle: Circle2, opts = DEFAULT_SAMPLES) => {... | TypeScript | Apache License 2.0 | thi-ng/umbrella | minor(geom): add/update edges()/vertices() arg types | 1 | minor | geom |
679,913 | 06.11.2018 12:24:23 | 0 | 3713c02aed294c100fb07265c27864b9622f4667 | refactor(hiccup-svg): update convertTransforms(), update formatting | [
{
"change_type": "MODIFY",
"diff": "import { Vec2Like } from \"./api\";\nimport { ff } from \"./format\";\n-export const circle = (p: Vec2Like, r: number, attribs?: any): any[] =>\n+export const circle =\n+ (p: Vec2Like, r: number, attribs?: any): any[] =>\n[\"circle\", {\ncx: ff(p[0]),\ncy: ff(p[1]),\n",
... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(hiccup-svg): update convertTransforms(), update formatting | 1 | refactor | hiccup-svg |
815,745 | 06.11.2018 12:33:05 | -7,200 | bc1ef8e61514b2995610efa167ac2dac6db98d15 | fix: keep items order while mapping selected options
fixes | [
{
"change_type": "MODIFY",
"diff": "@@ -408,6 +408,22 @@ describe('ItemsList', () => {\nexpect(list.items[0].label).toBe('United States');\nexpect(list.items[0].selected).toBeTruthy();\n});\n+\n+ it('should retain items order', () => {\n+ list.select(list.mapItem({ name: 'Samantha' }, null));\n+ list.select... | TypeScript | MIT License | ng-select/ng-select | fix: keep items order while mapping selected options
fixes #907 | 1 | fix | null |
679,913 | 06.11.2018 13:40:30 | 0 | a24715e717e3bc596be100c1cb574850019625f0 | refactor(defmulti): merge relations() w/ implementations(), update readme | [
{
"change_type": "MODIFY",
"diff": "@@ -43,7 +43,8 @@ return type) and the generics will also apply to all implementations. If\nmore than 8 args are required, `defmulti` will fall back to an untyped\nvarargs solution.\n-The function returned by `defmulti` can be called like any other function, but also expo... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(defmulti): merge relations() w/ implementations(), update readme | 1 | refactor | defmulti |
679,913 | 06.11.2018 13:43:29 | 0 | dc2c487d8eb161cba970c54cd2a7114e08c06504 | refactor(geom): update implementations() call sites | [
{
"change_type": "MODIFY",
"diff": "@@ -27,6 +27,9 @@ import {\nVec\n} from \"@thi.ng/vectors2/api\";\nimport { Vec2 } from \"@thi.ng/vectors2/vec2\";\n+import \"./bezier\";\n+import { bounds as _bounds } from \"./internal/bounds\";\n+import { Sampler } from \"./internal/sampler\";\nimport {\nArc2,\nasCubic... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(geom): update implementations() call sites | 1 | refactor | geom |
217,922 | 06.11.2018 14:15:02 | -3,600 | ed7e09467bd8e87ab940bc97a0704ffbac3ecfd0 | fix: fixed an issue with lists page when you have no teams | [
{
"change_type": "MODIFY",
"diff": "@@ -20,8 +20,7 @@ export class TeamsFacade {\nmyTeams$ = combineLatest(this.allTeams$, this.authFacade.userId$).pipe(\nmap(([teams, userId]) => {\nreturn teams.filter(team => !team.notFound && team.members.indexOf(userId) > -1);\n- }),\n- shareReplay(1)\n+ })\n);\nconstru... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed an issue with lists page when you have no teams | 1 | fix | null |
217,922 | 06.11.2018 14:28:32 | -3,600 | af51afcfd898ab6f4229565f0da9a64f87f4deeb | fix: fixed empty alarms page message placement | [
{
"change_type": "MODIFY",
"diff": "(onDrop)=\"setGroupIndex(i, $event.dragData.group, display.groupedAlarms)\"></div>\n</div>\n</div>\n- <app-fullpage-message *ngIf=\"display.noGroup.length === 0 && display.groupedAlarms.length === 0\">\n+ <app-fullpage-message *ngIf=\"display.noGroup.length === 0 && displ... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed empty alarms page message placement | 1 | fix | null |
791,834 | 06.11.2018 14:32:14 | 28,800 | 2f43eb972d3f3d9b6e608baa390aee496672ddcf | core(pwa): audit and report group renames | [
{
"change_type": "MODIFY",
"diff": "@@ -26,8 +26,8 @@ class ThemedOmnibox extends MultiCheckAudit {\nstatic get meta() {\nreturn {\nid: 'themed-omnibox',\n- title: 'Address bar matches brand colors',\n- failureTitle: 'Address bar does not match brand colors',\n+ title: 'Sets an address-bar theme color',\n+ ... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(pwa): audit and report group renames (#6494) | 1 | core | pwa |
815,745 | 06.11.2018 15:36:40 | -7,200 | 75f614a6cbfa170c3fa2ba0ece8e44fb01cd394e | chore(demo): fix virtual scroll example
closes | [
{
"change_type": "MODIFY",
"diff": "-import { Component, ChangeDetectionStrategy } from '@angular/core';\n+import { ChangeDetectionStrategy, Component } from '@angular/core';\nimport { HttpClient } from '@angular/common/http';\n@Component({\n@@ -16,8 +16,8 @@ import { HttpClient } from '@angular/common/http... | TypeScript | MIT License | ng-select/ng-select | chore(demo): fix virtual scroll example
closes #921 | 1 | chore | demo |
815,745 | 06.11.2018 16:44:28 | -7,200 | 3e8ad77b983d8a131d47ea6c48923b4efa25a508 | feat: allow to customise clear icon
fixes | [
{
"change_type": "MODIFY",
"diff": "display: inline-block;\nfont-size: 18px;\nline-height: 1;\n+ pointer-events: none;\n}\n}\n.ng-spinner-loader {\n",
"new_path": "src/ng-select/ng-select.component.scss",
"old_path": "src/ng-select/ng-select.component.scss"
},
{
"change_type": "MODIFY",
... | TypeScript | MIT License | ng-select/ng-select | feat: allow to customise clear icon
fixes #835 | 1 | feat | null |
815,745 | 06.11.2018 17:03:33 | -7,200 | 127d6be1d7c3b5e987c467c02fbe127f0d2cda28 | feat(isOpen): treat undefined value as default behaviour
closes | [
{
"change_type": "MODIFY",
"diff": "@@ -220,7 +220,7 @@ export class NgSelectComponent implements OnDestroy, OnChanges, AfterViewInit, C\nthis._setItems(changes.items.currentValue || []);\n}\nif (changes.isOpen) {\n- this._manualOpen = true;\n+ this._manualOpen = isDefined(changes.isOpen.currentValue);\n}\n... | TypeScript | MIT License | ng-select/ng-select | feat(isOpen): treat undefined value as default behaviour
closes #816 | 1 | feat | isOpen |
791,834 | 06.11.2018 17:05:38 | 28,800 | b832a6190a85b439aa3f867d487b0a000c8d5cde | report: add pwa-category-renderer | [
{
"change_type": "MODIFY",
"diff": "@@ -21,6 +21,7 @@ const REPORT_JAVASCRIPT = [\nfs.readFileSync(__dirname + '/renderer/report-ui-features.js', 'utf8'),\nfs.readFileSync(__dirname + '/renderer/category-renderer.js', 'utf8'),\nfs.readFileSync(__dirname + '/renderer/performance-category-renderer.js', 'utf8'... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | report: add pwa-category-renderer (#6486) | 1 | report | null |
791,690 | 06.11.2018 17:23:03 | 21,600 | abf7c4dc06fddbfff5df775147ced2b638faff54 | core(seo): properly handle anchors in SVG | [
{
"change_type": "MODIFY",
"diff": "<a href='https://example.com'>click this</a>\n<a href='/test.html'> click this </a>\n<a href='/test.html'>CLICK THIS</a>\n+ <svg>\n+ <a href='https://example.com/svg-link'>\n+ <circle cx=\"50\" cy=\"50\" r=\"50\"/>\n+ <text x=\"0\" y=\"0\" >click this</text>\n+ </a>\n+ </... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(seo): properly handle anchors in SVG (#6483) | 1 | core | seo |
217,922 | 06.11.2018 17:25:09 | -3,600 | 9643fb957b3923ae219e011f850d1fcec5268bd7 | chore: update antd to 1.8.0 | [
{
"change_type": "MODIFY",
"diff": "}\n},\n\"@ant-design/icons-angular\": {\n- \"version\": \"0.0.3\",\n- \"resolved\": \"https://registry.npmjs.org/@ant-design/icons-angular/-/icons-angular-0.0.3.tgz\",\n- \"integrity\": \"sha512-ssMacnQRpcgGpHrcQD5VU/IEmlArYrORhVXD0w+gyq7YQgsNVLXNd32NklXhUX8Vagb128P0JK7vE... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: update antd to 1.8.0 | 1 | chore | null |
217,922 | 06.11.2018 17:51:00 | -3,600 | 0f5721174e1bbb4e4d9d52ca60a022987166c989 | feat: macro translator | [
{
"change_type": "MODIFY",
"diff": "@@ -46,6 +46,10 @@ const routes: Routes = [\n{\npath: 'favorites',\nloadChildren: './pages/favorites-page/favorites-page.module#FavoritesPageModule'\n+ },\n+ {\n+ path: 'macro-translator',\n+ loadChildren: './pages/macro-translator/macro-translator.module#MacroTranslatorM... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: macro translator | 1 | feat | null |
815,745 | 06.11.2018 18:07:00 | -7,200 | b78f39f75640fd14f39e790513871beb9d0a35bf | feat(autofocus): focus if attribute is present
* feat(autofocus): focus if attribute is present
closes | [
{
"change_type": "MODIFY",
"diff": "@@ -20,6 +20,7 @@ import { Observable } from 'rxjs';\n---html,true\n<ng-select [items]=\"people$ | async\"\nbindLabel=\"name\"\n+ autofocus\nbindValue=\"id\"\n[(ngModel)]=\"selectedPersonId\">\n</ng-select>\n",
"new_path": "demo/app/examples/data-source.component.ts",... | TypeScript | MIT License | ng-select/ng-select | feat(autofocus): focus if attribute is present (#924)
* feat(autofocus): focus if attribute is present
closes #762 | 1 | feat | autofocus |
815,745 | 06.11.2018 18:07:57 | -7,200 | f85bef7fc2f66d1cacd84c44a175ab931c13fbff | chore(release): 2.12.0 | [
{
"change_type": "MODIFY",
"diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"2.12.0\"></a>\n+# [2.12.0](https://github.com/ng-select/ng-select/compare/v2.11.2...v... | TypeScript | MIT License | ng-select/ng-select | chore(release): 2.12.0 | 1 | chore | release |
807,990 | 06.11.2018 18:26:09 | 18,000 | d6e6a42b7a820f2416869e2c71b920ee689ee315 | fix: Update yarn workspaces error prompt link | [
{
"change_type": "MODIFY",
"diff": "@@ -79,7 +79,7 @@ class Project {\n\"EWORKSPACES\",\ndedent`\nYarn workspaces need to be defined in the root package.json.\n- See: https://github.com/lerna/lerna#--use-workspaces\n+ See: https://github.com/lerna/lerna/blob/master/commands/bootstrap/README.md#--use-workspa... | JavaScript | MIT License | lerna/lerna | fix: Update yarn workspaces error prompt link (#1756) | 1 | fix | null |
679,913 | 06.11.2018 19:09:28 | 0 | a947873223974c961fdb4f845cb4046029403c84 | feat(hiccup): add support for dynamic user context values
add derefContext() helper to auto-deref any IDeref vals
update serialize() | [
{
"change_type": "ADD",
"diff": "+import { implementsFunction } from \"@thi.ng/checks/implements-function\";\n+\n+export const derefContext =\n+ (ctx: any) => {\n+ if (ctx == null) return ctx;\n+ const res = {};\n+ for (let k in ctx) {\n+ const v = ctx[k];\n+ res[k] = implementsFunction(v, \"deref\") ?\n+ v... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(hiccup): add support for dynamic user context values
- add derefContext() helper to auto-deref any IDeref vals
- update serialize() | 1 | feat | hiccup |
67,476 | 06.11.2018 19:12:31 | -3,600 | 9b7d5173ef61a761608a222645b095a3beae7899 | chore(di): fix circular type reference issue | [
{
"change_type": "MODIFY",
"diff": "@@ -14,11 +14,15 @@ export interface IDefaultableInterfaceSymbol<T> extends InterfaceSymbol<T> {\nnoDefault(): InterfaceSymbol<T>;\n}\n-export interface IResolver<T = any> {\n- resolve(handler: IContainer, requestor: IContainer): T;\n- getFactory?(container: IContainer): ... | TypeScript | MIT License | aurelia/aurelia | chore(di): fix circular type reference issue | 1 | chore | di |
67,476 | 06.11.2018 19:16:11 | -3,600 | 9d3f41be78bdc38f123facb1a6a42d99b40fb04d | fix(lifecycle): properly implement unbindAfterDetach behavior | [
{
"change_type": "MODIFY",
"diff": "@@ -14,8 +14,7 @@ export const enum State {\nisDetaching = 0b000000100000,\nisUnbinding = 0b000001000000,\nisCached = 0b000010000000,\n- needsMount = 0b000100000000,\n- needsUnbind = 0b001000000000\n+ needsMount = 0b000100000000\n}\nexport const enum Hooks {\n@@ -377,6 +3... | TypeScript | MIT License | aurelia/aurelia | fix(lifecycle): properly implement unbindAfterDetach behavior | 1 | fix | lifecycle |
679,913 | 06.11.2018 19:21:08 | 0 | 6a3a8739ae08cac99640a54e01b1146b0a58eed7 | feat(hdom): add support for dynamic user context vals
update start() & renderOnce()
reformat all sub-modules
update docs & tests | [
{
"change_type": "MODIFY",
"diff": "@@ -1054,6 +1054,12 @@ manually pass down configuration data into each child component and so\ncan simplify many use cases, e.g. event dispatch, style / theme\ninformation, global state etc.\n+Any context keys with values implementing the thi.ng/api `IDeref`\n+interface, ... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(hdom): add support for dynamic user context vals
- update start() & renderOnce()
- reformat all sub-modules
- update docs & tests | 1 | feat | hdom |
679,913 | 06.11.2018 19:29:13 | 0 | e91dbbc1967a740afb1ef7999fadd4bb4dfb7261 | feat(transducers-hdom): add support for dynamic user context vals | [
{
"change_type": "MODIFY",
"diff": "@@ -11,6 +11,7 @@ This project is part of the\n- [About](#about)\n- [Installation](#installation)\n+- [Dependencies](#dependencies)\n- [Usage examples](#usage-examples)\n- [Authors](#authors)\n- [License](#license)\n@@ -25,7 +26,9 @@ stateful transducer which receives\nco... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(transducers-hdom): add support for dynamic user context vals | 1 | feat | transducers-hdom |
679,913 | 06.11.2018 19:43:33 | 0 | d2797516457bf1e3b854a67f39f227cfaa3b810a | feat(examples): add hdom-dyn-context demo | [
{
"change_type": "MODIFY",
"diff": "@@ -20,22 +20,23 @@ If you want to [contribute](../CONTRIBUTING.md) an example, please get in touch\n| 12 | [hdom-canvas-clock](./hdom-canvas-clock) | hdom-canvas rendered clock | hdom, hdom-canvas, transducers | basic |\n| 13 | [hdom-canvas-draw](./hdom-canvas-draw) | hd... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(examples): add hdom-dyn-context demo | 1 | feat | examples |
217,922 | 06.11.2018 19:51:06 | -3,600 | 25e898b59507537b3c4a2659b4099bf37916a4b4 | chore: update discord hook messages for teams system | [
{
"change_type": "MODIFY",
"diff": "},\n\"NOTIFICATIONS\": {\n\"Title\": \"Notifications\",\n- \"List_progress\": \"{{author}} added {{amount}} {{itemName}} to list \\\"{{listName}}\\\"\",\n+ \"List_progress\": \"{{author}} checked {{amount}} {{itemName}} as done on list \\\"{{listName}}\\\"\",\n\"Team_invi... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: update discord hook messages for teams system | 1 | chore | null |
67,476 | 06.11.2018 20:03:27 | -3,600 | 8f7525741bea26e374c69c6a18b60fe1e185556c | chore(if): expose private methods internally and add ICustomAttribute interface to Else | [
{
"change_type": "MODIFY",
"diff": "@@ -66,7 +66,8 @@ export class If {\nthis.coordinator.compose(view, flags);\n}\n- private updateView(flags: LifecycleFlags): IView {\n+ /*@internal*/\n+ public updateView(flags: LifecycleFlags): IView {\nlet view: IView;\nif (this.value) {\n@@ -80,7 +81,8 @@ export class ... | TypeScript | MIT License | aurelia/aurelia | chore(if): expose private methods internally and add ICustomAttribute interface to Else | 1 | chore | if |
504,047 | 06.11.2018 20:17:11 | -7,200 | 93ed571f8561a709b994b105e51c0327fddf2406 | fix(ModelessOverlay): allow vertical scrolling | [
{
"change_type": "MODIFY",
"diff": ".modal-content {\nheight: ~'calc(100vh - @{navbar-pf-height})';\n+ display: flex;\n+ flex-direction: column;\n+\n+ .modal-body {\n+ flex-grow: 1;\n+ overflow: hidden auto;\n+ }\n}\n}\n",
"new_path": "packages/patternfly-3/patternfly-react/less/modeless-overlay.less",
... | TypeScript | MIT License | patternfly/patternfly-react | fix(ModelessOverlay): allow vertical scrolling (#796) | 1 | fix | ModelessOverlay |
67,476 | 06.11.2018 20:18:13 | -3,600 | 376ca6e6b0c96220701029d47b164828f693fde1 | chore(runtime): fix if-loop tests | [
{
"change_type": "MODIFY",
"diff": "@@ -24,7 +24,7 @@ import { MockTextNodeTemplate } from '../../mock';\nimport { eachCartesianJoinFactory } from '../../../../../../scripts/test-lib';\nimport { createScopeForTest } from '../../binding/shared';\nimport { expect } from 'chai';\n-import { DI } from '../../../... | TypeScript | MIT License | aurelia/aurelia | chore(runtime): fix if-loop tests | 1 | chore | runtime |
67,476 | 06.11.2018 20:36:07 | -3,600 | 7519cc7ed9bd64f2cd5567e32f5339f195f66854 | chore(runtime): extract unbindAfterDetach interface | [
{
"change_type": "MODIFY",
"diff": "@@ -376,11 +376,14 @@ export interface ILifecycleUnmount {\nexport interface IMountable extends ILifecycleMount, ILifecycleUnmount { }\nexport interface ILifecycleUnbind {\n- $nextUnbindAfterDetach?: ILifecycleUnbind;\n$state?: State;\n$unbind(flags: LifecycleFlags): void... | TypeScript | MIT License | aurelia/aurelia | chore(runtime): extract unbindAfterDetach interface | 1 | chore | runtime |
217,922 | 06.11.2018 21:03:42 | -3,600 | 1ae3731e748fff06b7467f9973c648d3b8ec0542 | feat: support for better hook messages with fancy stuff | [
{
"change_type": "MODIFY",
"diff": "@@ -30,7 +30,7 @@ import { AngularFireModule } from '@angular/fire';\nimport { AngularFireAuthModule } from '@angular/fire/auth';\nimport { LinkToolsService } from './tools/link-tools.service';\nimport { CharacterService } from './api/character.service';\n-import { Discor... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: support for better hook messages with fancy stuff | 1 | feat | null |
217,922 | 06.11.2018 21:05:56 | -3,600 | 0695f1a5d57bfb0fe10e3fd6a08808c069a5949e | fix: fixed a wrong translation key for hook messages | [
{
"change_type": "MODIFY",
"diff": "\"Detach_team\": \"Detach team\",\n\"Delete_confirmation\": \"Are you sure you want to delete this team?\",\n\"Invite_expires\": \"Expires\",\n- \"Member_joined\": \"[{{memberName}}]({{memberProfileUrl}}) joined the team \\\"{{teamName}}\\\"!\",\n\"Invite_error\": \"Team ... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed a wrong translation key for hook messages | 1 | fix | null |
217,922 | 06.11.2018 21:07:25 | -3,600 | 9cb699210eb5024a0488d899eed9909edbf3bfbc | fix: fixed a small issue with alarms page | [
{
"change_type": "MODIFY",
"diff": "(onDrop)=\"setGroupIndex(i, $event.dragData.group, display.groupedAlarms)\"></div>\n</div>\n</div>\n- <app-fullpage-message *ngIf=\"display.noGroup.length === 0 && display.groupedAlarms.length === 0\" [height]=\"300px\">\n+ <app-fullpage-message *ngIf=\"display.noGroup.le... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed a small issue with alarms page | 1 | fix | null |
217,922 | 06.11.2018 21:11:16 | -3,600 | 8c1ddb0833aae42b5edff713bcac70dc66c132d2 | chore: removed commission board from sidebar | [
{
"change_type": "MODIFY",
"diff": "<span class=\"nav-text\">{{'SIMULATOR.Rotations' | translate}}</span>\n</span>\n</a>\n- <a nz-menu-item class=\"menu-link\" nzDisabled routerLinkActive=\"ant-menu-item-selected\">\n- <span>\n- <i nz-icon type=\"inbox\"></i>\n- <span class=\"nav-text\">{{'COMMISSION_BOARD.... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: removed commission board from sidebar | 1 | chore | null |
217,922 | 06.11.2018 21:15:18 | -3,600 | d5b9e0af4645a178b22ff13bc37be3eb9af73b51 | style: update icon for lists regeneration in lists page | [
{
"change_type": "MODIFY",
"diff": "</div>\n<button nz-button nzType=\"primary\" nzShape=\"circle\" nz-tooltip\n[nzTitle]=\"'LISTS.Regenerate_all' | translate\" (click)=\"regenerateLists(lists)\">\n- <i class=\"material-icons\">update</i>\n+ <i nz-icon type=\"file-sync\"></i>\n</button>\n</div>\n<h2>{{'LIST... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | style: update icon for lists regeneration in lists page | 1 | style | null |
217,922 | 06.11.2018 21:20:23 | -3,600 | 71c3652726329325224a6baf0cdbec1687c810ee | feat: error message for outdated lists when you can't regenerate it by yourself | [
{
"change_type": "MODIFY",
"diff": "TODO list description\n</div>\n</div>\n- <div *ngIf=\"list.public && list.tags.length === 0\" class=\"no-tags-alert\">\n+ <div *ngIf=\"list.public && list.tags.length === 0\" class=\"alert\">\n<nz-alert nzType=\"warning\" nzShowIcon [nzMessage]=\"message\">\n<ng-template ... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: error message for outdated lists when you can't regenerate it by yourself | 1 | feat | null |
217,922 | 06.11.2018 22:44:44 | -3,600 | 3c3df56ff0f468ec8fe4e85fc13066a2b451398c | fix: fixed an issue with some wrong translation variable bindings | [
{
"change_type": "MODIFY",
"diff": "@@ -72,7 +72,7 @@ export class DiscordWebhookService {\nnotifyMemberJoined(team: Team, characterName: string, memberId: string): void {\nthis.sendMessage(team.webhook, team.language, 'TEAMS.NOTIFICATIONS.Member_joined', {\n- characterName: characterName,\n+ memberName: ch... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed an issue with some wrong translation variable bindings | 1 | fix | null |
217,922 | 06.11.2018 22:48:11 | -3,600 | 28bb6f702ff278bb5b2619a0b8250202607081eb | fix: fixed some translations for teams | [
{
"change_type": "MODIFY",
"diff": "\"Leader\": \"Leader\",\n\"Member\": \"Member\",\n\"Create_team\": \"Create a team\",\n- \"Create_invite_one_day\": \"Create a new invite (24h lifetime)\",\n- \"Create_invite_infinite\": \"Create a new invite (no lifetime)\",\n+ \"Create_invite_one_day\": \"Create a new i... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed some translations for teams | 1 | fix | null |
791,676 | 07.11.2018 02:39:53 | -3,600 | a3159e78350458c902b78e158719f111f8648767 | deps: update puppeteer to version 1.10.0 | [
{
"change_type": "MODIFY",
"diff": "\"postinstall-prepare\": \"^1.0.1\",\n\"prettier\": \"^1.14.3\",\n\"pretty-json-stringify\": \"^0.0.2\",\n- \"puppeteer\": \"1.4.0\",\n+ \"puppeteer\": \"^1.10.0\",\n\"sinon\": \"^2.3.5\",\n\"typescript\": \"3.1.3\",\n\"uglify-es\": \"3.0.15\",\n",
"new_path": "packag... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | deps: update puppeteer to version 1.10.0 (#6493) | 1 | deps | null |
67,476 | 07.11.2018 04:09:50 | -3,600 | e10f4fdaea25dc63ae026eec5e7474b59fa6c0a4 | chore(runtime): re-enable bind resources tests | [
{
"change_type": "MODIFY",
"diff": "-// import { IExpression, IObserverLocator, Binding, LifecycleFlags, IScope, BindingMode, SelfBindingBehavior, IsBindingBehavior } from '../../src/index';\n-// import { IContainer } from '../../../kernel/src/index';\n-// import { expect } from 'chai';\n+import { IExpressi... | TypeScript | MIT License | aurelia/aurelia | chore(runtime): re-enable bind resources tests | 1 | chore | runtime |
67,476 | 07.11.2018 04:12:43 | -3,600 | 11524c6296090fa4e3ae8f79b062d060d86314c6 | chore(runtime): fix value-attribute-observer unit tests | [
{
"change_type": "MODIFY",
"diff": "-// import {\n-// ValueAttributeObserver,\n-// IObserverLocator,\n-// ILifecycle,\n-// LifecycleFlags,\n-// Binding,\n-// IBindingTargetObserver,\n-// IPropertySubscriber,\n-// } from '../../src/index';\n-// import { createElement, _ } from '../unit/util';\n-// import { e... | TypeScript | MIT License | aurelia/aurelia | chore(runtime): fix value-attribute-observer unit tests | 1 | chore | runtime |
67,476 | 07.11.2018 04:13:34 | -3,600 | d1a3fe8d581da70ae642c5037782b4b6b4e1eae2 | chore(runtime): re-enable select-value-observer tests | [
{
"change_type": "MODIFY",
"diff": "-// import { IObserverLocator, ILifecycle, SelectValueObserver, LifecycleFlags, DOM } from '../../src/index';\n-// import { createElement, _, eachCartesianJoin, eachCartesianJoinFactory, h, verifyEqual } from '../unit/util';\n-// import { expect } from 'chai';\n-// import... | TypeScript | MIT License | aurelia/aurelia | chore(runtime): re-enable select-value-observer tests | 1 | chore | runtime |
217,922 | 07.11.2018 11:06:14 | -3,600 | 6086d87da13ad43df4a8e6fa6bf42c7de69456c7 | fix: fixed an issue with item addition in lists | [
{
"change_type": "MODIFY",
"diff": "-<nz-list [nzDataSource]=\"myLists$ | async\" [nzRenderItem]=\"list\" [nzHeader]=\"header\">\n+<div *ngIf=\"myLists$ | async as myLists\">\n+ <nz-list [nzDataSource]=\"myLists\" [nzRenderItem]=\"list\" [nzHeader]=\"header\">\n<ng-template #list let-list>\n<nz-list-item [n... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed an issue with item addition in lists | 1 | fix | null |
217,922 | 07.11.2018 11:25:58 | -3,600 | a7016b36cd299f77517fe71aca23dc7b840a130a | fix: better messages for teams tracking hook system | [
{
"change_type": "MODIFY",
"diff": "@@ -48,7 +48,18 @@ export class DiscordWebhookService {\nnotifyItemAddition(itemId: number, amount: number, list: List, team: Team): void {\nconst itemName = this.l12n.getItem(itemId);\n- this.sendMessage(team.webhook, team.language, 'TEAMS.NOTIFICATIONS.List_progress', {... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: better messages for teams tracking hook system | 1 | fix | null |
217,922 | 07.11.2018 12:00:57 | -3,600 | 7c730735c79c8f028ca70f59f6d4f63c684f7a2e | fix: fixed an issue with amount modification breaking lists | [
{
"change_type": "MODIFY",
"diff": "@@ -157,7 +157,7 @@ export class ListsEffects {\n@Effect()\nupdateListInDatabase$ = this.actions$.pipe(\nofType(ListsActionTypes.UpdateList),\n- debounceTime(500),\n+ debounceTime(100),\nmap(action => action as UpdateList),\nswitchMap(action => this.listService.update(act... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed an issue with amount modification breaking lists | 1 | fix | null |
273,683 | 07.11.2018 12:49:58 | -3,600 | a4baf68c3c27cb3ed1d2a086d5166dcfb3476fb1 | feat: resolve file paths | [
{
"change_type": "ADD",
"diff": "+const { GraphQLString } = require('../../graphql')\n+\n+class JSONTransformer {\n+ static mimeTypes () {\n+ return ['application/json']\n+ }\n+\n+ constructor (options, { resolveNodeFilePath }) {\n+ this.resolveNodeFilePath = resolveNodeFilePath\n+ }\n+\n+ parse (content) {... | JavaScript | MIT License | gridsome/gridsome | feat: resolve file paths (#26) | 1 | feat | null |
217,922 | 07.11.2018 14:01:17 | -3,600 | b2e49549466e0447c72d432722e38f905232b9ed | chore: removed quick commission button on search results | [
{
"change_type": "MODIFY",
"diff": "<nz-list [nzDataSource]=\"results\" [nzRenderItem]=\"item\" [nzItemLayout]=\"'horizontal'\">\n<ng-template #item let-item>\n<nz-list-item [nzContent]=\"inputBox\"\n- [nzActions]=\"[addToList, createQuickListAction, createCommissionAction, openInSimulatorAction]\">\n+ [nzA... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: removed quick commission button on search results | 1 | chore | null |
273,683 | 07.11.2018 14:02:37 | -3,600 | 4f7f8677682621509e124ab102eec155037d6be1 | fix: lazy load external image urls | [
{
"change_type": "MODIFY",
"diff": "@@ -12,7 +12,7 @@ export default {\nfunctional: true,\nprops: {\n- src: { type: Object },\n+ src: { type: [Object, String] },\nwidth: { type: String },\nalt: { type: String },\nimmediate: { type: true },\n@@ -30,12 +30,27 @@ export default {\nrender: (h, { data, props, pa... | JavaScript | MIT License | gridsome/gridsome | fix: lazy load external image urls | 1 | fix | null |
679,913 | 07.11.2018 15:26:06 | 0 | 34930b31b525d8831626865b39f7ee97862c56b6 | refactor(malloc): update package structure, fix stats()
move MemPool to pool.ts
update stats().available to incl. size of free blocks | [
{
"change_type": "MODIFY",
"diff": "@@ -27,10 +27,25 @@ export interface MemPoolOpts {\n}\nexport interface MemPoolStats {\n+ /**\n+ * Free block stats.\n+ */\nfree: { count: number, size: number };\n+ /**\n+ * Used block stats.\n+ */\nused: { count: number, size: number };\n+ /**\n+ * Current top address.\... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(malloc): update package structure, fix stats()
- move MemPool to pool.ts
- update stats().available to incl. size of free blocks | 1 | refactor | malloc |
504,026 | 07.11.2018 15:27:21 | 18,000 | 48a32565f2bbff0a5e1b351182a3086a059f3bd2 | fix(dropdown): Address typescript errors
This fixes the various typescript errors encountered while the Dropdown component in the Koku UI
Fixes | [
{
"change_type": "MODIFY",
"diff": "import { SFC, HTMLProps, ReactType, ReactNode } from 'react';\nimport { OneOf } from '../../typeUtils';\n-import { DropdownToggleProps } from './DropdownToggle';\n+import DropdownToggle from './DropdownToggle';\nimport { DropdownPosition, DropdownDirection } from './dropd... | TypeScript | MIT License | patternfly/patternfly-react | fix(dropdown): Address typescript errors (#898)
This fixes the various typescript errors encountered while the Dropdown component in the Koku UI
Fixes https://github.com/patternfly/patternfly-react/issues/892 | 1 | fix | dropdown |
679,913 | 07.11.2018 15:35:08 | 0 | 5a3b860e555d93fa6be091e9899ca63add2c4f2e | feat(vectors): update VecPool & NDArray1
add VecPool.mallocArray()
add NDArray1.mapBuffer()/intoBuffer() | [
{
"change_type": "MODIFY",
"diff": "\"@thi.ng/errors\": \"^0.1.11\",\n\"@thi.ng/malloc\": \"^0.2.0\",\n\"@thi.ng/math\": \"^0.2.0\",\n- \"@thi.ng/strings\": \"^0.5.2\"\n+ \"@thi.ng/strings\": \"^0.5.2\",\n+ \"@thi.ng/transducers\": \"^2.2.1\"\n},\n\"keywords\": [\n\"ES6\",\n",
"new_path": "packages/vect... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(vectors): update VecPool & NDArray1
- add VecPool.mallocArray()
- add NDArray1.mapBuffer()/intoBuffer() | 1 | feat | vectors |
791,834 | 07.11.2018 16:47:13 | 28,800 | 29c575196e282cabe4eb235e8b9694079e10a57a | report(pwa): give badges to groups with all passing audits | [
{
"change_type": "MODIFY",
"diff": "@@ -372,7 +372,7 @@ const defaultConfig = {\n{id: 'is-on-https', weight: 2, group: 'pwa-installable'},\n{id: 'service-worker', weight: 1, group: 'pwa-installable'},\n{id: 'webapp-install-banner', weight: 2, group: 'pwa-installable'},\n- // Engaging\n+ // PWA Optimized\n{i... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | report(pwa): give badges to groups with all passing audits (#6504) | 1 | report | pwa |
217,922 | 07.11.2018 18:12:30 | -3,600 | f25e27aa41af1d7917561d73392a2c0874501442 | chore: WIP search filters | [
{
"change_type": "MODIFY",
"diff": "@@ -6,7 +6,9 @@ import { Venture } from '../../model/garland-tools/venture';\nimport { NgSerializerService } from '@kaiu/ng-serializer';\nimport { HttpClient } from '@angular/common/http';\nimport { ItemData } from '../../model/garland-tools/item-data';\n-import { map } f... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: WIP search filters | 1 | chore | null |
679,913 | 07.11.2018 18:31:22 | 0 | 749925f018ff293e6a6523c6a3580c8b548d3aff | feat(hiccup): update derefContext() to only apply to selected keys | [
{
"change_type": "MODIFY",
"diff": "import { implementsFunction } from \"@thi.ng/checks/implements-function\";\n+/**\n+ * Takes an arbitrary `ctx` object and array of `keys`. Attempts to call\n+ * `.deref()` on all given keys' values and stores result values instead\n+ * of original. Returns updated copy of... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(hiccup): update derefContext() to only apply to selected keys | 1 | feat | hiccup |
679,913 | 07.11.2018 18:36:21 | 0 | 30161166d507d4dc27a12f11d1b8af5e873b1607 | feat(hdom): update auto-deref ctx behavior
add `autoDerefKeys` option
update docs
update tests | [
{
"change_type": "MODIFY",
"diff": "@@ -895,6 +895,12 @@ Config options object passed to hdom's `start()`, `renderOnce()` or\n- `root`: Root element or ID (default: \"app\")\n- `ctx`: Arbitrary user context object, passed to all component\nfunctions embedded in the tree (see below)\n+- `autoDerefKeys`: Atte... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(hdom): update auto-deref ctx behavior
- add `autoDerefKeys` option
- update docs
- update tests | 1 | feat | hdom |
679,913 | 07.11.2018 18:37:05 | 0 | 52a47f0f4c2e16115c424888900433611ee98956 | refactor(transducers-hdom): update auto-deref ctx behavior | [
{
"change_type": "MODIFY",
"diff": "@@ -14,8 +14,13 @@ import { scan } from \"@thi.ng/transducers/xform/scan\";\n* By default, incoming values are first normalized using hdom's\n* `normalizeTree()` function and a copy of the given (optional) `ctx`\n* object is provided to all embedded component functions in... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(transducers-hdom): update auto-deref ctx behavior | 1 | refactor | transducers-hdom |
679,913 | 07.11.2018 18:37:47 | 0 | b0a4b65ec26a5f7001567b75d86182dbb19d48ad | refactor(examples): update hdom-dyn-context demo | [
{
"change_type": "MODIFY",
"diff": "@@ -50,7 +50,13 @@ const app =\n];\n// kick off hdom render loop\n-const cancel = start(app, { ctx });\n+const cancel = start(\n+ app,\n+ {\n+ ctx,\n+ autoDerefKeys: Object.keys(ctx),\n+ }\n+);\n// HMR handling\nif (process.env.NODE_ENV !== \"production\") {\n",
"new_... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(examples): update hdom-dyn-context demo | 1 | refactor | examples |
217,922 | 07.11.2018 21:39:06 | -3,600 | baad9ab87b9b489689661cea2891a866ec42cd83 | feat: support for advanced search filters in search page | [
{
"change_type": "MODIFY",
"diff": "@@ -56,19 +56,17 @@ export class DataService {\n}\nfilters.forEach(filter => {\n- if (filter.enabled) {\nif (filter.minMax) {\n- params = params.set(`${filter.filterName}Min`, filter.value.min)\n- .set(`${filter.filterName}Max`, filter.value.max);\n- } else if (filter.nam... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: support for advanced search filters in search page
#569 | 1 | feat | null |
471,527 | 08.11.2018 00:12:23 | -3,600 | d21c55a0b0db6a153dafac44f45d62804d98f8c9 | chore: update docu for testing | [
{
"change_type": "MODIFY",
"diff": "@@ -10,6 +10,8 @@ module.exports = {\n'/recommendations/ide',\n'/recommendations/linting',\n'/recommendations/testing',\n+ '/recommendations/testing-helpers',\n+ '/recommendations/testing-dom',\n'/recommendations/demos',\n'/recommendations/publishing',\n'/recommendations/... | JavaScript | MIT License | open-wc/open-wc | chore: update docu for testing | 1 | chore | null |
471,527 | 08.11.2018 00:43:56 | -3,600 | 9ccd1d754680fd036a39e885b336613a9e74df06 | feat: enable continous deployment | [
{
"change_type": "MODIFY",
"diff": "# Check https://circleci.com/docs/2.0/language-javascript/ for more details\n#\nversion: 2\n-jobs:\n- build:\n+\n+defaults: &defaults\n+ working_directory: ~/repo\ndocker:\n- image: circleci/node:10.12.0-browsers\n- working_directory: ~/repo\n+\n+jobs:\n+ test:\n+ <<: *de... | JavaScript | MIT License | open-wc/open-wc | feat: enable continous deployment | 1 | feat | null |
67,476 | 08.11.2018 00:50:09 | -3,600 | d7e5dcd06a8216f1eecd42163c37cf55143ed94d | docs(lifecycles): add a preliminary flowchart for the startup sequence | [
{
"change_type": "ADD",
"diff": "+# How Aurelia works\n+\n+## Lifecycles\n+[Startup sequence flowchart](startup-sequence.md)\n",
"new_path": "packages/runtime/src/README.md",
"old_path": null
},
{
"change_type": "ADD",
"diff": "+### Preliminary high-level overview of the startup sequence... | TypeScript | MIT License | aurelia/aurelia | docs(lifecycles): add a preliminary flowchart for the startup sequence | 1 | docs | lifecycles |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.