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 ⌀ |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
447,451 | 18.01.2019 20:49:46 | 18,000 | 26969395e6924da4071083902a2bbd7166e77442 | fix: add maintainAspectRatio prop | [
{
"change_type": "MODIFY",
"diff": "@@ -105,6 +105,8 @@ Chart.propTypes = {\n/** Determines whether the lines that join the dots in a\n* line chart should be curved or straight. */\ndisableCurves: PropTypes.bool,\n+ /** Maintain the original canvas aspect ratio. */\n+ maintainAspectRatio: PropTypes.bool,\n/... | JavaScript | MIT License | nexxtway/react-rainbow | fix: add maintainAspectRatio prop (#544) | 1 | fix | null |
531,793 | 18.01.2019 20:51:22 | 0 | 42ae5bb70e7fb7c31e2e39dac4e059aafa56c83b | fix(backend): don't cache custom assets
Since those files can change at any time we should ensure that they are not cached | [
{
"change_type": "MODIFY",
"diff": "@@ -78,6 +78,7 @@ func loadTemplate(t *template.Template, path string) *template.Template {\n}\nfunc serveFileOr404(path string, contentType string, c *gin.Context) {\n+ c.Header(\"Cache-Control\", \"no-cache, no-store, must-revalidate\")\nif path == \"\" {\nc.Data(200, c... | TypeScript | Apache License 2.0 | prymitive/karma | fix(backend): don't cache custom assets
Since those files can change at any time we should ensure that they are not cached | 1 | fix | backend |
503,998 | 18.01.2019 22:05:00 | -3,600 | 279a595eac532495d9bc75e597b64b3a72641473 | fix(DropdownMenu): Fixes dropdown menu when using items as children.
fix 1218 | [
{
"change_type": "MODIFY",
"diff": "@@ -118,13 +118,18 @@ class DropdownMenu extends React.Component {\nrender() {\nconst { className, isOpen, position, children, component: Component, openedOnEnter, ...props } = this.props;\n- let menu = null;\n- if (Component === 'div') {\n- menu = (\n+\n+ return (\n+ <Dr... | TypeScript | MIT License | patternfly/patternfly-react | fix(DropdownMenu): Fixes dropdown menu when using items as children. (#1219)
fix 1218 | 1 | fix | DropdownMenu |
679,913 | 18.01.2019 23:44:05 | 0 | 499e14b3552299c96e56c3ccc8ae9cff4582f817 | refactor(geom): add tessellate() multi-fn, move/rename tessellators | [
{
"change_type": "ADD",
"diff": "+import { isFunction } from \"@thi.ng/checks\";\n+import {\n+ comp,\n+ last,\n+ map,\n+ mapcat,\n+ partition,\n+ push,\n+ range,\n+ reducer,\n+ repeat,\n+ scan,\n+ transduce,\n+ tuples,\n+ wrap\n+} from \"@thi.ng/transducers\";\n+import {\n+ mixN,\n+ ReadonlyVec,\n+ signedAr... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(geom): add tessellate() multi-fn, move/rename tessellators | 1 | refactor | geom |
67,494 | 19.01.2019 01:48:49 | -3,600 | 9f78522eaae38860fd4ae27f94a4190fed4fda08 | chore(router): update types | [
{
"change_type": "MODIFY",
"diff": "-// NOTE: this file is currently not in use\n-\nimport { ICustomElementType, IObserverLocator, IPropertyObserver, LifecycleFlags } from '@aurelia/runtime';\n-import { INavRoute, Nav } from './nav';\n+import { INavRoute, IViewportComponent, Nav, NavComponent } from './nav'... | TypeScript | MIT License | aurelia/aurelia | chore(router): update types | 1 | chore | router |
67,494 | 19.01.2019 01:58:32 | -3,600 | e485af4da3e534bec61d27947256f108f4002d7b | chore(router): update type in test app | [
{
"change_type": "MODIFY",
"diff": "@@ -62,7 +62,7 @@ export class App {\n{\ntitle: 'Authors',\ncomponents: [Authors, About],\n- consideredActive: [Authors as unknown as ICustomElementType],\n+ consideredActive: [Authors],\n},\n{\ntitle: 'Books',\n",
"new_path": "packages/router/test/e2e/doc-example/src... | TypeScript | MIT License | aurelia/aurelia | chore(router): update type in test app | 1 | chore | router |
217,922 | 19.01.2019 10:37:28 | -3,600 | e3b5decca1ae676c469fe9ed4a54baec4b9c6a87 | feat(alarms): added confirmation message for alarms deletion | [
{
"change_type": "MODIFY",
"diff": "<i nz-icon type=\"environment-o\"></i>\n</button>\n</div>\n- <div class=\"delete-icon\" (click)=\"deleteAlarm(row.alarm)\">\n+ <div class=\"delete-icon\" nz-popconfirm [nzTitle]=\"'Confirmation' | translate\"\n+ (nzOnConfirm)=\"deleteAlarm(row.alarm)\">\n<i nz-icon type=\... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat(alarms): added confirmation message for alarms deletion | 1 | feat | alarms |
217,922 | 19.01.2019 14:39:32 | -3,600 | 9568fdb8be8c10e0e4104bff9e3f1cd2200cb931 | fix(search): fixed a bug with some search terms | [
{
"change_type": "MODIFY",
"diff": "@@ -151,7 +151,7 @@ export class SearchComponent implements OnInit {\nprivate filtersToForm(filters: SearchFilter[]): { [key: string]: any } {\nconst formRawValue = {};\n- filters.forEach(f => {\n+ (filters || []).forEach(f => {\nif (f.value.min !== undefined) {\nformRawV... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(search): fixed a bug with some search terms | 1 | fix | search |
447,441 | 19.01.2019 14:53:17 | 18,000 | 46fc1226822db5aa76832cccd8d71c31b61e2e9b | test: added unit testing for the table and table-header | [
{
"change_type": "MODIFY",
"diff": "@@ -53,4 +53,42 @@ describe('<Table />', () => {\nexpect(component.find('th .rainbow-table_cell-content').text()).toBe('a');\nexpect(component.find('td .rainbow-table_cell-content').text()).toBe('23');\n});\n+\n+ it('should call onSort with the event, the field as \"name\... | JavaScript | MIT License | nexxtway/react-rainbow | test: added unit testing for the table and table-header (#539) | 1 | test | null |
67,494 | 19.01.2019 15:24:17 | -3,600 | cf21e828bd39fdc5009a21cd5d56cc381e659d56 | chore(router): remove old view code | [
{
"change_type": "MODIFY",
"diff": "@@ -318,59 +318,6 @@ export class Router {\n}\n}\n- // public view(views: string | Record<string, Viewport>, title?: string, data?: Record<string, unknown>): Promise<void> {\n- // console.log('Router.view:', views, title, data);\n-\n- // tslint:disable-next-line:no-commen... | TypeScript | MIT License | aurelia/aurelia | chore(router): remove old view code | 1 | chore | router |
447,440 | 19.01.2019 15:56:36 | 21,600 | e5b5a14d670a90ece233b0d99b273d5511158b16 | styles: fix some styles in mobile | [
{
"change_type": "MODIFY",
"diff": "@@ -37,7 +37,7 @@ function CategorySection({ title, pages }) {\nexport default function Designs() {\nreturn (\n- <div className=\"react-rainbow-designs_view-port\">\n+ <div className=\"react-rainbow-designs_view-port rainbow-background-color_gray-1\">\n<h1 className=\"rea... | JavaScript | MIT License | nexxtway/react-rainbow | styles: fix some styles in mobile (#546) | 1 | styles | null |
679,913 | 19.01.2019 17:05:59 | 0 | 910529dd898a2cbd32a8f1d8ae6684d119142230 | feat(geom): add splitNearPoint() for line & polyline, update Sampler | [
{
"change_type": "MODIFY",
"diff": "@@ -128,6 +128,10 @@ export class Sampler {\nreturn [head, tail];\n}\n+ splitNear(p: ReadonlyVec) {\n+ return this.splitAt(this.closestT(p));\n+ }\n+\nindexAt(t: number) {\nconst pts = this.points;\nconst n = pts.length - 1;\n",
"new_path": "packages/geom3/src/interna... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(geom): add splitNearPoint() for line & polyline, update Sampler | 1 | feat | geom |
679,913 | 19.01.2019 17:12:13 | 0 | 62ec49fe4a7ecf9b43277bf82d4d29968da53b4f | fix(geom): update arcFrom2Points() | [
{
"change_type": "MODIFY",
"diff": "import { isNumber } from \"@thi.ng/checks\";\n-import { TAU } from \"@thi.ng/math\";\n+import { EPS, TAU } from \"@thi.ng/math\";\nimport {\nabs2,\nangleBetween2,\n+ div2,\n+ eqDelta2,\nmulN2,\n+ neg,\n+ powN2,\nReadonlyVec,\n+ sub2,\nsubmN2,\nVec,\nX2\n@@ -21,49 +26,71 @... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(geom): update arcFrom2Points() | 1 | fix | geom |
679,913 | 19.01.2019 17:14:22 | 0 | 0e5e7768d8a9d172ef74cef19bdfb6474e1b89ae | feat(geom): add arcPointAt() helper, refactor Arc, minor other updates | [
{
"change_type": "MODIFY",
"diff": "@@ -2,17 +2,15 @@ import { ICopy, IObjectOf, IToHiccup } from \"@thi.ng/api\";\nimport { isNumber } from \"@thi.ng/checks\";\nimport { equiv } from \"@thi.ng/equiv\";\nimport { illegalState } from \"@thi.ng/errors\";\n-import { cossin } from \"@thi.ng/math\";\nimport {\na... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(geom): add arcPointAt() helper, refactor Arc, minor other updates | 1 | feat | geom |
679,913 | 19.01.2019 17:15:34 | 0 | 63b3a5d931866562db4ac15925a9010a2a552056 | feat(geom): update closestPoint(), add support for Arc | [
{
"change_type": "MODIFY",
"diff": "import { Fn } from \"@thi.ng/api\";\nimport { partial } from \"@thi.ng/compose\";\n+import { fit01 } from \"@thi.ng/math\";\nimport {\ndistSq,\ndot,\n@@ -13,6 +14,7 @@ import {\nsub,\nVec\n} from \"@thi.ng/vectors3\";\n+import { arcPointAtTheta } from \"./arc-point\";\nex... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(geom): update closestPoint(), add support for Arc | 1 | feat | geom |
679,913 | 19.01.2019 17:16:21 | 0 | 370f92808f8545ab021dc71715d8bcaf04fc6858 | fix(hiccup-svg): convert path arc segment axis theta to degrees | [
{
"change_type": "MODIFY",
"diff": "import { PathSegment } from \"./api\";\nimport { ff, fpoint, fpoints } from \"./format\";\n+const DEG = 180 / Math.PI;\n+\nexport const path =\n(segments: PathSegment[], attribs?: any): any[] => {\nlet res = [];\n@@ -14,7 +16,7 @@ export const path =\n// ry\nff(<number>se... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(hiccup-svg): convert path arc segment axis theta to degrees | 1 | fix | hiccup-svg |
679,913 | 19.01.2019 22:21:57 | 0 | 485051db40254ab0f5a3d51a1f5a522bc20061fc | refactor(geom-accel): update to use new vectors package | [
{
"change_type": "MODIFY",
"diff": "\"scripts\": {\n\"build\": \"yarn clean && yarn build:es6 && yarn build:bundle\",\n\"build:es6\": \"tsc --declaration\",\n- \"build:bundle\": \"../../scripts/bundle-module geomAccel api heaps math transducers vectors\",\n+ \"build:bundle\": \"../../scripts/bundle-module g... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(geom-accel): update to use new vectors package | 1 | refactor | geom-accel |
679,913 | 19.01.2019 22:25:54 | 0 | 5270143a1d9ca49eefba2df1b3092e1f53d9b30b | refactor(defmulti): remove optional excess args from type sigs | [
{
"change_type": "MODIFY",
"diff": "@@ -4,40 +4,40 @@ import { illegalArgs, unsupported, illegalArity } from \"@thi.ng/errors\";\nexport const DEFAULT: unique symbol = Symbol();\nexport type DispatchFn = (...args) => PropertyKey;\n-export type DispatchFn1<A> = (a: A, ...xs: any[]) => PropertyKey;\n-export t... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(defmulti): remove optional excess args from type sigs | 1 | refactor | defmulti |
679,913 | 19.01.2019 23:28:39 | 0 | 5ca580327c80487ff25440561967ebfc12345c15 | refactor(color): remove circular dependencies, update parseCss() | [
{
"change_type": "MODIFY",
"diff": "@@ -23,7 +23,7 @@ import { hsvaHsla } from \"./hsva-hsla\";\nimport { hsvaRgba } from \"./hsva-rgba\";\nimport { int32Css } from \"./int-css\";\nimport { int32Rgba } from \"./int-rgba\";\n-import { parseCSS } from \"./parse-css\";\n+import { parseCss } from \"./parse-css\... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(color): remove circular dependencies, update parseCss() | 1 | refactor | color |
471,527 | 19.01.2019 23:33:46 | -3,600 | 9d268ab5e8ae37a93f4afbdaef0fbfb397a6a2b2 | fix: move fixtureCleanup to testing helpers | [
{
"change_type": "ADD",
"diff": "+import { TemplateResult } from 'lit-html';\n+import { nextFrame } from './helpers.js';\n+import { stringFixtureSync } from './stringFixture.js';\n+import { litFixtureSync } from './litFixture.js';\n+\n+/**\n+ * Setups an element synchronously from the provided string templa... | JavaScript | MIT License | open-wc/open-wc | fix: move fixtureCleanup to testing helpers (#136) | 1 | fix | null |
679,913 | 20.01.2019 01:10:25 | 0 | 12ad59a1486f42eadae510e583f00c54ee54b607 | refactor(examples): update geom-knn & geom-tessel demos | [
{
"change_type": "MODIFY",
"diff": "@@ -22,7 +22,7 @@ const app = (main) => {\n// initialize 1st point & store in tree for fast KNN searches\nconst width = window.innerWidth;\nconst height = window.innerHeight;\n- let tree = new KdTree<Vec, Vec>(2);\n+ let tree = new KdTree<Vec, number>(2);\n// return root ... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(examples): update geom-knn & geom-tessel demos | 1 | refactor | examples |
67,476 | 20.01.2019 01:22:51 | -3,600 | 72f76aadb8a4121f65f8bd1664db408026912701 | feat(di): autoregister plain class as singleton and add recursion guard | [
{
"change_type": "MODIFY",
"diff": "/// <reference types=\"reflect-metadata\" />\n-import { Constructable, IIndexable, Injectable, InterfaceSymbol, Primitive } from './interfaces';\n+import { Class, Constructable, IIndexable, Injectable, InterfaceSymbol, Primitive } from './interfaces';\nimport { PLATFORM }... | TypeScript | MIT License | aurelia/aurelia | feat(di): autoregister plain class as singleton and add recursion guard | 1 | feat | di |
67,476 | 20.01.2019 02:40:21 | -3,600 | 3daa00febdb5cd63bf312dd3451f2a87dc0d123a | chore(compose): cleanup some unintended addition | [
{
"change_type": "MODIFY",
"diff": "@@ -16,8 +16,7 @@ import {\nIViewFactory,\nLifecycleFlags,\nTargetedInstruction,\n- TemplateDefinition,\n- ICustomElementType\n+ TemplateDefinition\n} from '@aurelia/runtime';\nimport { createElement, RenderPlan } from '../../create-element';\n@@ -26,21 +25,6 @@ const com... | TypeScript | MIT License | aurelia/aurelia | chore(compose): cleanup some unintended addition | 1 | chore | compose |
679,913 | 20.01.2019 03:53:39 | 0 | 311b00746f7ff67418032f923376c7aae4074ead | feat(vectors): add default output handling for set/setC/setS fns | [
{
"change_type": "MODIFY",
"diff": "@@ -28,6 +28,7 @@ export const SARGS_VV = \"io=0,ia=0,ib=0,so=1,sa=1,sb=1\";\nexport const SARGS_VVV = \"io=0,ia=0,ib=0,ic=0,so=1,sa=1,sb=1,sc=1\";\nexport const DEFAULT_OUT = \"!o&&(o=a);\";\n+export const NEW_OUT = \"!o&&(o=[]);\";\nexport type Template = (syms: string[... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(vectors): add default output handling for set/setC/setS fns | 1 | feat | vectors |
679,913 | 20.01.2019 03:54:22 | 0 | 2aceab97f196de1097eb3f3c12419cf00f39a9fa | feat(matrices): add m22 & m23 matrix converters | [
{
"change_type": "ADD",
"diff": "+import { set4 } from \"@thi.ng/vectors3\";\n+import { MatOpM } from \"./api\";\n+\n+/**\n+ * Converts M22 to M23 and writes result to `out`.\n+ *\n+ * @param out\n+ * @param m22\n+ */\n+export const mat22to23: MatOpM =\n+ (out, m22) => (\n+ !out && (out = []),\n+ set4(out, ... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(matrices): add m22 & m23 matrix converters | 1 | feat | matrices |
679,913 | 20.01.2019 04:24:18 | 0 | db4a2018d7b2a97856b9ab55754dc457390dd2d8 | feat(geom): re-add barycentric conversions, collation mappers (still unused) | [
{
"change_type": "ADD",
"diff": "+import {\n+ addW3,\n+ dot,\n+ magSq,\n+ ReadonlyVec,\n+ setC3,\n+ sub,\n+ Vec\n+} from \"@thi.ng/vectors3\";\n+\n+export const toBarycentric =\n+ (a: ReadonlyVec, b: ReadonlyVec, c: ReadonlyVec, p: ReadonlyVec, out: Vec = []) => {\n+ const u = sub([], b, a);\n+ const v = su... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(geom): re-add barycentric conversions, collation mappers (still unused) | 1 | feat | geom |
273,645 | 20.01.2019 07:56:41 | 28,800 | c394474ffb8b84ba4cb8e2da21b840745bbe393f | fix(contentful): support location fields
Closes | [
{
"change_type": "MODIFY",
"diff": "@@ -25,3 +25,44 @@ module.exports = {\n]\n}\n```\n+\n+## Contentful Content Types\n+@gridsome/souce-contentful currently works with all Contentful Content Types except the Rich Text [Beta] type.\n+\n+### Location\n+Contentful Location data is returned as JSON with `lat` a... | JavaScript | MIT License | gridsome/gridsome | fix(contentful): support location fields (#132)
Closes #129 | 1 | fix | contentful |
67,476 | 20.01.2019 08:17:20 | -3,600 | e1a2c9d1ac64d6aea99f817460b0436bd86e0902 | docs: remove inaccurate/outdated comments | [
{
"change_type": "MODIFY",
"diff": "@@ -138,12 +138,6 @@ export interface ILifecycleHooks extends IHooks, IState {\n/**\n* Called at the end of `$hydrate`.\n*\n- * The following key properties are now assigned and initialized (see `IRenderable` for more detail):\n- * - `this.$bindables`\n- * - `this.$attach... | TypeScript | MIT License | aurelia/aurelia | docs: remove inaccurate/outdated comments | 1 | docs | null |
67,476 | 20.01.2019 08:19:55 | -3,600 | 3ed51161bc75bcd94a30a70dde0173105c4b5895 | refactor(runtime): merge IHooks into ILifecycleHooks | [
{
"change_type": "MODIFY",
"diff": "@@ -371,7 +371,6 @@ export {\nCompositionCoordinator,\nIComponent,\nIBinding,\n- IHooks,\nILifecycle,\nILifecycleHooks,\nILifecycleMount,\n",
"new_path": "packages/runtime/src/index.ts",
"old_path": "packages/runtime/src/index.ts"
},
{
"change_type": "MODI... | TypeScript | MIT License | aurelia/aurelia | refactor(runtime): merge IHooks into ILifecycleHooks | 1 | refactor | runtime |
67,476 | 20.01.2019 08:36:23 | -3,600 | 5e6db98abd693e9e0cc6cc5951588382e027a76b | refactor(lifecycle): merge ILifecycleMount and ILifecycleUnmount into IMountableComponent | [
{
"change_type": "MODIFY",
"diff": "@@ -2,7 +2,7 @@ import {\nIBinding,\nIComponent,\nILifecycle,\n- IMountable,\n+ IMountableComponent,\nINodeSequence,\nIRenderContext,\nIRenderLocation,\n@@ -28,8 +28,8 @@ export class FakeView implements IView {\npublic $nextComponent: IComponent;\npublic $prevComponent: ... | TypeScript | MIT License | aurelia/aurelia | refactor(lifecycle): merge ILifecycleMount and ILifecycleUnmount into IMountableComponent | 1 | refactor | lifecycle |
217,922 | 20.01.2019 10:36:27 | -3,600 | cf5867840f0690f61fa043397d947a3a67d0c0c7 | feat: added new patreon supporter: Morphean Knights | [
{
"change_type": "MODIFY",
"diff": "'Nachtiyrn Thosinsyn',\n'Midori Dragon',\n'Erwan Fairclough @ Moogle',\n- 'Izeyash Konturaen'\n+ 'Izeyash Konturaen',\n+ 'Morphean Knights'\n];\nconst randomPatron = patrons[Math.floor(Math.random() * patrons.length)];\ndocument.getElementById('random-patron').innerText =... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: added new patreon supporter: Morphean Knights | 1 | feat | null |
217,922 | 20.01.2019 10:53:56 | -3,600 | ff7e4a843f2123e25d3e18ac10692f2dfe0da46e | feat: added a message in every page to show when a new version is available | [
{
"change_type": "MODIFY",
"diff": "</nz-sider>\n<nz-content>\n<div class=\"page-container\" [class.overlay]=\"overlay\">\n+ <nz-alert nzType=\"info\" [nzMessage]=\"message\" *ngIf=\"newVersionAvailable$ | async\" class=\"new-version-alert\"\n+ nzShowIcon>\n+ <ng-template #message>\n+ {{'UPDATE.New_update_a... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: added a message in every page to show when a new version is available | 1 | feat | null |
67,476 | 20.01.2019 11:03:07 | -3,600 | 7eb2b5db8ddc08a54f033f7e3101c3b2e11ba965 | refactor(lifecycle-render): remove arguments that can be resolved from the context | [
{
"change_type": "MODIFY",
"diff": "@@ -206,7 +206,7 @@ describe('DI', function() {\npublic binding(this: ICustomElement & this): void {\nthis.child = this.$context.get<ICustomElement>('custom-element:foo');\n- this.child.$hydrate(LF.none, this.$context.get(IDOM), this.$context.get(IProjectorLocator), this.... | TypeScript | MIT License | aurelia/aurelia | refactor(lifecycle-render): remove arguments that can be resolved from the context | 1 | refactor | lifecycle-render |
217,922 | 20.01.2019 11:05:32 | -3,600 | 2add519a6430d07ae3d08503367653cd2d3430fa | fix(alarms): fixed an issue with closest aetheryte tp not showing properly | [
{
"change_type": "MODIFY",
"diff": "</ng-template>\n<div fxLayout=\"row wrap\" fxLayoutGap=\"5px\">\n<div class=\"timer\">{{row.remainingTime | timer}}</div>\n- <div *ngIf=\"overlayMode\"\n+ <div\nclass=\"map\">{{(row.alarm.mapId | closestAetheryte: row.alarm.coords | async)?.nameid | placeName | i18n}}</di... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(alarms): fixed an issue with closest aetheryte tp not showing properly | 1 | fix | alarms |
679,913 | 20.01.2019 12:57:10 | 0 | 6f341c5c9318200a27db7b9af8e22be62cb4c330 | docs(vector-pools): fix AttribPool example layout | [
{
"change_type": "MODIFY",
"diff": "@@ -15,9 +15,9 @@ import {\n} from \"./api\";\n/*\n- * WASM mem : 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...\n- * typedarr : 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ... offset = 4 (bytes)\n- * pos (f32) : X X X X X Y Y Y Y X ... offset = 0... | TypeScript | Apache License 2.0 | thi-ng/umbrella | docs(vector-pools): fix AttribPool example layout | 1 | docs | vector-pools |
273,683 | 20.01.2019 15:40:40 | -3,600 | e51e3630559075929f8191eb9f2cd362d86ce4ae | feat(webpack): use | [
{
"change_type": "MODIFY",
"diff": "@@ -31,6 +31,11 @@ test('build basic project', async () => {\nexpect(indexHTML).toMatch('<span>test 3</span>')\nexpect(indexHTML).toMatch('<a href=\"/blog\" class=\"g-link-1\">Blog</a>')\nexpect(indexHTML).toMatch('<a href=\"/\" class=\"active--exact test-active g-link-2\... | JavaScript | MIT License | gridsome/gridsome | feat(webpack): use @vue/babel-preset-app | 1 | feat | webpack |
679,913 | 20.01.2019 15:51:48 | 0 | 9a5076944a29537bd6013df67e897eb4c7ff7f35 | feat(hdom-canvas): add ellipse() / ellipticArc(), update readme | [
{
"change_type": "MODIFY",
"diff": "This project is part of the\n[@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo.\n-<!-- TOC depthFrom:2 depthTo:3 -->\n+<!-- TOC depthFrom:2 depthTo:4 -->\n-- [@thi.ng/hdom-canvas](#thinghdom-canvas)\n- [About](#about)\n- [Status](#status)\n- [Installation](... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(hdom-canvas): add ellipse() / ellipticArc(), update readme | 1 | feat | hdom-canvas |
679,913 | 20.01.2019 16:01:11 | 0 | 8e2c8b5c835487865200b65cdc5340ccfe7abd5d | refactor(geom): update withAttribs() return type | [
{
"change_type": "MODIFY",
"diff": "import { Attribs, IShape } from \"../api\";\n-export const withAttribs =\n- (shape: IShape, attribs: Attribs, replace = true) => {\n+export const withAttribs = <T extends IShape>(\n+ shape: T,\n+ attribs: Attribs,\n+ replace = true\n+) => {\nshape.attribs = replace ? attr... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(geom): update withAttribs() return type | 1 | refactor | geom |
273,683 | 20.01.2019 16:29:25 | -3,600 | 5ecda0d12eef496739e9c1bfca29a77cc95b019d | feat(json): parse application/json mime type | [
{
"change_type": "ADD",
"diff": "+# @gridsome/transformer-json\n+\n+> JSON transformer for Gridsome\n+\n+## Install\n+\n+- `yarn add @gridsome/transformer-json`\n+- `npm install @gridsome/transformer-json`\n",
"new_path": "packages/transformer-json/README.md",
"old_path": null
},
{
"change_t... | JavaScript | MIT License | gridsome/gridsome | feat(json): parse application/json mime type | 1 | feat | json |
217,886 | 20.01.2019 16:45:36 | -3,600 | d40baabf07f762636e1822b10f8930f36ca5886a | feat(settings): new option to remove panel borders | [
{
"change_type": "MODIFY",
"diff": "-<nz-layout *ngIf=\"!(hasDesktop$ | async); else desktopOpenedMessage\" class=\"app-container\">\n+<nz-layout *ngIf=\"!(hasDesktop$ | async); else desktopOpenedMessage\" class=\"app-container\" [class.no-panel-borders]=\"settings.noPanelBorders\">\n<nz-layout *ngIf=\"!ove... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat(settings): new option to remove panel borders | 1 | feat | settings |
273,683 | 20.01.2019 17:12:23 | -3,600 | c312bedec7ccd3213dffd409b19b00bbb6501c36 | test(yaml): test various values | [
{
"change_type": "ADD",
"diff": "+const YamlTransformer = require('../index')\n+\n+test('parse string', async () => {\n+ const transformer = new YamlTransformer()\n+ const res = transformer.parse('string')\n+\n+ expect(res.fields.data).toEqual('string')\n+})\n+\n+test('parse boolean', async () => {\n+ const... | JavaScript | MIT License | gridsome/gridsome | test(yaml): test various values | 1 | test | yaml |
217,922 | 20.01.2019 17:22:00 | -3,600 | 6e84f715e915295c1cea595af5ef0c05b3aa743b | chore(release): 5.0.13 | [
{
"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=\"5.0.13\"></a>\n+## [5.0.13](https://github.com/Supamiu/ffxiv-teamcraft/compare/v5.0.1... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore(release): 5.0.13 | 1 | chore | release |
447,440 | 20.01.2019 17:58:50 | 21,600 | 0d6b6beed91a7c872359cb690dfc5128af90fdc4 | fix: fix image in rainbow library | [
{
"change_type": "ADD",
"diff": "+<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n+<svg width=\"1177px\" height=\"571px\" viewBox=\"0 0 1177 571\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n+ <!-- Generator: Sketch 52.6 (67491) - http://www.bohemiancoding... | JavaScript | MIT License | nexxtway/react-rainbow | fix: fix image in rainbow library | 1 | fix | null |
815,601 | 20.01.2019 18:00:31 | -28,800 | 9c8340ab63a9f3a275ead769fa5e2f92a2a8be9c | feat: blocktemplate refresh
blocktemplate refresh when the best block changes, OR 3 seconds has passed and there are more
transactions and uncles | [
{
"change_type": "MODIFY",
"diff": "@@ -432,12 +432,16 @@ dependencies = [\nname = \"ckb-miner\"\nversion = \"0.5.0-pre\"\ndependencies = [\n+ \"ckb-chain 0.5.0-pre\",\n+ \"ckb-chain-spec 0.5.0-pre\",\n\"ckb-core 0.5.0-pre\",\n+ \"ckb-db 0.5.0-pre\",\n\"ckb-notify 0.5.0-pre\",\n\"ckb-pool 0.5.0-pre\",\n\"ck... | Rust | MIT License | nervosnetwork/ckb | feat: blocktemplate refresh
blocktemplate refresh when the best block changes, OR 3 seconds has passed and there are more
transactions and uncles | 1 | feat | null |
67,476 | 20.01.2019 18:11:10 | -3,600 | 25bbe6a18e34c12c52bdbd9a40c12f57db081530 | chore(router): fix viewport regression | [
{
"change_type": "MODIFY",
"diff": "@@ -313,7 +313,7 @@ export class Viewport {\nconst container = this.router.container;\n// TODO: get useProxies settings from the template definition\n- component.$hydrate(LifecycleFlags.none, container, host, null);\n+ component.$hydrate(LifecycleFlags.none, container, ho... | TypeScript | MIT License | aurelia/aurelia | chore(router): fix viewport regression | 1 | chore | router |
273,683 | 20.01.2019 18:13:00 | -3,600 | 06213729682105f76c055541243f61181cf48c15 | feat(wordpress): basic ACF support | [
{
"change_type": "MODIFY",
"diff": "@@ -28,3 +28,26 @@ module.exports = {\n]\n}\n```\n+\n+## Use with Advanced Custom Fields\n+\n+Install the [ACF to REST API](https://github.com/airesvsg/acf-to-rest-api) plugin to make ACF fields available in the GraphQL schema.\n+\n+### Tips\n+\n+**Exclude unnecessary dat... | JavaScript | MIT License | gridsome/gridsome | feat(wordpress): basic ACF support (#45) | 1 | feat | wordpress |
273,683 | 20.01.2019 18:21:03 | -3,600 | e2f9a5af69d522a7b07e830a2821faa273f3a3fe | feat(wordpress): apiBase option for custom rest endpoint | [
{
"change_type": "MODIFY",
"diff": "@@ -16,6 +16,7 @@ module.exports = {\nuse: '@gridsome/source-wordpress',\noptions: {\nbaseUrl: 'WEBSITE_URL', // required\n+ apiBase: 'wp-json',\ntypeName: 'WordPress',\nperPage: 100,\nconcurrent: 10,\n",
"new_path": "packages/source-wordpress/README.md",
"old_pat... | JavaScript | MIT License | gridsome/gridsome | feat(wordpress): apiBase option for custom rest endpoint | 1 | feat | wordpress |
679,913 | 20.01.2019 18:22:11 | 0 | 2f26cf68bbfcaf57acaa1b24785d712bb45c7e0a | docs(hdom-canvas): fix readme example | [
{
"change_type": "MODIFY",
"diff": "@@ -108,16 +108,17 @@ start(() => {\nconst t = Date.now() * 0.001;\nreturn [canvas, { width: 100, height: 100 },\ng.group(\n- { translate: [50,50], fill: \"none\" },\n+ [\ng.withAttribs(\ng.asPolygon(g.circle(50), 6),\n- { rotate: (Date.now() * 0.01) % (Math.PI * 2), stro... | TypeScript | Apache License 2.0 | thi-ng/umbrella | docs(hdom-canvas): fix readme example | 1 | docs | hdom-canvas |
447,440 | 20.01.2019 20:49:11 | 21,600 | 770e36477a1e11611ba2bf29fe439af098d6523a | fix: fix typo in design | [
{
"change_type": "MODIFY",
"diff": "@@ -7,7 +7,7 @@ export default function RainbowComponents() {\n<DesignDetails\ncategory=\"library\"\ntitle=\"Rainbow Components\"\n- description=\"Rainbow Components is a library very easy to use and customizable with more than 40 components.\"\n+ description=\"Rainbow Co... | JavaScript | MIT License | nexxtway/react-rainbow | fix: fix typo in design (#552) | 1 | fix | null |
679,913 | 20.01.2019 21:58:32 | 0 | ff5036692dee25e60d7b51177eb8745a87f4b53a | build: update depgraph script to display per package deps/dependents | [
{
"change_type": "MODIFY",
"diff": "@@ -53,7 +53,14 @@ tx.run(\n([p, d]) => g.addDependency(p, d),\npackages);\n-// console.log(g.transitiveDependencies(\"@thi.ng/geom3\"));\n-console.log(\"topo order:\", g.sort().map((x) => x.replace(\"@thi.ng/\", \"\")).join(\" \"));\n-console.log(\"done\");\n\\ No newlin... | TypeScript | Apache License 2.0 | thi-ng/umbrella | build: update depgraph script to display per package deps/dependents | 1 | build | null |
679,913 | 20.01.2019 22:06:52 | 0 | 4bd77082442a3942d5de88e712e00da37138fa93 | build: update geom3 => geom references | [
{
"change_type": "MODIFY",
"diff": "@@ -12,7 +12,7 @@ import {\nTessellator,\ntesselQuadFan,\ntesselTriFan\n-} from \"@thi.ng/geom3\";\n+} from \"@thi.ng/geom\";\nimport { canvas } from \"@thi.ng/hdom-canvas\";\nimport { deg, fit01, fit11 } from \"@thi.ng/math\";\nimport { fromInterval, sync } from \"@thi.n... | TypeScript | Apache License 2.0 | thi-ng/umbrella | build: update geom3 => geom references | 1 | build | null |
679,913 | 20.01.2019 22:34:12 | 0 | 74b7a38a7d8c6714cfa384d4e67d0a898576755b | build(vectors): refix version to previous | [
{
"change_type": "MODIFY",
"diff": "{\n\"name\": \"@thi.ng/vectors\",\n- \"version\": \"0.0.1\",\n+ \"version\": \"1.4.12\",\n\"description\": \"Optimized 2d/3d/4d and arbitrary length vector operations\",\n\"module\": \"./index.js\",\n\"main\": \"./lib/index.js\",\n",
"new_path": "packages/vectors/pack... | TypeScript | Apache License 2.0 | thi-ng/umbrella | build(vectors): refix version to previous | 1 | build | vectors |
679,913 | 20.01.2019 22:51:12 | 0 | 51723f99916aa0959316fbf931ba042e254c977d | build(pointfree-lang): fix UMD identifier | [
{
"change_type": "MODIFY",
"diff": "\"scripts\": {\n\"build\": \"yarn clean && yarn build:es6 && yarn build:bundle\",\n\"build:es6\": \"tsc --declaration && yarn peg\",\n- \"build:bundle\": \"../../scripts/bundle-module pointfree-lang api errors pointfree\",\n+ \"build:bundle\": \"../../scripts/bundle-modul... | TypeScript | Apache License 2.0 | thi-ng/umbrella | build(pointfree-lang): fix UMD identifier | 1 | build | pointfree-lang |
67,494 | 21.01.2019 00:24:12 | -3,600 | e306d0bcff82e0984c797a6d17fae85bdc8e7d64 | refactor(router): add cancel navigation & add waits to test app | [
{
"change_type": "MODIFY",
"diff": "@@ -76,6 +76,10 @@ export class Router {\nthis.linkHandler = new LinkHandler();\n}\n+ public get isNavigating(): boolean {\n+ return this.processingNavigation !== null;\n+ }\n+\npublic activate(options?: IRouterOptions): Promise<void> {\nif (this.isActive) {\nthrow new Er... | TypeScript | MIT License | aurelia/aurelia | refactor(router): add cancel navigation & add waits to test app | 1 | refactor | router |
273,659 | 21.01.2019 01:00:50 | -32,400 | d9ade158542495c3cffcf3f17c6b68225faebfd3 | feat(yaml): parse yaml sources
Closes | [
{
"change_type": "ADD",
"diff": "+# @gridsome/transformer-yaml\n+\n+> YAML transformer for Gridsome\n+\n+## Install\n+- `yarn add @gridsome/transformer-yaml`\n+- `npm install @gridsome/transformer-yaml`\n\\ No newline at end of file\n",
"new_path": "packages/transformer-yaml/README.md",
"old_path": ... | JavaScript | MIT License | gridsome/gridsome | feat(yaml): parse yaml sources (#133)
Closes #131 | 1 | feat | yaml |
67,494 | 21.01.2019 01:08:52 | -3,600 | fef1f9d7c503598bb1193fe94430a698c1adf274 | refactor(router): add navigation status to viewport | [
{
"change_type": "MODIFY",
"diff": "@@ -26,6 +26,14 @@ export interface IViewportOptions {\nforceDescription?: boolean;\n}\n+const enum NavigationStatuses {\n+ none = 0,\n+ loaded = 1,\n+ initialized = 2,\n+ entered = 3,\n+ added = 4,\n+}\n+\nexport class Viewport {\npublic name: string;\npublic element: El... | TypeScript | MIT License | aurelia/aurelia | refactor(router): add navigation status to viewport | 1 | refactor | router |
67,494 | 21.01.2019 01:17:00 | -3,600 | cd73f04173bb73c5100fbd52fe5373be8958b3a9 | feat(router): add api for get all viewports to router | [
{
"change_type": "MODIFY",
"diff": "@@ -203,9 +203,8 @@ export class Router {\nthis.historyBrowser.setEntryTitle(title);\n}\n- this.ensureRootScope();\n- const usedViewports = (clearViewports ? this.rootScope.allViewports().filter((value) => value.component !== null) : []);\n- const defaultViewports = this.... | TypeScript | MIT License | aurelia/aurelia | feat(router): add api for get all viewports to router | 1 | feat | router |
679,913 | 21.01.2019 04:05:00 | 0 | 822d8fba3f69c28845ddfc434eff90c1d7a940bc | docs: update readme links / package names | [
{
"change_type": "MODIFY",
"diff": "@@ -19,8 +19,8 @@ All / most packages:\n- have detailed, individual README files w/ small usage examples\n- are versioned independently\n-- distributed in ES6 syntax (as CommonJS modules) with doc comments\n- (incl. example code snippets), bundled TypeScript typings & cha... | TypeScript | Apache License 2.0 | thi-ng/umbrella | docs: update readme links / package names | 1 | docs | null |
679,913 | 21.01.2019 04:05:25 | 0 | 7c1bf047cd44ed17588634843276cbbfea22274a | refactor(examples): update gesture-analysis demo | [
{
"change_type": "MODIFY",
"diff": "-import { mul2, transformVectors1, Vec2 } from \"@thi.ng/vectors\";\n+import { Vec2 } from \"@thi.ng/vectors\";\n// initial call to action gesture\n// (recorded handwriting)\n@@ -63,7 +63,4 @@ const raw = [\n];\n// downscale & transform into memory mapped Vec2 array\n-exp... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(examples): update gesture-analysis demo | 1 | refactor | examples |
679,913 | 21.01.2019 04:07:54 | 0 | a78bd87b80df34536c5317c763b7278ab37410f1 | feat(math): add absInnerAngle() | [
{
"change_type": "MODIFY",
"diff": "@@ -16,13 +16,13 @@ export const absTheta =\n(theta: number) =>\n(theta %= TAU, theta < 0 ? TAU + theta : theta);\n+export const absInnerAngle =\n+ (x: number) =>\n+ (x = Math.abs(x), x > PI ? TAU - x : x);\n+\nexport const angleDist =\n- (a: number, b: number) => (\n- a ... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(math): add absInnerAngle() | 1 | feat | math |
679,913 | 21.01.2019 04:08:38 | 0 | b9cea8cc981702caf6d69dc46d5f01ab5af2aa5f | refactor(vectors): update angleBetween*() fns, add absInner opt arg | [
{
"change_type": "MODIFY",
"diff": "+import { absInnerAngle } from \"@thi.ng/math\";\nimport { ReadonlyVec } from \"./api\";\n+import { cross2 } from \"./cross\";\nimport { dot } from \"./dot\";\nimport { mag } from \"./mag\";\n-import { cross2 } from \"./cross\";\nexport const angleRatio =\n(a: ReadonlyVec... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(vectors): update angleBetween*() fns, add absInner opt arg | 1 | refactor | vectors |
217,922 | 21.01.2019 07:29:30 | -3,600 | 79e3f5ba3d5bfa341cc9f0c514393aa71bd0f68c | feat(layout): new option to remove duplicates from zone breakdown, per panel
closes | [
{
"change_type": "MODIFY",
"diff": "@@ -13,7 +13,8 @@ export class LayoutRow {\npublic hideIfEmpty = true,\npublic hideCompletedRows = false,\npublic hideUsedRows = false,\n- public collapseIfDone = false) {\n+ public collapseIfDone = false,\n+ public hideZoneDuplicates = false) {\n}\npublic get filter(): L... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat(layout): new option to remove duplicates from zone breakdown, per panel
closes #723 | 1 | feat | layout |
104,818 | 21.01.2019 09:25:46 | 21,600 | 4668e06895847ab1d07cc2fe6297f0e1bddc3614 | fix(travis): fix the failing builds | [
{
"change_type": "MODIFY",
"diff": "@@ -2,6 +2,11 @@ language: node_js\nnode_js:\n- node\n+stages:\n+ - name: after_success\n+ # require the branch name to be master (note for PRs this is the base branch name)\n+ if: branch = master\n+\nbefore_install:\n- node --version\n# Repo for Yarn\n@@ -20,15 +25,12 @@... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(travis): fix the failing builds | 1 | fix | travis |
67,494 | 21.01.2019 09:42:16 | -3,600 | 2c3982f845065fcb242ea0e6d0856f3be787d9d0 | feat(router): add first entry flag to history browser | [
{
"change_type": "MODIFY",
"diff": "@@ -2,6 +2,7 @@ export interface IHistoryEntry {\npath: string;\nfullStatePath: string;\nindex?: number;\n+ firstEntry?: boolean;\ntitle?: string;\nquery?: string;\nparameters?: Record<string, string>;\n@@ -301,6 +302,9 @@ export class HistoryBrowser {\nindex: this.histor... | TypeScript | MIT License | aurelia/aurelia | feat(router): add first entry flag to history browser | 1 | feat | router |
67,494 | 21.01.2019 11:38:25 | -3,600 | 4546cc46f093c17acc338a48f4d6476196538cd4 | chore(router): rename container to context for scope and viewport | [
{
"change_type": "MODIFY",
"diff": "@@ -4,7 +4,7 @@ import { HistoryBrowser, IHistoryOptions, INavigationInstruction } from './histo\nimport { AnchorEventInfo, LinkHandler } from './link-handler';\nimport { INavRoute, Nav } from './nav';\nimport { IParsedQuery, parseQuery } from './parser';\n-import { IComp... | TypeScript | MIT License | aurelia/aurelia | chore(router): rename container to context for scope and viewport | 1 | chore | router |
217,922 | 21.01.2019 12:36:33 | -3,600 | 7ac09c9945b15818be03181dfb3e9e730c6b9f12 | chore: more work on weather alarms, needs more investigation | [
{
"change_type": "MODIFY",
"diff": "@@ -23,6 +23,7 @@ import { AlarmsPageDisplay } from '../alarms-page-display';\nimport { AlarmGroupDisplay } from '../alarm-group-display';\nimport { AlarmGroup } from '../alarm-group';\nimport { SettingsService } from '../../../modules/settings/settings.service';\n+import... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: more work on weather alarms, needs more investigation | 1 | chore | null |
679,913 | 21.01.2019 12:38:12 | 0 | 07d5f8fc51543bab958d13dfc14704b0105dddcd | feat(vectors): migrate direction(), normalLeft/Right2() from geom pkg | [
{
"change_type": "MODIFY",
"diff": "@@ -303,8 +303,10 @@ Functions for memory mapped, strided vectors (without requiring wrappers):\n- `angleBetween2` / `angleBetween3`\n- `angleRatio`\n- `bisect2`\n+- `direction`\n- `faceForward`\n- `heading` / `headingXY` / `headingXZ` / `headingYZ`\n+- `normalLeft2` / `n... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(vectors): migrate direction(), normalLeft/Right2() from geom pkg | 1 | feat | vectors |
679,913 | 21.01.2019 12:39:44 | 0 | 3d499ad5a57a9d2121b03e98e51e19ca8da21506 | refactor(geom): update tangentAt(), use direction() from vectors pkg | [
{
"change_type": "DELETE",
"diff": "-import {\n- normalize,\n- perpendicularLeft2,\n- perpendicularRight2,\n- ReadonlyVec,\n- sub\n-} from \"@thi.ng/vectors\";\n-\n-export const direction =\n- (a: ReadonlyVec, b: ReadonlyVec, n = 1) =>\n- normalize(null, sub([], b, a), n);\n-\n-export const normalL2 =\n- (a... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(geom): update tangentAt(), use direction() from vectors pkg | 1 | refactor | geom |
217,922 | 21.01.2019 15:37:15 | -3,600 | 96a234ed08ffc29713ee9e08c199f34eaf5dc9ff | fix: fixed an issue with old /home routes not being redirected properly | [
{
"change_type": "MODIFY",
"diff": "@@ -7,6 +7,11 @@ const routes: Routes = [\nredirectTo: 'search',\npathMatch: 'full'\n},\n+ {\n+ path: 'home',\n+ redirectTo: 'search',\n+ pathMatch: 'full'\n+ },\n{\npath: 'lists',\nloadChildren: './pages/lists/lists-page.module#ListsPageModule'\n",
"new_path": "apps/... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed an issue with old /home routes not being redirected properly | 1 | fix | null |
217,922 | 21.01.2019 15:39:53 | -3,600 | 0ba46d3d7542af352c2789cb0edbcb1299d0804e | fix: fixed some issues with search component sometimes firing errors | [
{
"change_type": "MODIFY",
"diff": "@@ -18,6 +18,9 @@ export class XivapiItemTooltipComponent implements OnInit {\npublic stats = [];\nngOnInit(): void {\n+ if (this.item === undefined) {\n+ return;\n+ }\nthis.mainAttributes.push({\nname: 'TOOLTIP.Level',\nvalue: this.item.LevelEquip\n",
"new_path": "ap... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed some issues with search component sometimes firing errors | 1 | fix | null |
791,723 | 21.01.2019 15:46:56 | 28,800 | 11021ffca9885be770a5ec3de8f04f7fd90b67cb | viewer: allow loading RunnerResult json | [
{
"change_type": "MODIFY",
"diff": "@@ -138,6 +138,11 @@ class LighthouseReportViewer {\n// TODO: Really, `json` should really have type `unknown` and\n// we can have _validateReportJson verify that it's an LH.Result\n_replaceReportHtml(json) {\n+ // Allow users to view the runnerResult\n+ if ('lhr' in json... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | viewer: allow loading RunnerResult json (#7031) | 1 | viewer | null |
269,457 | 21.01.2019 16:51:20 | -3,600 | 0aa80eca02cd28be441384e307c3c3d7491c80c1 | feat: allow use template for s3 bucket | [
{
"change_type": "MODIFY",
"diff": "@@ -71,6 +71,12 @@ func upload(ctx *context.Context, conf config.S3) error {\nsvc := s3.New(sess, &aws.Config{\nRegion: aws.String(conf.Region),\n})\n+\n+ bucket, err := tmpl.New(ctx).Apply(conf.Bucket)\n+ if err != nil {\n+ return err\n+ }\n+\nfolder, err := tmpl.New(ctx... | Go | MIT License | goreleaser/goreleaser | feat: allow use template for s3 bucket | 1 | feat | null |
679,913 | 21.01.2019 17:15:26 | 0 | 8fd5728b3328b50bbb337e25ced55e65bca547c3 | fix(geom-accel): add root null check for select/selectKeys() | [
{
"change_type": "MODIFY",
"diff": "@@ -151,6 +151,7 @@ export class KdTree<K extends ReadonlyVec, V>\n}\nselect(q: Readonly<K>, maxNum: number, maxDist?: number): Pair<K, V>[] {\n+ if (!this.root) return [];\nconst res: Pair<K, V>[] = [];\nconst src = this.buildSelection(q, maxNum, maxDist);\nfor (let n = ... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(geom-accel): add root null check for select/selectKeys() | 1 | fix | geom-accel |
679,913 | 21.01.2019 17:18:21 | 0 | 193f9d4a54186a2a6b29c9a17bd17ae653978c7e | feat(poisson): re-import & update poisson package (MBP2010) | [
{
"change_type": "ADD",
"diff": "+.meta\n+.nyc_output\n+*.html\n+*.tgz\n+build\n+coverage\n+dev\n+doc\n+export\n+src*\n+test\n+tsconfig.json\n",
"new_path": "packages/poisson/.npmignore",
"old_path": null
},
{
"change_type": "ADD",
"diff": "+ Apache License\n+ Version 2.0, January 2004\n... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(poisson): re-import & update poisson package (MBP2010) | 1 | feat | poisson |
503,951 | 21.01.2019 17:19:16 | 18,000 | 7799263240e6e510132022e5a101927d46b109c9 | fix(readme): update readme for react-charts | [
{
"change_type": "MODIFY",
"diff": "# @patternfly/react-charts\n-This package provides Core PatternFly components for the [PatternFly 4][patternfly-4].\n+This package provides PatternFly charting components for [PatternFly 4][patternfly-4].\n### Prerequisite\n",
"new_path": "packages/patternfly-4/react-... | TypeScript | MIT License | patternfly/patternfly-react | fix(readme): update readme for react-charts (#1225) | 1 | fix | readme |
71,253 | 21.01.2019 18:53:49 | 0 | 2b491d44c40e5f078ea49d10d8399c84aa205631 | feat(aws-ecs): ECS service scaling on ALB RequestCount | [
{
"change_type": "MODIFY",
"diff": "@@ -205,7 +205,7 @@ const service = new ecs.FargateService(this, 'Service', { /* ... */ });\nconst lb = new elbv2.ApplicationLoadBalancer(this, 'LB', { vpc, internetFacing: true });\nconst listener = lb.addListener('Listener', { port: 80 });\n-listener.addTargets('ECS', {... | TypeScript | Apache License 2.0 | aws/aws-cdk | feat(aws-ecs): ECS service scaling on ALB RequestCount (#1574) | 1 | feat | aws-ecs |
503,922 | 21.01.2019 19:22:12 | -3,600 | 45367bc86b397e11f872b20cdb1181635397b8a6 | fix(Dropdown): Do not focus Dropdown if menu is not opened | [
{
"change_type": "MODIFY",
"diff": "@@ -55,7 +55,7 @@ class DropdownToggle extends Component {\n};\nonDocClick = event => {\n- if (this.props.parentRef && !this.props.parentRef.contains(event.target)) {\n+ if (this.props.isOpen && this.props.parentRef && !this.props.parentRef.contains(event.target)) {\nthis... | TypeScript | MIT License | patternfly/patternfly-react | fix(Dropdown): Do not focus Dropdown if menu is not opened (#1222) | 1 | fix | Dropdown |
679,913 | 21.01.2019 19:38:25 | 0 | 124acdb18d2efc4783ef3e93d044a7999dc75df2 | docs(poisson): add/update doc strings, readme, example screenshot | [
{
"change_type": "ADD",
"diff": "Binary files /dev/null and b/assets/screenshots/poisson.jpg differ\n",
"new_path": "assets/screenshots/poisson.jpg",
"old_path": "assets/screenshots/poisson.jpg"
},
{
"change_type": "MODIFY",
"diff": "@@ -13,6 +13,7 @@ This project is part of the\n- [Inst... | TypeScript | Apache License 2.0 | thi-ng/umbrella | docs(poisson): add/update doc strings, readme, example screenshot | 1 | docs | poisson |
447,440 | 21.01.2019 20:06:30 | 21,600 | 4cd325edf8ad563c655b7901958be82329b5635a | fix: fix typo in contributing | [
{
"change_type": "MODIFY",
"diff": "@@ -119,7 +119,7 @@ export default class GettingStartedPage extends Component {\n<h2 className=\"react-rainbow-getting-started_section-heading-2\"> Get your git on</h2>\n<h5 className=\"react-rainbow-getting-started_section-heading-5\">\nYou can help us improve React Rain... | JavaScript | MIT License | nexxtway/react-rainbow | fix: fix typo in contributing (#554) | 1 | fix | null |
791,690 | 21.01.2019 20:59:19 | 28,800 | 1098f952d5c75b22668aa572532415f81d2817af | misc: replace TODOs with github issue links | [
{
"change_type": "MODIFY",
"diff": "@@ -22,8 +22,6 @@ module.exports = {\n'unused-css-rules',\n'unused-javascript',\n],\n-\n- // TODO(phulce): re-write testers to work with faster lantern loading\nthrottlingMethod: 'devtools',\n},\n};\n",
"new_path": "lighthouse-cli/test/smokehouse/byte-config.js",
... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | misc: replace TODOs with github issue links (#7049) | 1 | misc | null |
67,475 | 21.01.2019 22:14:03 | -36,000 | 447646e9bc4e70c3e4a7bf56b3813e8175804137 | feat(runtime-html): create event and dispatch methods
Used by the Fetch client package at the moment. These might be moved elsewhere with the instance based DOM stuff. | [
{
"change_type": "MODIFY",
"diff": "@@ -102,6 +102,15 @@ export class HTMLDOM implements IDOM {\npublic createElement(name: string): HTMLElement {\nreturn this.doc.createElement(name);\n}\n+\n+ public createCustomEvent<T = any>(eventType: string, options?: CustomEventInit<T>): CustomEvent<T> {\n+ return new... | TypeScript | MIT License | aurelia/aurelia | feat(runtime-html): create event and dispatch methods
Used by the Fetch client package at the moment. These might be moved elsewhere with the instance based DOM stuff. | 1 | feat | runtime-html |
67,475 | 21.01.2019 22:18:44 | -36,000 | 9967a6c396b12cb24f69330bc6711bcac35bce6e | feat(runtime): interfaces for create and dispatch event methods | [
{
"change_type": "MODIFY",
"diff": "@@ -53,6 +53,8 @@ export interface IDOM<T extends INode = INode> {\nconvertToRenderLocation(node: T): IRenderLocation<T>;\ncreateDocumentFragment(markupOrNode?: string | T): T;\ncreateElement(name: string): T;\n+ createCustomEvent<T = any>(eventType: string, options?: Cus... | TypeScript | MIT License | aurelia/aurelia | feat(runtime): interfaces for create and dispatch event methods | 1 | feat | runtime |
67,475 | 21.01.2019 22:19:09 | -36,000 | 60423bc4dcc61e5c3a23bc4c05f2b810bfd3aec0 | fix(runtime): allow dom interfaces to be used in typings | [
{
"change_type": "MODIFY",
"diff": "\"declarationDir\": \"dist\",\n\"outDir\": \"dist/build\",\n\"preserveConstEnums\": true,\n- \"rootDir\": \"src\"\n+ \"rootDir\": \"src\",\n+ \"lib\": [\n+ \"esnext\",\n+ \"dom\"\n+ ]\n},\n- \"include\": [\"src\"]\n+ \"include\": [\n+ \"src\"\n+ ]\n}\n",
"new_path": "... | TypeScript | MIT License | aurelia/aurelia | fix(runtime): allow dom interfaces to be used in typings | 1 | fix | runtime |
815,593 | 21.01.2019 22:20:49 | -32,400 | 55e682e4bcdc9dc385090f512fe3b505640bd64b | chore: try cargo sweep | [
{
"change_type": "MODIFY",
"diff": "language: rust\nsudo: true\ncache:\n+ cargo: true\ntimeout: 1024\n- directories:\n- - $HOME/.cargo\n+\ngit:\ndepth: 2\nsubmodules: false\n@@ -42,8 +42,10 @@ addons:\ninstall:\n- if [ \"$FMT\" = true ]; then cargo fmt --version || rustup component add rustfmt; fi\n- if [ \... | Rust | MIT License | nervosnetwork/ckb | chore: try cargo sweep (#208) | 1 | chore | null |
469,409 | 21.01.2019 22:59:22 | 28,800 | 19f68fa221bcab86e3390f266e226b4142c52c5e | fix: typo in CONTRIBUTING.md and compose command in BUILDING.md | [
{
"change_type": "MODIFY",
"diff": "@@ -63,10 +63,8 @@ Any dockerfiles used by the docker-compose may be placed at the discretion of th\n## Build Pipeline\nStarting from clean master branch with latest HEAD\n-### building all targets\n-`docker-compose up -f ./docker-compose.build.yml` should create builds f... | JavaScript | Apache License 2.0 | open-rpc/spec | fix: typo in CONTRIBUTING.md and compose command in BUILDING.md | 1 | fix | null |
447,447 | 22.01.2019 00:46:08 | 18,000 | 45c27f48c67a4475576287252b9d6b07bc68e2a3 | style: add effect to the Slider component and button component | [
{
"change_type": "MODIFY",
"diff": "@@ -22,6 +22,8 @@ export default function Header() {\n<Input\nclassName=\"rainbow-m-left_x-large rainbow-admin_header-search\"\nplaceholder=\"Search\"\n+ label=\"header search\"\n+ hideLabel\nicon={<FontAwesomeIcon icon={faSearch} className=\"rainbow-color_gray-3\" />} />... | JavaScript | MIT License | nexxtway/react-rainbow | style: add effect to the Slider component and button component (#555) | 1 | style | null |
447,440 | 22.01.2019 01:35:33 | 21,600 | d870fbe8df0e466a60ad9aaf048363e38261f96d | styles: fix styles button | [
{
"change_type": "MODIFY",
"diff": "line-height: 2.375rem;\ntext-decoration: none;\ncolor: #01b6f5;\n- padding: 0;\n+ padding: 0 1rem;\ncursor: pointer;\n-webkit-appearance: none;\nwhite-space: normal;\npadding: 0 1rem;\ntext-align: center;\nvertical-align: middle;\n- transition: border 0.15s linear;\n- pad... | JavaScript | MIT License | nexxtway/react-rainbow | styles: fix styles button (#556) | 1 | styles | null |
67,475 | 22.01.2019 08:27:10 | -36,000 | ad7261f3fea467ce2ba9009217a3f061af321bb0 | chore(runtime-html): spacing for lines and methods
Things were hard to read, there was no consistency of spacing between lines in this file. | [
{
"change_type": "MODIFY",
"diff": "@@ -8,6 +8,7 @@ import {\nReporter,\nWritable\n} from '@aurelia/kernel';\n+\nimport {\nCompiledTemplate,\nIDOM,\n@@ -64,41 +65,55 @@ export class HTMLDOM implements IDOM {\npublic addEventListener(eventName: string, subscriber: EventListenerOrEventListenerObject, publishe... | TypeScript | MIT License | aurelia/aurelia | chore(runtime-html): spacing for lines and methods
Things were hard to read, there was no consistency of spacing between lines in this file. | 1 | chore | runtime-html |
71,101 | 22.01.2019 09:45:03 | 28,800 | 912839031b26123287ffc38d9a6e95986e0a5c90 | feat: Make `roleName` available on `IRole`
The `iam.Policy` class expected to be provided (concrete) `Role` instances,
making it unusable when all that is available is an `IRole` (as should be in
most situations). This changes the API to accept an `IRole` instead, increasing
the usability. | [
{
"change_type": "MODIFY",
"diff": "@@ -46,7 +46,7 @@ class HaveResourceAssertion extends Assertion<StackInspector> {\n}\npublic assertUsing(inspector: StackInspector): boolean {\n- for (const logicalId of Object.keys(inspector.value.Resources)) {\n+ for (const logicalId of Object.keys(inspector.value.Resou... | TypeScript | Apache License 2.0 | aws/aws-cdk | feat: Make `roleName` available on `IRole` (#1589)
The `iam.Policy` class expected to be provided (concrete) `Role` instances,
making it unusable when all that is available is an `IRole` (as should be in
most situations). This changes the API to accept an `IRole` instead, increasing
the usability. | 1 | feat | null |
679,913 | 22.01.2019 11:54:24 | 0 | 7f6011e717fa232cdf207e5cedcdec797d6ad6b2 | feat(hiccup-svg): add color dep, add attrib conversion for all elements
fix "rect" size handling in convertTree(), revert back to individual
width/height values
add thi.ng/color dependency
add fattrib() & fcolor() helpers
update & move convertTransforms => ftransforms()
update attrib handling for all elements | [
{
"change_type": "MODIFY",
"diff": "\"scripts\": {\n\"build\": \"yarn clean && yarn build:es6 && yarn build:bundle\",\n\"build:es6\": \"tsc --declaration\",\n- \"build:bundle\": \"../../scripts/bundle-module hiccupSvg checks hiccup\",\n+ \"build:bundle\": \"../../scripts/bundle-module hiccupSvg checks color... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(hiccup-svg): add color dep, add attrib conversion for all elements
- fix "rect" size handling in convertTree(), revert back to individual
width/height values
- add thi.ng/color dependency
- add fattrib() & fcolor() helpers
- update & move convertTransforms => ftransforms()
- update attrib handling for all eleme... | 1 | feat | hiccup-svg |
679,913 | 22.01.2019 11:55:27 | 0 | 783d9faf2b349b56c8ae4ac90d40b4e3427a8610 | docs(hiccup-svg): update readme, add attrib conv notes, fix example | [
{
"change_type": "MODIFY",
"diff": "@@ -9,15 +9,11 @@ This project is part of the\n## About\n-SVG element functions for\n+SVG element functions & conversion for\n[@thi.ng/hiccup](https://github.com/thi-ng/umbrella/tree/master/packages/hiccup)\n&\n[@thi.ng/hdom](https://github.com/thi-ng/umbrella/tree/master... | TypeScript | Apache License 2.0 | thi-ng/umbrella | docs(hiccup-svg): update readme, add attrib conv notes, fix example | 1 | docs | hiccup-svg |
67,475 | 22.01.2019 12:02:41 | -36,000 | 9419faab34675e4a8e2717c8a0590fb97b53ec45 | feat(runtime): added exportable dom object | [
{
"change_type": "MODIFY",
"diff": "@@ -11,6 +11,7 @@ import {\nimport {\nCompiledTemplate,\n+ DOM,\nIDOM,\nINode,\nINodeSequence,\n",
"new_path": "packages/runtime-html/src/dom.ts",
"old_path": "packages/runtime-html/src/dom.ts"
},
{
"change_type": "MODIFY",
"diff": "@@ -2,6 +2,8 @@ imp... | TypeScript | MIT License | aurelia/aurelia | feat(runtime): added exportable dom object | 1 | feat | runtime |
67,475 | 22.01.2019 12:03:19 | -36,000 | 31d453669fe0031d51d2f6e37302d6ecac197754 | feat(runtime-html): add custom event constructor | [
{
"change_type": "MODIFY",
"diff": "@@ -46,6 +46,7 @@ export class HTMLDOM implements IDOM {\npublic readonly Node: typeof Node;\npublic readonly Element: typeof Element;\npublic readonly HTMLElement: typeof HTMLElement;\n+ public readonly CustomEvent: typeof CustomEvent;\nprivate readonly wnd: Window;\npri... | TypeScript | MIT License | aurelia/aurelia | feat(runtime-html): add custom event constructor | 1 | feat | runtime-html |
67,475 | 22.01.2019 12:03:43 | -36,000 | c2b5630321cd4b92e10ecb40c8db812c80132ff5 | feat(runtime-html-browser): add customevent constructor to instantiation | [
{
"change_type": "MODIFY",
"diff": "@@ -29,7 +29,8 @@ class BrowserDOMInitializer implements IDOMInitializer {\nconfig.host.ownerDocument,\nNode,\nElement,\n- HTMLElement\n+ HTMLElement,\n+ CustomEvent\n);\n} else {\ndom = new HTMLDOM(\n@@ -37,7 +38,8 @@ class BrowserDOMInitializer implements IDOMInitialize... | TypeScript | MIT License | aurelia/aurelia | feat(runtime-html-browser): add customevent constructor to instantiation | 1 | feat | runtime-html-browser |
67,475 | 22.01.2019 12:04:00 | -36,000 | 62225de8060a2823340ce4cfe41b56889152f27c | feat(runtime-html-jsdom): add customevent constructor to instantiation | [
{
"change_type": "MODIFY",
"diff": "@@ -32,7 +32,8 @@ class JSDOMInitializer implements IDOMInitializer {\nconfig.host.ownerDocument,\nthis.jsdom.window.Node,\nthis.jsdom.window.Element,\n- this.jsdom.window.HTMLElement\n+ this.jsdom.window.HTMLElement,\n+ this.jsdom.window.CustomEvent\n);\n} else {\nif (co... | TypeScript | MIT License | aurelia/aurelia | feat(runtime-html-jsdom): add customevent constructor to instantiation | 1 | feat | runtime-html-jsdom |
679,913 | 22.01.2019 12:39:39 | 0 | 1d92c8c342699e525a0932237fd8637870152cb7 | feat(hdom-canvas): add color dep, update color attrib handling
add support for non-string color attribs
update readme | [
{
"change_type": "MODIFY",
"diff": "@@ -13,6 +13,7 @@ This project is part of the\n- [Status](#status)\n- [Installation](#installation)\n- [Dependencies](#dependencies)\n+- [Related packages](#related-packages)\n- [Usage examples](#usage-examples)\n- [How it works](#how-it-works)\n- [Restrictions & behavior... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(hdom-canvas): add color dep, update color attrib handling
- add support for non-string color attribs
- update readme | 1 | feat | hdom-canvas |
679,913 | 22.01.2019 12:40:29 | 0 | 8c1df496e0b10fbd29d4e0765a77731f8ce1d78f | fix(geom): update Rect.toHiccup() format (separate widht/height vals) | [
{
"change_type": "MODIFY",
"diff": "@@ -656,7 +656,7 @@ export class Rect implements\n}\ntoHiccup() {\n- return [\"rect\", this.attribs, this.pos, this.size];\n+ return [\"rect\", this.attribs, this.pos, this.size[0], this.size[1]];\n}\n}\n",
"new_path": "packages/geom/src/api.ts",
"old_path": "pack... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(geom): update Rect.toHiccup() format (separate widht/height vals) | 1 | fix | geom |
679,913 | 22.01.2019 12:41:15 | 0 | a017b10a018e734fc76bfcbb9711c456a60f637a | feat(geom): add attrib support to PathBuilder | [
{
"change_type": "MODIFY",
"diff": "@@ -43,32 +43,34 @@ export const normalizedPath =\n);\nexport const roundedRect =\n- (pos: Vec, size: Vec, r: number | Vec) => {\n+ (pos: Vec, size: Vec, r: number | Vec, attribs?: Attribs) => {\nr = isNumber(r) ? [r, r] : r;\n- const b = new PathBuilder();\nconst [w, h] ... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(geom): add attrib support to PathBuilder | 1 | feat | geom |
679,913 | 22.01.2019 12:41:39 | 0 | c6023793b256f96351fe58422abf10c94449b2c2 | feat(geom): add asPolyline() multi-fn | [
{
"change_type": "MODIFY",
"diff": "@@ -20,6 +20,7 @@ export * from \"./ops/arc-length\";\nexport * from \"./ops/area\";\nexport * from \"./ops/as-cubic\";\nexport * from \"./ops/as-polygon\";\n+export * from \"./ops/as-polyline\";\nexport * from \"./ops/as-svg\";\nexport * from \"./ops/bounds\";\nexport * ... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(geom): add asPolyline() multi-fn | 1 | feat | geom |
679,913 | 22.01.2019 12:44:48 | 0 | 35a0a59e88af83951d83b4b37585c6edf9b5579f | fix(examples): update canvas examples due to recent package changes | [
{
"change_type": "MODIFY",
"diff": "@@ -5,7 +5,7 @@ import { fitClamped } from \"@thi.ng/math\";\nimport { Subscription } from \"@thi.ng/rstream\";\nimport { GestureEvent, gestureStream, GestureType } from \"@thi.ng/rstream-gestures\";\nimport { peek } from \"@thi.ng/transducers\";\n-import { heading2, sub2... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(examples): update canvas examples due to recent package changes | 1 | fix | examples |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.