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 ⌀ |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
217,922 | 06.06.2018 15:31:42 | -7,200 | 8ae4db814d7eb4dc918f3b4a3d55b2bc7ad0d44b | fix: fixed a critical which was breaking recipes search in production | [
{
"change_type": "MODIFY",
"diff": "alt=\"{{item.itemId | itemName | i18n}}\">\n</a>\n<h4 mat-line>{{item.itemId | itemName | i18n}}</h4>\n- <p mat-line *ngIf=\"item.job !== undefined && getJob(item.job).abbreviation !== 'ADV'\">\n- <img src=\"https://www.garlandtools.org/db/images/{{getJob(item.job).abbrev... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed a critical which was breaking recipes search in production | 1 | fix | null |
679,913 | 06.06.2018 15:33:26 | -3,600 | 720b1f189dbe4552160149715c308edf632be3c6 | docs(rstream-graph): update api docs & readme | [
{
"change_type": "MODIFY",
"diff": "@@ -12,7 +12,10 @@ Declarative, reactive dataflow graph construction using\n[@thi.ng/atom](https://github.com/thi-ng/umbrella/tree/master/packages/atom) and [@thi.ng/transducers](https://github.com/thi-ng/umbrella/tree/master/packages/transducers)\nprimitives.\n-Stream su... | TypeScript | Apache License 2.0 | thi-ng/umbrella | docs(rstream-graph): update api docs & readme | 1 | docs | rstream-graph |
217,922 | 06.06.2018 15:49:26 | -7,200 | 588b74d90d4f860d2a4699d334394450bed5a32a | chore: change http for https in garlandtools data loading | [
{
"change_type": "MODIFY",
"diff": "@@ -15,7 +15,7 @@ export class GarlandToolsService {\npublic preload(): void {\nif (this.gt.jobCategories === undefined) {\n- this.http.get<GarlandToolsData>('http://www.garlandtools.org/db/doc/core/en/2/data.json')\n+ this.http.get<GarlandToolsData>('https://www.garlandt... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: change http for https in garlandtools data loading | 1 | chore | null |
724,198 | 06.06.2018 16:49:43 | -28,800 | a864ed3f7835828ca532a7ffd4cbded47fe48ffb | fix: type definition of classes method | [
{
"change_type": "MODIFY",
"diff": "@@ -56,7 +56,7 @@ interface BaseWrapper {\nvisible (): boolean\nattributes(): { [name: string]: string }\n- classes(): Array<string> | void\n+ classes(): Array<string>\nprops(): { [name: string]: any }\nhasAttribute (attribute: string, value: string): boolean\n",
"new... | JavaScript | MIT License | vuejs/vue-test-utils | fix: type definition of classes method (#685) | 1 | fix | null |
724,111 | 06.06.2018 16:49:59 | -28,800 | 0437e2638ed782ad19760c46057f6d5e00a8521c | docs: zn update | [
{
"change_type": "MODIFY",
"diff": "@@ -126,4 +126,4 @@ describe('Foo', () => {\n})\n```\n-- **See also:** [Wrapper](wrapper/README.md)\n+- **See also:** [Wrapper](wrapper/)\n",
"new_path": "docs/api/mount.md",
"old_path": "docs/api/mount.md"
},
{
"change_type": "MODIFY",
"diff": "## fin... | JavaScript | MIT License | vuejs/vue-test-utils | docs: zn update (#674) | 1 | docs | null |
791,676 | 06.06.2018 18:36:31 | -7,200 | ac264c0894c9ddc5781afa427d54d47b1d2f4c8c | extension(popup): integration test for popup | [
{
"change_type": "MODIFY",
"diff": "@@ -247,7 +247,7 @@ async function initPopup() {\n});\n// bind throttling control button\n- const lanternCheckbox = /** @type {HTMLInputElement} */ (find('lantern-checkbox'));\n+ const lanternCheckbox = /** @type {HTMLInputElement} */ (find('#lantern-checkbox'));\nlantern... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | extension(popup): integration test for popup (#5412) | 1 | extension | popup |
791,676 | 06.06.2018 18:39:26 | -7,200 | d385645bd5d72e9a5c71e77c1d3728803f236ce5 | core(preload): only allow same origin (domain + subdomains) | [
{
"change_type": "MODIFY",
"diff": "*/\n'use strict';\n+const URL = require('../lib/url-shim');\nconst Audit = require('./audit');\nconst UnusedBytes = require('./byte-efficiency/byte-efficiency-audit');\nconst THRESHOLD_IN_MS = 100;\n@@ -57,6 +58,20 @@ class UsesRelPreloadAudit extends Audit {\nreturn requ... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(preload): only allow same origin (domain + subdomains) (#5065) | 1 | core | preload |
679,913 | 06.06.2018 23:39:50 | -3,600 | 57f1ed5fd8576d2b299ddb17d231b4508147e4b9 | feat(resolve-map): add ES6 destructuring shorthands for function vals
add _resolveFunction()
add tests
update docs & readme | [
{
"change_type": "MODIFY",
"diff": "@@ -47,22 +47,43 @@ resolveMap({a: 1, b: {c: \"@d\", d: \"@/a\"} })\n// { a: 1, b: { c: 1, d: 1 } }\n```\n-If a value is a function, it is called with a single arg `resolve`, a\n-function which accepts a path (**without `@` prefix**) to look up other\n-values. The return ... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(resolve-map): add ES6 destructuring shorthands for function vals
- add _resolveFunction()
- add tests
- update docs & readme | 1 | feat | resolve-map |
679,913 | 07.06.2018 03:19:10 | -3,600 | 0fc2305eb1565338d119513c6365b5215376d503 | fix(rstream-graph): rename `resolveMap` => `resolve` due to upstream changes | [
{
"change_type": "MODIFY",
"diff": "@@ -5,7 +5,7 @@ import { isPlainObject } from \"@thi.ng/checks/is-plain-object\";\nimport { isString } from \"@thi.ng/checks/is-string\";\nimport { illegalArgs } from \"@thi.ng/errors/illegal-arguments\";\nimport { getIn } from \"@thi.ng/paths\";\n-import { absPath, resol... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(rstream-graph): rename `resolveMap` => `resolve` due to upstream changes | 1 | fix | rstream-graph |
730,429 | 07.06.2018 10:02:44 | 14,400 | aff906d138d2525f861907fd42f03e4d72c32946 | feat(all): remove roster feature flag | [
{
"change_type": "MODIFY",
"diff": "@@ -3,7 +3,6 @@ import {Map} from 'immutable';\nexport const STORE_FEATURE = 'features/STORE_FEATURE';\nexport const FEATURE_MENTIONS = 'js-widgets-mentions';\n-export const FEATURE_ROSTER = 'js-widgets-roster';\nexport const initialState = new Map({\nitems: new Map()\n",... | JavaScript | MIT License | webex/react-widgets | feat(all): remove roster feature flag | 1 | feat | all |
730,429 | 07.06.2018 10:07:52 | 14,400 | 46a8e8188b5a8d4df359f5c769a3212a03ee6195 | feat(widget-message): remove mentions feature flag | [
{
"change_type": "MODIFY",
"diff": "@@ -2,8 +2,6 @@ import {Map} from 'immutable';\nexport const STORE_FEATURE = 'features/STORE_FEATURE';\n-export const FEATURE_MENTIONS = 'js-widgets-mentions';\n-\nexport const initialState = new Map({\nitems: new Map()\n});\n",
"new_path": "packages/node_modules/@cis... | JavaScript | MIT License | webex/react-widgets | feat(widget-message): remove mentions feature flag | 1 | feat | widget-message |
791,690 | 07.06.2018 12:46:05 | 25,200 | 13a133ddb13274a49c11c2089d4a805b741dc1a0 | core(main-resource): work with hash URLs | [
{
"change_type": "MODIFY",
"diff": "'use strict';\nconst ComputedArtifact = require('./computed-artifact');\n+const URL = require('../../lib/url-shim');\n/**\n* @fileoverview This artifact identifies the main resource on the page. Current solution assumes\n@@ -21,18 +22,18 @@ class MainResource extends Comp... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(main-resource): work with hash URLs (#5422) | 1 | core | main-resource |
573,227 | 07.06.2018 13:39:27 | 25,200 | 6be3fb7c07483ee1991eba9aaa9ad4897c5a4965 | fix(server): address req and res close event changes in Node v10.x | [
{
"change_type": "MODIFY",
"diff": "@@ -1091,6 +1091,7 @@ Server.prototype._onHandlerError = function _onHandlerError(err, req, res) {\nreturn;\n}\n+ // Handlers don't continue when error happen\nres._handlersFinished = true;\n// Preserve handler err for finish event\n@@ -1138,27 +1139,29 @@ Server.prototyp... | JavaScript | MIT License | restify/node-restify | fix(server): address req and res close event changes in Node v10.x (#1672) | 1 | fix | server |
573,227 | 07.06.2018 14:01:22 | 25,200 | a0e183b32ade06c6f57a1dd3e9f8f742f8340849 | chore(package): update minor dependencies | [
{
"change_type": "MODIFY",
"diff": "\"csv\": \"^1.1.1\",\n\"escape-regexp-component\": \"^1.0.2\",\n\"ewma\": \"^2.0.1\",\n- \"find-my-way\": \"^1.12.0\",\n+ \"find-my-way\": \"^1.13.0\",\n\"formidable\": \"^1.2.1\",\n\"http-signature\": \"^1.2.0\",\n\"lodash\": \"^4.17.10\",\n\"documentation\": \"^5.3.3\",... | JavaScript | MIT License | restify/node-restify | chore(package): update minor dependencies (#1675) | 1 | chore | package |
807,849 | 07.06.2018 17:29:36 | 25,200 | f674f354f0260c57d885c181e16c9ce23ac252a8 | fix(project): Report syntax errors in root package.json
Fixes | [
{
"change_type": "MODIFY",
"diff": "@@ -448,6 +448,23 @@ describe(\"core-command\", () => {\n}\n});\n+ it(\"throws JSONError when root package.json has syntax error\", async () => {\n+ expect.assertions(1);\n+\n+ const cwd = await initFixture(\"basic\");\n+\n+ await fs.writeFile(\n+ path.join(cwd, \"package... | JavaScript | MIT License | lerna/lerna | fix(project): Report syntax errors in root package.json
Fixes #1452 | 1 | fix | project |
573,195 | 08.06.2018 00:23:08 | 25,200 | 06f3fc839a8c82d7c2c8b9c7ad12d622a62b2e32 | chore: lift json regex to top of file | [
{
"change_type": "MODIFY",
"diff": "@@ -10,6 +10,7 @@ var jsonParser = require('./jsonBodyParser');\nvar formParser = require('./formBodyParser');\nvar multipartParser = require('./multipartBodyParser');\nvar fieldedTextParser = require('./fieldedTextBodyParser.js');\n+var regex = require('./utils/regex');\... | JavaScript | MIT License | restify/node-restify | chore: lift json regex to top of file (#1670) | 1 | chore | null |
217,922 | 08.06.2018 08:46:28 | -7,200 | 9cb553d6f85e4133ac7229c08da7890a17e56cdc | fix: fixed an error with wrong amount in trade popup in some cases
closes | [
{
"change_type": "MODIFY",
"diff": "@@ -13,7 +13,9 @@ import {DataModel} from '../../core/database/storage/data-model';\nexport class ListRow extends DataModel {\nicon?: number;\nid: number;\n+ // The amount of items needed for the craft.\namount: number;\n+ // The amount of crafts needed to get the amount ... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed an error with wrong amount in trade popup in some cases
closes #403 | 1 | fix | null |
217,922 | 08.06.2018 08:52:20 | -7,200 | 6af36efd20594870e8208c86141ffbefcc47ec24 | style: stripped results in items search page
closes | [
{
"change_type": "MODIFY",
"diff": "</div>\n<div *ngIf=\"results.length > 0 && !loading\">\n- <mat-list-item *ngFor=\"let item of results\" class=\"recipes-list-row\">\n+ <mat-list-item *ngFor=\"let item of results; let even = even\" class=\"recipes-list-row\" [class.even]=\"even\">\n<a mat-list-avatar href... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | style: stripped results in items search page
closes #402 | 1 | style | null |
217,922 | 08.06.2018 09:11:39 | -7,200 | 7c8f7eb46b09ec963eeb81d2f9beaafe08c661a5 | fix: dungeon and trial icons are now properly displayed
closes | [
{
"change_type": "MODIFY",
"diff": "@@ -36,8 +36,6 @@ export class ItemData {\nif (raw === undefined) {\nreturn undefined;\n}\n- const type = [undefined, 'Raid', 'Dungeon', 'Guildhest', 'Trial', 'PvP', 'PvP', undefined, undefined, 'Deep Dungeons',\n- 'Treasure Hunt', 'Seasonal Event'][raw.obj.t];\nreturn {\... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: dungeon and trial icons are now properly displayed
closes #400 | 1 | fix | null |
217,922 | 08.06.2018 10:23:26 | -7,200 | 059bc9fddc9285362aff3f973f66d4e5d57d56a6 | fix: fixed an issue with simulator link on items that have multiple recipes
closes | [
{
"change_type": "MODIFY",
"diff": "<div *ngIf=\"!recipe\">\n<div *ngFor=\"let craft of item.craftedBy\">\n<mat-menu #simulatorMenu=\"matMenu\">\n- <button mat-menu-item routerLink=\"/simulator/{{item.id}}\">{{'SIMULATOR.New_rotation' |\n+ <button mat-menu-item routerLink=\"/simulator/{{item.id}}/{{craft.re... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed an issue with simulator link on items that have multiple recipes
closes #401 | 1 | fix | null |
217,922 | 08.06.2018 12:06:57 | -7,200 | ccd625025194c728195ba4eca7172ba168c3f878 | feat: updated the /about page | [
{
"change_type": "MODIFY",
"diff": "<li>Victoria Valyntara</li>\n<li>Chris</li>\n<li>Neraud</li>\n- <li>S'Irle</li>\n+ <li>S'Irle Alythia</li>\n<li>Cathanys</li>\n<li>Tataru Taru</li>\n<li>wootnik</li>\n<li>Pr0num</li>\n- <li>Marrie Lumia</li>\n- <li>Naticus</li>\n+ <li>M'Marrie Lumia</li>\n<li>PiraSiraly</... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: updated the /about page | 1 | feat | null |
679,913 | 08.06.2018 12:12:41 | -3,600 | 244bf213e96166df69571771b8b98cdd82c64e39 | feat(hiccup-css): add class scoping support
add CSSOpts.scope field
update formatRule() to inject class suffixing transducer if needed | [
{
"change_type": "MODIFY",
"diff": "@@ -62,6 +62,10 @@ export interface CSSOpts {\n* Current tree depth. Internal use only. Ignore.\n*/\ndepth: number;\n+ /**\n+ * Optional scoping suffix for CSS classes\n+ */\n+ scope: string;\n}\nexport const DEFAULT_VENDORS = [\n",
"new_path": "packages/hiccup-css/sr... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(hiccup-css): add class scoping support
- add CSSOpts.scope field
- update formatRule() to inject class suffixing transducer if needed | 1 | feat | hiccup-css |
679,913 | 08.06.2018 12:15:46 | -3,600 | 8d6e6c8685ebd1da8eec36110025e56797823be8 | feat(hiccup-css): add injectStyleSheet() | [
{
"change_type": "MODIFY",
"diff": "@@ -4,6 +4,7 @@ export * from \"./comment\";\nexport * from \"./conditional\";\nexport * from \"./css\";\nexport * from \"./import\";\n+export * from \"./inject\";\nexport * from \"./keyframes\";\nexport * from \"./media\";\nexport * from \"./namespace\";\n",
"new_pat... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(hiccup-css): add injectStyleSheet() | 1 | feat | hiccup-css |
217,922 | 08.06.2018 13:21:45 | -7,200 | 80f6a21b1f8e8816428944c64e515e1ef4a042cb | chore: second part of about page update | [
{
"change_type": "MODIFY",
"diff": "<li>Pr0num</li>\n<li>M'Marrie Lumia</li>\n<li>PiraSiraly</li>\n- <li>Kaffey33</li>\n+ <li>Kaffey</li>\n<li>Raltz Klamar</li>\n<li>Betrayer</li>\n<li>Mipha Polaali</li>\n<li>Delmania Shadowstar</li>\n<li>Dr Dead</li>\n<li>Ascobol</li>\n+ <li>Elias Timm</li>\n</ul>\n<h2>{{'... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: second part of about page update | 1 | chore | null |
217,922 | 08.06.2018 13:40:28 | -7,200 | a51fdc9a871067daf1d173d645e60e4c985ae74d | chore: updated outdated version threshold for lists | [
{
"change_type": "MODIFY",
"diff": "@@ -370,7 +370,7 @@ export class List extends DataWithPermissions {\n}\nlet res = false;\nres = res || (this.version === undefined);\n- res = res || semver.ltr(this.version, '4.0.5');\n+ res = res || semver.ltr(this.version, '4.1.7');\nreturn res;\n}\n",
"new_path": "... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: updated outdated version threshold for lists | 1 | chore | null |
791,690 | 08.06.2018 14:11:41 | 25,200 | e02d517b62d3523592e26c2a6ab50c136184d4d8 | extension: allow use of ES2018 features | [
{
"change_type": "MODIFY",
"diff": "@@ -185,8 +185,7 @@ class OptimizedImages extends Gatherer {\n}\n/** @type {LH.Artifacts.OptimizedImage} */\n- // @ts-ignore TODO(bckenny): fix browserify/Object.spread. See https://github.com/GoogleChrome/lighthouse/issues/5152\n- const image = Object.assign({failed: fal... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | extension: allow use of ES2018 features (#5377) | 1 | extension | null |
217,922 | 08.06.2018 20:23:01 | -7,200 | 581f27829b84e7280b44c0040f06b597ec7e952b | feat: new /desktop page that redirects to github latest release | [
{
"change_type": "MODIFY",
"diff": "\"destination\": \"/index.html\"\n}\n],\n- \"headers\": [{\n+ \"redirects\": [\n+ {\n+ \"source\": \"/desktop\",\n+ \"destination\": \"https://github.com/Supamiu/ffxiv-teamcraft/releases/latest\",\n+ \"type\": 301\n+ }\n+ ],\n+ \"headers\": [\n+ {\n\"source\": \"**\",\n- ... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: new /desktop page that redirects to github latest release | 1 | feat | null |
724,020 | 09.06.2018 02:57:20 | 10,800 | b4331ff229da3a6679aa5451af602bb958cf66d5 | feat: Add setValue method | [
{
"change_type": "MODIFY",
"diff": "@@ -32,6 +32,9 @@ declare interface BaseWrapper { // eslint-disable-line no-undef\nsetData(data: Object): void,\nsetComputed(computed: Object): void,\nsetMethods(methods: Object): void,\n+ setValue(value: any): void,\n+ setChecked(checked: boolean): void,\n+ setSelected()... | JavaScript | MIT License | vuejs/vue-test-utils | feat: Add setValue method (#557) | 1 | feat | null |
724,000 | 09.06.2018 08:21:24 | -3,600 | 3446ec22c597eb1121def417eb83bf1bf4ded86f | test: skip setValue tests | [
{
"change_type": "MODIFY",
"diff": "@@ -2,7 +2,7 @@ import ComponentWithInput from '~resources/components/component-with-input.vue'\nimport { describeWithShallowAndMount } from '~resources/utils'\ndescribeWithShallowAndMount('setChecked', (mountingMethod) => {\n- it('sets element checked true with no option... | JavaScript | MIT License | vuejs/vue-test-utils | test: skip setValue tests | 1 | test | null |
724,000 | 09.06.2018 09:17:40 | -3,600 | 583d81961fc6da571a62b28abe46f8ebf651bce8 | chore: remove version from root package.json | [
{
"change_type": "MODIFY",
"diff": "{\n\"name\": \"vue-test-utils\",\n\"private\": true,\n- \"version\": \"1.0.0-beta.16\",\n\"workspaces\": [\n\"packages/*\"\n],\n\"lint\": \"eslint --ext js,vue . --ignore-path .gitignore\",\n\"lint:docs\": \"eslint --ext js,vue,md docs --ignore-path .gitignore\",\n\"lint:... | JavaScript | MIT License | vuejs/vue-test-utils | chore: remove version from root package.json | 1 | chore | null |
724,174 | 09.06.2018 14:59:50 | -32,400 | 55e52e277fea5e728f3ef0b434a1fa764fb58724 | docs: `setValue`, `setChecked`, `setSelected` | [
{
"change_type": "MODIFY",
"diff": "@@ -42,8 +42,11 @@ A `Wrapper` is an object that contains a mounted component or vnode and methods\n!!!include(docs/api/wrapper/isVueInstance.md)!!!\n!!!include(docs/api/wrapper/name.md)!!!\n!!!include(docs/api/wrapper/props.md)!!!\n+!!!include(docs/api/wrapper/setChecked... | JavaScript | MIT License | vuejs/vue-test-utils | docs: `setValue`, `setChecked`, `setSelected` (#694) | 1 | docs | null |
217,922 | 09.06.2018 20:24:50 | -7,200 | b3a690069239c9e2423e782dced24dc8bd192f2a | fix(desktop): alarms overlay no longer shows muted groups | [
{
"change_type": "MODIFY",
"diff": "*ngIf=\"alarm.slot\">({{alarm.slot}})</span></span>\n<i matLine>{{alarm.zoneId | placeName | i18n}} </i>\n<span class=\"coords\" matLine\n- *ngIf=\"compact || overlay\">X: {{alarm.coords[0]}} - Y: {{alarm.coords[1]}}</span>\n- <app-map-position *ngIf=\"!overlay\"\n- [zone... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(desktop): alarms overlay no longer shows muted groups | 1 | fix | desktop |
217,922 | 09.06.2018 20:27:15 | -7,200 | 5ffbea6b68aed12905cbc4db02247bcde480d055 | chore(release): 4.1.8 | [
{
"change_type": "MODIFY",
"diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"4.1.8\"></a>\n+## [4.1.8](https://github.com/Supamiu/ffxiv-teamcraft/compare/v4.1.7..... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore(release): 4.1.8 | 1 | chore | release |
217,922 | 09.06.2018 22:29:21 | -7,200 | 35b6e610508db6f7f07642035b38f74a7a4c1146 | fix(desktop): auto update popup won't open duplicates anymore | [
{
"change_type": "MODIFY",
"diff": "@@ -116,6 +116,7 @@ app.on('activate', function () {\n});\nautoUpdater.on('update-downloaded', () => {\n+ clearInterval(updateInterval);\ndialog.showMessageBox({\ntype: 'info',\ntitle: 'Update available',\n@@ -124,8 +125,6 @@ autoUpdater.on('update-downloaded', () => {\n}... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(desktop): auto update popup won't open duplicates anymore | 1 | fix | desktop |
217,922 | 10.06.2018 09:04:00 | -7,200 | 20ad62f0bddb23801498c8b940bb16039172167a | chore(desktop): added FFXIV Teamcraft mention insite update dialog box | [
{
"change_type": "MODIFY",
"diff": "@@ -119,7 +119,7 @@ autoUpdater.on('update-downloaded', () => {\nclearInterval(updateInterval);\ndialog.showMessageBox({\ntype: 'info',\n- title: 'Update available',\n+ title: 'FFXIV Teamcraft - Update available',\nmessage: 'An update is available and downloaded, install ... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore(desktop): added FFXIV Teamcraft mention insite update dialog box | 1 | chore | desktop |
723,998 | 10.06.2018 11:30:14 | -19,620 | 6dcfc4f5e88acc5aad903f5e2de619aa2bdb5ff0 | docs: update Vuex guide | [
{
"change_type": "MODIFY",
"diff": "@@ -217,7 +217,7 @@ And the test:\nimport { shallowMount, createLocalVue } from '@vue/test-utils'\nimport Vuex from 'vuex'\nimport MyComponent from '../../../src/components/MyComponent'\n-import mymodule from '../../../src/store/mymodule'\n+import myModule from '../../../... | JavaScript | MIT License | vuejs/vue-test-utils | docs: update Vuex guide (#691) | 1 | docs | null |
573,227 | 10.06.2018 15:44:57 | 25,200 | b69e6ed106cf6784d1b2ed4995d812636ed23598 | docs(index): sync createServer and Server constructor docs | [
{
"change_type": "MODIFY",
"diff": "@@ -64,15 +64,17 @@ routes and handlers for incoming requests.\n- `options.handleUpgrades` **[Boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)** Hook the `upgrade` event\nfrom the node HTTP server, pushing `Connection: Upgrade` ... | JavaScript | MIT License | restify/node-restify | docs(index): sync createServer and Server constructor docs (#1678) | 1 | docs | index |
821,224 | 10.06.2018 16:20:55 | -10,800 | 693bebc394befe9c0e1a8388e71c0b582c8e2c56 | chore: bump dependency to latest version | [
{
"change_type": "MODIFY",
"diff": "\"bin\": \"./bin/run\",\n\"bugs\": \"https://github.com/oclif/oclif/issues\",\n\"dependencies\": {\n- \"@oclif/command\": \"^1.4.32\",\n+ \"@oclif/command\": \"^1.4.33\",\n\"@oclif/config\": \"^1.6.27\",\n\"@oclif/errors\": \"^1.1.2\",\n\"@oclif/plugin-help\": \"^2.0.4\",... | TypeScript | MIT License | oclif/oclif | chore: bump @oclif/command dependency to latest version (#127) | 1 | chore | null |
217,922 | 10.06.2018 16:41:24 | -7,200 | 65ec2a08fc16222a85db6a6296ec9c1e21c09b21 | feat: "recipes only" filter is now persistent accross the platform (not account-bound) | [
{
"change_type": "MODIFY",
"diff": "<mat-hint align=\"end\">\n<small>{{'Data_from_gt' | translate}}</small>\n</mat-hint>\n- <mat-checkbox matSuffix [(ngModel)]=\"onlyCraftable\" (ngModelChange)=\"doSearch()\" class=\"only-recipes\">\n+ <mat-checkbox matSuffix [(ngModel)]=\"settings.recipesOnlySearch\" (ngMo... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: "recipes only" filter is now persistent accross the platform (not account-bound) | 1 | feat | null |
791,723 | 11.06.2018 11:38:12 | 25,200 | e71bad1bc7424ef5fd9d223707f04d01f074665b | core: faster saveTrace by streaming 500 events at a time | [
{
"change_type": "MODIFY",
"diff": "@@ -194,12 +194,14 @@ async function prepareAssets(artifacts, audits) {\n}\n/**\n- * Generates a JSON representation of traceData line-by-line to avoid OOM due to\n- * very large traces.\n+ * Generates a JSON representation of traceData line-by-line to avoid OOM due to ve... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core: faster saveTrace by streaming 500 events at a time (#5387) | 1 | core | null |
791,690 | 11.06.2018 11:38:51 | 25,200 | ee0c35a7d9fd3c889d7f5dc31d0630dc7cc3688e | docs: update required chrome version | [
{
"change_type": "MODIFY",
"diff": "@@ -89,7 +89,7 @@ function getFlags(manualArgv) {\n'preset': 'Use a built-in configuration.',\n'chrome-flags':\n`Custom flags to pass to Chrome (space-delimited). For a full list of flags, see http://bit.ly/chrome-flags\n- Additionally, use the CHROME_PATH environment var... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | docs: update required chrome version (#5425) | 1 | docs | null |
791,690 | 11.06.2018 11:48:28 | 25,200 | edbca2a36f24a6d0dfaf7ccdbbb94abfcd14a5a9 | core(multi-check): expose manifest checks in details | [
{
"change_type": "MODIFY",
"diff": "*/\n'use strict';\n+const pwaDetailsExpectations = {\n+ isParseFailure: false,\n+ hasStartUrl: true,\n+ hasIconsAtLeast192px: true,\n+ hasIconsAtLeast512px: true,\n+ hasPWADisplayValue: true,\n+ hasBackgroundColor: true,\n+ hasThemeColor: true,\n+ hasShortName: true,\n+ h... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(multi-check): expose manifest checks in details (#5405) | 1 | core | multi-check |
217,922 | 11.06.2018 13:23:20 | -7,200 | 0c216fbeefc5c9929d3be500a8d944ad89e2aa3a | chore: added more patreon supporters to the about page | [
{
"change_type": "MODIFY",
"diff": "<li>Dr Dead</li>\n<li>Ascobol</li>\n<li>Elias Timm</li>\n+ <li>LiminalityCarb</li>\n+ <li>Kenny</li>\n+ <li>Killagouge</li>\n+ <li>Faranae</li>\n+ <li>Erys Night</li>\n+ <li>Espresso Lalafell</li>\n+ <li>Omegan</li>\n+ <li>Rohatiro</li>\n+ <li>Scion</li>\n+ <li>Alicielle<... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: added more patreon supporters to the about page | 1 | chore | null |
791,690 | 11.06.2018 14:44:57 | 25,200 | 4c47fb0549a27eb72f084c28f5112dfc8015bad1 | core(a11y): add back html/tags/impact | [
{
"change_type": "MODIFY",
"diff": "@@ -33,6 +33,8 @@ class AxeAudit extends Audit {\nconst violations = artifacts.Accessibility.violations || [];\nconst rule = violations.find(result => result.id === this.meta.name);\n+ const impact = rule && rule.impact;\n+ const tags = rule && rule.tags;\n/** @type {Arra... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(a11y): add back html/tags/impact (#5439) | 1 | core | a11y |
730,413 | 11.06.2018 14:46:18 | 14,400 | e34377b8a2d65b0635df364cd6f606159140f364 | feat(widget-space): allow default overrides in activity menu | [
{
"change_type": "MODIFY",
"diff": "@@ -9,6 +9,7 @@ import RaisedButton from 'material-ui/RaisedButton';\nimport AppBar from 'material-ui/AppBar';\nimport {RadioButtonGroup, RadioButton} from 'material-ui/RadioButton';\nimport {Card, CardActions, CardTitle, CardText} from 'material-ui/Card';\n+import Checkb... | JavaScript | MIT License | webex/react-widgets | feat(widget-space): allow default overrides in activity menu | 1 | feat | widget-space |
791,690 | 11.06.2018 15:04:39 | 25,200 | 9cc37d4c07ca68c5b5463715877df4f95416daed | core(user-timings): add back startTime | [
{
"change_type": "MODIFY",
"diff": "@@ -115,16 +115,16 @@ class UserTimings extends Audit {\nreturn artifacts.requestTraceOfTab(trace).then(tabTrace => {\nconst userTimings = this.filterTrace(tabTrace).filter(UserTimings.excludeBlacklisted);\nconst tableRows = userTimings.map(item => {\n- const time = item.... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(user-timings): add back startTime (#5442) | 1 | core | user-timings |
730,412 | 11.06.2018 15:46:15 | 0 | 57d4b1910248c82727de14f5917d8801a5d63b74 | chore(release): 0.1.306 | [
{
"change_type": "MODIFY",
"diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"0.1.306\"></a>\n+## [0.1.306](https://github.com/webex/react-ciscospark/compare/v0.1.... | JavaScript | MIT License | webex/react-widgets | chore(release): 0.1.306 | 1 | chore | release |
724,111 | 11.06.2018 16:01:20 | -28,800 | 87936e96be3e5be4cd05e487588fd9c80db2fd98 | docs: keep update | [
{
"change_type": "MODIFY",
"diff": "## setChecked(value)\n-Sets the value of a radio or checkbox `<input`>.\n+Sets the value of a radio or checkbox `<input>`.\n- **Arguments:**\n- `{Boolean} selected`\n",
"new_path": "docs/api/wrapper/setChecked.md",
"old_path": "docs/api/wrapper/setChecked.md"
},... | JavaScript | MIT License | vuejs/vue-test-utils | docs: keep update (#702) | 1 | docs | null |
791,690 | 11.06.2018 17:36:44 | 25,200 | 5237ce749750a4ce45a6f9e5e5f212cf3829dd8d | core(simulator): convert node timings to trace | [
{
"change_type": "MODIFY",
"diff": "@@ -73,6 +73,7 @@ class LanternMetricArtifact extends ComputedArtifact {\n*/\nasync computeMetricWithGraphs(data, artifacts, extras) {\nconst {trace, devtoolsLog, settings} = data;\n+ const metricName = this.name.replace('Lantern', '');\nconst graph = await artifacts.requ... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(simulator): convert node timings to trace (#5350) | 1 | core | simulator |
730,412 | 11.06.2018 19:12:10 | 0 | 68b7d5278369f069c4a9e0850614464ba3145abf | chore(release): 0.1.307 | [
{
"change_type": "MODIFY",
"diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"0.1.307\"></a>\n+## [0.1.307](https://github.com/webex/react-ciscospark/compare/v0.1.... | JavaScript | MIT License | webex/react-widgets | chore(release): 0.1.307 | 1 | chore | release |
821,193 | 12.06.2018 09:17:41 | 25,200 | 764ade1dfcf99e3de74a9a93dc85cc24e3d927a0 | fix: Add rimraf to devDependencies for single and multi projects and use it in npm scripts | [
{
"change_type": "MODIFY",
"diff": "\"bugs\": \"https://github.com/oclif/oclif/issues\",\n\"dependencies\": {\n\"@oclif/command\": \"^1.4.33\",\n- \"@oclif/config\": \"^1.6.27\",\n+ \"@oclif/config\": \"^1.6.28\",\n\"@oclif/errors\": \"^1.1.2\",\n\"@oclif/plugin-help\": \"^2.0.5\",\n\"@oclif/plugin-not-foun... | TypeScript | MIT License | oclif/oclif | fix: Add rimraf to devDependencies for single and multi projects and use it in npm scripts (#123) | 1 | fix | null |
730,429 | 12.06.2018 10:21:43 | 14,400 | 67a4a0b094951c1f0dd6fbb1fefc10ef65e654ce | feat(widget-space): add destination prop | [
{
"change_type": "ADD",
"diff": "+# Space Widget Setup Flow\n+\n+The Space Widget allows you to open a space to a given space id, user id, or email.\n+\n+The widget goes through different workflows depending on which type of space you are opening.\n+\n+## Destinations\n+\n+The Space Widget requires two iden... | JavaScript | MIT License | webex/react-widgets | feat(widget-space): add destination prop | 1 | feat | widget-space |
730,413 | 12.06.2018 16:50:52 | 14,400 | caed5eb63a4f0680255b70282cda823ec2d2d02c | fix(r-c-activity-item-base): delete message button not displayed for long messages | [
{
"change_type": "MODIFY",
"diff": "display: flex;\nflex: 1 1 auto;\nflex-direction: column;\n- width: calc(100% - 40px);\n+ width: calc(100% - 100px);\nborder-radius: 1px;\n}\n",
"new_path": "packages/node_modules/@ciscospark/react-component-activity-item-base/src/styles.css",
"old_path": "packages... | JavaScript | MIT License | webex/react-widgets | fix(r-c-activity-item-base): delete message button not displayed for long messages | 1 | fix | r-c-activity-item-base |
730,429 | 12.06.2018 16:58:38 | 14,400 | aa572158554148e8d43d5164192b68602d0809c9 | test(tap): fix tap recents selectors | [
{
"change_type": "MODIFY",
"diff": "@@ -9,6 +9,12 @@ import CiscoSpark from '@ciscospark/spark-core';\nimport waitForPromise from '../../../lib/wait-for-promise';\nimport {clearEventLog, getEventLog} from '../../../lib/events';\nimport {loginAndOpenWidget} from '../../../lib/test-helpers/tap/recents';\n+imp... | JavaScript | MIT License | webex/react-widgets | test(tap): fix tap recents selectors | 1 | test | tap |
217,922 | 12.06.2018 17:22:44 | -7,200 | afefe331ec792637140c4cd90651336845967c8e | chore: [WIP] first implementation for rotation folders system
TODO: UI, reorder folders by dnd. | [
{
"change_type": "MODIFY",
"diff": "@@ -38,4 +38,6 @@ export class AppUser extends DataModel {\ncontacts: string[] = [];\n// Alarm groups for the user\nalarmGroups: AlarmGroup[] = [{name: 'Default group', enabled: true}];\n+ // Rotation folders\n+ rotationFolders: string[] = [];\n}\n",
"new_path": "src/... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: [WIP] first implementation for rotation folders system
TODO: UI, reorder folders by dnd. | 1 | chore | null |
791,834 | 12.06.2018 18:54:39 | 21,600 | 48519f185eb5bfa19a22a091ecc08985b0fe510a | core(tsc): add initial trivial type info to config.js | [
{
"change_type": "MODIFY",
"diff": "@@ -17,10 +17,18 @@ const path = require('path');\nconst Audit = require('../audits/audit');\nconst Runner = require('../runner');\n+/** @typedef {typeof import('../gather/gatherers/gatherer.js')} GathererConstructor */\n+/** @typedef {InstanceType<GathererConstructor>} G... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(tsc): add initial trivial type info to config.js (#5481) | 1 | core | tsc |
730,412 | 12.06.2018 21:08:20 | 0 | 40b97420909a204e645f5b9c7af643176c6714f4 | chore(release): 0.1.308 | [
{
"change_type": "MODIFY",
"diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"0.1.308\"></a>\n+## [0.1.308](https://github.com/webex/react-ciscospark/compare/v0.1.... | JavaScript | MIT License | webex/react-widgets | chore(release): 0.1.308 | 1 | chore | release |
791,690 | 13.06.2018 13:58:37 | 25,200 | b339844d3c7b0f6d49fbe332cc7f78c47fc225c2 | core(offscreen-images): add lantern filter | [
{
"change_type": "MODIFY",
"diff": "@@ -128,13 +128,15 @@ class UnusedBytes extends Audit {\n* @param {Array<LH.Audit.ByteEfficiencyItem>} results The array of byte savings results per resource\n* @param {Node} graph\n* @param {Simulator} simulator\n- * @param {{includeLoad?: boolean}=} options\n+ * @param ... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(offscreen-images): add lantern filter (#5361) | 1 | core | offscreen-images |
791,690 | 13.06.2018 14:28:49 | 25,200 | deaf6073e6de79504f060f1200292a99946f09f7 | core(audit-mode): do not require a URL | [
{
"change_type": "MODIFY",
"diff": "@@ -136,9 +136,13 @@ function getFlags(manualArgv) {\n.default('port', 0)\n.default('hostname', 'localhost')\n.check(/** @param {!LH.Flags} argv */ (argv) => {\n- // Make sure lighthouse has been passed a url, or at least one of --list-all-audits\n- // or --list-trace-cat... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(audit-mode): do not require a URL (#5495) | 1 | core | audit-mode |
730,412 | 13.06.2018 14:31:43 | 0 | 86eb31356deed34d0a32ca800c2fd336732e844a | chore(release): 0.1.309 | [
{
"change_type": "MODIFY",
"diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"0.1.309\"></a>\n+## [0.1.309](https://github.com/webex/react-ciscospark/compare/v0.1.... | JavaScript | MIT License | webex/react-widgets | chore(release): 0.1.309 | 1 | chore | release |
217,922 | 13.06.2018 16:04:30 | -7,200 | 76261c51b9f1c81765dd9428dcea35b59ac2ead3 | feat(simulator): it is now possible to create folders to organize rotations
closes | [
{
"change_type": "ADD",
"diff": "+<mat-expansion-panel class=\"rotation-panel\">\n+ <mat-expansion-panel-header>\n+ <mat-panel-title>\n+ {{rotation.getName()}}\n+ <button mat-icon-button (click)=\"$event.stopPropagation(); editNameClick.emit()\">\n+ <mat-icon>mode_edit</mat-icon>\n+ </button>\n+ </mat-panel... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat(simulator): it is now possible to create folders to organize rotations
closes #404 | 1 | feat | simulator |
730,429 | 13.06.2018 16:59:34 | 14,400 | 5d44ac33d810b053ea5959be344b86bf6bf3045d | feat(widget-message): add destination prop support | [
{
"change_type": "MODIFY",
"diff": "@@ -72,6 +72,59 @@ import {eventNames as defaultEventNames} from './events';\nimport {handleConversationActivityEvent} from './helpers';\n+import {destinationTypes} from './';\n+\n+\n+const injectedPropTypes = {\n+ avatar: PropTypes.object.isRequired,\n+ activity: PropTyp... | JavaScript | MIT License | webex/react-widgets | feat(widget-message): add destination prop support | 1 | feat | widget-message |
730,429 | 13.06.2018 17:00:05 | 14,400 | b0f3ffe188e4fc0ca152497bc7638fa808bf4b2f | feat(widget-meet): add destination support | [
{
"change_type": "MODIFY",
"diff": "@@ -28,8 +28,12 @@ const injectedPropTypes = {\n};\nexport const ownPropTypes = {\n- to: PropTypes.string,\ncall: PropTypes.object,\n+ destination: PropTypes.shape({\n+ // Email or Hydra ID\n+ id: PropTypes.string.isRequired,\n+ type: PropTypes.oneOf(['email', 'spaceId', ... | JavaScript | MIT License | webex/react-widgets | feat(widget-meet): add destination support | 1 | feat | widget-meet |
217,922 | 13.06.2018 20:38:24 | -7,200 | 68804bbd821b572a1be52e89f84d60f94de4d409 | fix: fixed an issue with recipe amounts reduction not being applied to ingredients | [
{
"change_type": "MODIFY",
"diff": "@@ -305,8 +305,8 @@ export class List extends DataWithPermissions {\nconst previousUsed = item.used;\n// Update used amount\nitem.used += amount;\n- // Set amount to the amount of items to add to the total, nothing can be removed so min is 0.\n- amount = Math.max(0, amoun... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed an issue with recipe amounts reduction not being applied to ingredients
#407 | 1 | fix | null |
217,922 | 13.06.2018 23:02:28 | -7,200 | b2a8425acbfd2221a411824f4458e848361dc521 | fix: show list completion dialog only for author only | [
{
"change_type": "MODIFY",
"diff": "@@ -373,7 +373,7 @@ export class ListDetailsComponent extends ComponentWithSubscriptions implements\n}\nprivate onCompletion(list: List): void {\n- if (!this.completionDialogOpen) {\n+ if (!this.completionDialogOpen && this.userData.$key === this.listData.authorId) {\nthi... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: show list completion dialog only for author only | 1 | fix | null |
821,196 | 14.06.2018 08:59:00 | 25,200 | 819e9716f0d9f7be987d14b9919fdaeb68e293dc | fix: add shrinkwrap file | [
{
"change_type": "MODIFY",
"diff": "@@ -266,13 +266,14 @@ class App extends Generator {\nthis.pjson.scripts.test = 'echo NO TESTS'\n}\nif (this.ts) {\n- this.pjson.scripts.prepack = this.pjson.scripts.prepare = `${rmrf} lib && tsc`\n+ this.pjson.scripts.prepack = this.pjson.scripts.prepare = nps.series(`${r... | TypeScript | MIT License | oclif/oclif | fix: add shrinkwrap file | 1 | fix | null |
821,196 | 14.06.2018 09:24:39 | 25,200 | ab161e5b60a5d350eb71683e94e0377e23c71b87 | fix: js setups | [
{
"change_type": "MODIFY",
"diff": "@@ -269,7 +269,7 @@ class App extends Generator {\nthis.pjson.scripts.prepack = this.pjson.scripts.prepare = nps.series(`${rmrf} lib`, 'tsc')\n}\nif (['plugin', 'multi'].includes(this.type)) {\n- this.pjson.scripts.prepack = nps.series(`${rmrf} lib`, 'tsc', 'oclif-dev man... | TypeScript | MIT License | oclif/oclif | fix: js setups | 1 | fix | null |
217,922 | 14.06.2018 09:25:52 | -7,200 | fcfaed062b590842755ee132620136cbafcced12 | fix: fixed an issue with gathering-location page not able to create alarm for Rhea | [
{
"change_type": "MODIFY",
"diff": "@@ -193,6 +193,7 @@ export class DataService {\n}\nconst params = new HttpParams()\n.set('gatherable', '1')\n+ .set('type', 'item')\n.set('text', name)\n.set('lang', lang);\nreturn this.getGarlandSearch(params);\n",
"new_path": "src/app/core/api/data.service.ts",
... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed an issue with gathering-location page not able to create alarm for Rhea | 1 | fix | null |
217,922 | 14.06.2018 11:35:28 | -7,200 | 5df0290d718bcf5929e49293f3c4898298419348 | feat(desktop): you can now set an opacity on overlay | [
{
"change_type": "DELETE",
"diff": "-owner: Supamiu\n-repo: ffxiv-teamcraft\n-provider: github\n",
"new_path": null,
"old_path": "dev-app-update.yml"
},
{
"change_type": "MODIFY",
"diff": "@@ -3,7 +3,6 @@ const {autoUpdater} = require('electron-updater');\nconst path = require('path');\n... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat(desktop): you can now set an opacity on overlay
#407 | 1 | feat | desktop |
730,429 | 14.06.2018 12:18:57 | 14,400 | 5585a2a71ac8d320ac09b35b958de7ac9d11eb91 | refactor(widget-message): remove user module dependency | [
{
"change_type": "MODIFY",
"diff": "@@ -81,7 +81,6 @@ const injectedPropTypes = {\nconversation: PropTypes.object.isRequired,\nflags: PropTypes.object.isRequired,\nsparkInstance: PropTypes.object,\n- user: PropTypes.object.isRequired,\nwidgetMessage: PropTypes.object.isRequired,\nacknowledgeActivityOnServer... | JavaScript | MIT License | webex/react-widgets | refactor(widget-message): remove user module dependency | 1 | refactor | widget-message |
217,922 | 14.06.2018 13:16:00 | -7,200 | 2e45ccbb3ef62c28afa8a3959afa632228ed0687 | chore: changed target url for desktop app download | [
{
"change_type": "MODIFY",
"diff": "class=\"fab fa-discord\"></i></a></div>\n<div class=\"fab-container\" matTooltip=\"{{'Download_desktop_app' | translate}}\"\nmatTooltipPosition=\"above\" *ngIf=\"!mobile && !platformService.isDesktop()\">\n- <a href=\"https://github.com/Supamiu/ffxiv-teamcraft/releases\" ... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: changed target url for desktop app download | 1 | chore | null |
217,922 | 14.06.2018 14:45:22 | -7,200 | 25deaa128dbafd0f622fd046fa46742c9b99cd13 | feat: you can now see the job used for the craft in simulator result panel | [
{
"change_type": "MODIFY",
"diff": "<span *ngIf=\"recipe$ | async as recipeData\">{{recipeData.lvl}} {{getStars(recipeData.stars)}}</span>\n</mat-card-subtitle>\n<div class=\"stats\">\n- {{'SIMULATOR.CONFIGURATION.Craftsmanship' | translate}}: {{simulation.crafterStats.craftsmanship}}\n- {{'SIMULATOR.CONFIG... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: you can now see the job used for the craft in simulator result panel
#407 | 1 | feat | null |
217,922 | 14.06.2018 15:06:59 | -7,200 | 06635ee321c004d9b2bed882a146707133dce0cc | feat(desktop): added navigation arrows in topbar | [
{
"change_type": "MODIFY",
"diff": "{{locale | uppercase}}\n</div>\n<div class=\"spacer draggable\"></div>\n+ <mat-icon class=\"desktop-bar-button nav-button theme-text-color\" (click)=\"previousPage()\">arrow_back</mat-icon>\n<mat-icon (click)=\"openingUrl = true\" class=\"desktop-bar-button open-url theme... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat(desktop): added navigation arrows in topbar
#407 | 1 | feat | desktop |
730,429 | 14.06.2018 15:30:36 | 14,400 | 3c3e6fa85850b21a3e0691000e261dbfef41b0e0 | docs(widget-space): add destination docs | [
{
"change_type": "MODIFY",
"diff": "@@ -42,11 +42,11 @@ Depending on how comfortable you are with these frameworks, there are are a numb\n### Spark for Developers\n-If you haven't already, go to the Spark for Developers Portal (<https://developer.ciscospark.com>) and sign up for an account. Once you've crea... | JavaScript | MIT License | webex/react-widgets | docs(widget-space): add destination docs | 1 | docs | widget-space |
217,922 | 14.06.2018 15:31:16 | -7,200 | 6998eb494fe95cbf9dfa286aafc55c0e075dcac9 | feat: you can now choose in which group you create your alarms from lists | [
{
"change_type": "MODIFY",
"diff": "@@ -36,9 +36,13 @@ export class AlarmService {\n/**\n* Registers a given item and creates an alarm for it.\n* @param {ListRow} item\n+ * @param groupName\n*/\n- public register(item: ListRow): void {\n+ public register(item: ListRow, groupName?: string): void {\nthis.gene... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: you can now choose in which group you create your alarms from lists | 1 | feat | null |
217,922 | 14.06.2018 16:19:42 | -7,200 | 13b7eed26e1bf7aaef06b1a46261189e453fb206 | feat: new dialog box to show total cost of a list section (gils and trades) | [
{
"change_type": "MODIFY",
"diff": "@@ -58,7 +58,7 @@ import {first, map, mergeMap, publishReplay, refCount, tap} from 'rxjs/operators\n})\nexport class ItemComponent extends ComponentWithSubscriptions implements OnInit, OnChanges {\n- private static TRADE_SOURCES_PRIORITIES = {\n+ public static TRADE_SOURC... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: new dialog box to show total cost of a list section (gils and trades)
#407 | 1 | feat | null |
730,429 | 14.06.2018 16:42:38 | 14,400 | 9912b7167556ac26c72c14a35bb584bc6fe8eced | feat(widget-space-demo): update props to destination | [
{
"change_type": "MODIFY",
"diff": "@@ -20,8 +20,8 @@ import TokenInput from '../token-input';\nimport styles from './styles.css';\n-const MODE_ONE_ON_ONE = 'MODE_ONE_ON_ONE';\n-const MODE_SPACE = 'MODE_SPACE';\n+const MODE_ONE_ON_ONE = 'email';\n+const MODE_SPACE = 'spaceId';\nconst widgetElementId = 'my-c... | JavaScript | MIT License | webex/react-widgets | feat(widget-space-demo): update props to destination | 1 | feat | widget-space-demo |
730,412 | 14.06.2018 16:47:11 | 0 | 45638244335ffb47c72a9e59f6b232575cf9a5db | chore(release): 0.1.310 | [
{
"change_type": "MODIFY",
"diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"0.1.310\"></a>\n+## [0.1.310](https://github.com/webex/react-ciscospark/compare/v0.1.... | JavaScript | MIT License | webex/react-widgets | chore(release): 0.1.310 | 1 | chore | release |
217,922 | 14.06.2018 17:11:23 | -7,200 | 9ada75de9f6f09c644d46f2edcd98256ea9a6cf9 | fix: fixed an issue with alarms not showing proper location | [
{
"change_type": "MODIFY",
"diff": "@@ -331,7 +331,7 @@ export class AlarmService {\n} else if (this._isSpawned(b, time)) {\nreturn 1;\n} else {\n- return this.getMinutesBefore(time, a.spawn) > this.getMinutesBefore(time, b.spawn) ? 1 : -1;\n+ return this.getMinutesBefore(time, (a.spawn || 24)) > this.getMi... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed an issue with alarms not showing proper location
#407 | 1 | fix | null |
217,922 | 14.06.2018 17:31:22 | -7,200 | 8a7d164057d2c65288549cf9775de677e70feb11 | feat: you can now customize echo notification in craft macros
closes | [
{
"change_type": "MODIFY",
"diff": "<h3 mat-dialog-title>{{'SIMULATOR.Generated_macro' | translate}}</h3>\n<div mat-dialog-content class=\"content\">\n+ <div class=\"config\">\n<mat-checkbox [(ngModel)]=\"addEcho\" (ngModelChange)=\"generateMacros()\">\n{{'SIMULATOR.Include_sound_end' | translate}}\n</mat-c... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: you can now customize echo notification in craft macros
closes #407 | 1 | feat | null |
724,040 | 14.06.2018 18:26:54 | -3,600 | dae0b1c2f6458220c6992b28f3b28afebb8089e3 | fix: wrapper.setSelected() to work on select with optgroups | [
{
"change_type": "MODIFY",
"diff": "@@ -641,8 +641,14 @@ export default class Wrapper implements BaseWrapper {\nif (tag === 'OPTION') {\n// $FlowIgnore\nel.selected = true\n+ // $FlowIgnore\n+ if (el.parentElement.tagName === 'OPTGROUP') {\n+ // $FlowIgnore\n+ createWrapper(el.parentElement.parentElement, t... | JavaScript | MIT License | vuejs/vue-test-utils | fix: wrapper.setSelected() to work on select with optgroups (#715) | 1 | fix | null |
724,077 | 14.06.2018 19:29:25 | -7,200 | 7fa2fb390b7b4c5a4105315876a1f72aaf1684bc | feat: silence warnings when updating prop | [
{
"change_type": "MODIFY",
"diff": "@@ -94,3 +94,17 @@ import VueTestUtils from '@vue/test-utils'\nVueTestUtils.config.logModifiedComponents = false\n```\n+\n+### `silentWarnings`\n+\n+- type: `Boolean`\n+- default: `true`\n+\n+It suppresses warnings triggered by Vue while mutating component's observables (... | JavaScript | MIT License | vuejs/vue-test-utils | feat: silence warnings when updating prop (#688) | 1 | feat | null |
815,745 | 14.06.2018 20:16:15 | -10,800 | 22eb640bad612ba8424e884e2ed63f8fb0e93948 | refactor: rename isOpen to opened | [
{
"change_type": "MODIFY",
"diff": "autocomplete=\"{{dropdownId}}\"\n[id]=\"labelForId\"\n[readOnly]=\"!searchable\"\n- [disabled]=\"isDisabled\"\n+ [disabled]=\"disabled\"\n[value]=\"filterValue\"\n(input)=\"filter(filterInput.value)\"\n(focus)=\"onInputFocus()\"\n(blur)=\"onInputBlur()\"\n(change)=\"$even... | TypeScript | MIT License | ng-select/ng-select | refactor: rename isOpen to opened | 1 | refactor | null |
217,922 | 15.06.2018 08:49:54 | -7,200 | 95b8f0d15c4b9ec5dfe471477504d2fa9265de4b | fix(alarms): fixed an issue with nodes despawning the day after the spawn | [
{
"change_type": "MODIFY",
"diff": "@@ -378,7 +378,13 @@ export class AlarmService {\nlet despawn = (spawn + alarm.duration) % 24;\ndespawn = despawn === 0 ? 24 : despawn;\nspawn = spawn === 0 ? 24 : spawn;\n+ // If spawn is greater than despawn, it means that it spawns before midnight and despawns after, w... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(alarms): fixed an issue with nodes despawning the day after the spawn | 1 | fix | alarms |
791,834 | 15.06.2018 11:35:27 | 25,200 | 036c4dff2e0affbdaad66d16be796a18547ac743 | core: split out BaseArtifacts, those always provided by LH itself | [
{
"change_type": "MODIFY",
"diff": "*/\n'use strict';\n+/** @typedef {void|LH.GathererArtifacts[keyof LH.GathererArtifacts]} PhaseResult */\n+\n/**\n* Base class for all gatherers; defines pass lifecycle methods. The artifact\n* from the gatherer is the last not-undefined value returned by a lifecycle\n*/\n... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core: split out BaseArtifacts, those always provided by LH itself (#5506) | 1 | core | null |
217,922 | 15.06.2018 11:38:48 | -7,200 | 14a9d5fc065a98b457d8a7f762adf20a6a15559a | feat: you can now associate character using lodestoneId, useful for short names
closes | [
{
"change_type": "MODIFY",
"diff": "<h3 mat-dialog-title>{{'Character_informations' | translate}}</h3>\n<div mat-dialog-content>\n+ <mat-checkbox [(ngModel)]=\"customId\">\n+ {{'Use_lodestoneId' | translate}}\n+ </mat-checkbox>\n+ <div class=\"search\" [style.display]=\"customId?'none':'block'\">\n<mat-form... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: you can now associate character using lodestoneId, useful for short names
closes #392 | 1 | feat | null |
815,745 | 15.06.2018 13:51:50 | -10,800 | ab6c388a22638c5f42f12e842cedf6ddb4b1bee2 | feat(isOpen): allow to control whether dropdown should open or close
closes # | [
{
"change_type": "MODIFY",
"diff": "@@ -131,7 +131,8 @@ map: {\n| [loading] | `boolean` | `-` | no | You can set the loading state from the outside (e.g. async items loading) |\n| loadingText | `string` | `Loading...` | no | Set custom text when for loading items |\n| labelForId | `string` | `-` | no | Id t... | TypeScript | MIT License | ng-select/ng-select | feat(isOpen): allow to control whether dropdown should open or close
closes # | 1 | feat | isOpen |
217,922 | 15.06.2018 14:13:45 | -7,200 | 9aa29abe23ba30d6543948f029a63bea714550d0 | chore: [WIP] list drag&drop reorder | [
{
"change_type": "MODIFY",
"diff": "@@ -39,6 +39,9 @@ export class List extends DataWithPermissions {\ncomments: ResourceComment[];\n+ // For ordering purpose.\n+ index = 0;\n+\nconstructor() {\nsuper();\n}\n",
"new_path": "src/app/model/list/list.ts",
"old_path": "src/app/model/list/list.ts"
},
... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: [WIP] list drag&drop reorder | 1 | chore | null |
730,429 | 15.06.2018 16:04:54 | 14,400 | cb10fc261bf2ea2525813ea43c8c4442a0b5c4d2 | feat(widget-demo): use react component for space widget | [
{
"change_type": "MODIFY",
"diff": "@@ -11,6 +11,8 @@ import {RadioButtonGroup, RadioButton} from 'material-ui/RadioButton';\nimport {Card, CardActions, CardTitle, CardText} from 'material-ui/Card';\nimport Checkbox from 'material-ui/Checkbox';\n+import SpaceWidget from '@ciscospark/widget-space';\n+\nimpor... | JavaScript | MIT License | webex/react-widgets | feat(widget-demo): use react component for space widget | 1 | feat | widget-demo |
791,723 | 15.06.2018 16:21:52 | 25,200 | ed5b38ecb40869dda0e817b0d268ee65bd5ad109 | core(tsc): migrate renderer & viewer off typedefs to .d.ts | [
{
"change_type": "MODIFY",
"diff": "/** @typedef {import('./dom.js')} DOM */\n/** @typedef {import('./report-renderer.js')} ReportRenderer */\n-/** @typedef {import('./report-renderer.js').AuditJSON} AuditJSON */\n-/** @typedef {import('./report-renderer.js').CategoryJSON} CategoryJSON */\n-/** @typedef {im... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(tsc): migrate renderer & viewer off typedefs to .d.ts (#5342) | 1 | core | tsc |
821,196 | 15.06.2018 21:29:44 | 25,200 | 3a1441deab5bd58927c51188831be214c02f24f6 | fix: remove shrinkwrap after publishing | [
{
"change_type": "MODIFY",
"diff": "@@ -270,7 +270,7 @@ class App extends Generator {\n}\nif (['plugin', 'multi'].includes(this.type)) {\nthis.pjson.scripts.prepack = nps.series(this.pjson.scripts.prepare, 'oclif-dev manifest', 'oclif-dev readme', 'npm shrinkwrap')\n- this.pjson.scripts.postpack = `${rmf} o... | TypeScript | MIT License | oclif/oclif | fix: remove shrinkwrap after publishing | 1 | fix | null |
679,913 | 17.06.2018 11:35:19 | -3,600 | dce189f968295d71d5bf221b99060f514706a052 | feat(sax): initial import | [
{
"change_type": "ADD",
"diff": "+build\n+coverage\n+dev\n+doc\n+src*\n+test\n+.nyc_output\n+tsconfig.json\n+*.tgz\n+*.html\n",
"new_path": "packages/sax/.npmignore",
"old_path": null
},
{
"change_type": "ADD",
"diff": "+ Apache License\n+ Version 2.0, January 2004\n+ http://www.apache.o... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(sax): initial import | 1 | feat | sax |
679,913 | 17.06.2018 12:02:19 | -3,600 | 74f7d02ef65faef75d1ddcd1f1469772b98e6a18 | refactor(sax): extract parser sub-states | [
{
"change_type": "MODIFY",
"diff": "@@ -6,7 +6,7 @@ export interface FSMState {\n}\nexport type FSMStateMap<T extends FSMState, A, B> = IObjectOf<FSMHandler<T, A, B>>;\n-export type FSMHandler<T extends FSMState, A, B> = (state: T, input: A) => B;\n+export type FSMHandler<T extends FSMState, A, B> = (state:... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(sax): extract parser sub-states | 1 | refactor | sax |
679,913 | 17.06.2018 15:54:16 | -3,600 | 3dea95494139931ad75dd29f749f8860b7063807 | feat(sax): emit child elements with `end` results, support comments | [
{
"change_type": "MODIFY",
"diff": "@@ -16,7 +16,7 @@ export function fsm<T extends FSMState, A, B>(states: FSMStateMap<T, A, B>, init\nrfn[0],\n(acc) => rfn[1](acc),\n(acc, x) => {\n- // console.log(state.state, x, state);\n+ // console.log(x, State[state.state], state);\nconst res = states[<any>state.stat... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(sax): emit child elements with `end` results, support comments | 1 | feat | sax |
724,061 | 17.06.2018 20:38:30 | -25,200 | 80118466b9f459abd7a2a65c30471cb8dc302efd | refactor: more readable log modified components warning | [
{
"change_type": "MODIFY",
"diff": "@@ -67,7 +67,7 @@ export default function createInstance (\n) {\nif (options.logModifiedComponents) {\nwarn(\n- `an extended child component ${c} has been modified ` +\n+ `an extended child component <${c}> has been modified ` +\n`to ensure it has the correct instance pro... | JavaScript | MIT License | vuejs/vue-test-utils | refactor: more readable log modified components warning (#731) | 1 | refactor | null |
679,913 | 17.06.2018 22:18:55 | -3,600 | a4766a54a1cb965b5fe31f2f2760e7610e8259ea | feat(sax): add support for proc & doctype elements, update `end` results
`end` results now include element body as well | [
{
"change_type": "MODIFY",
"diff": "@@ -47,6 +47,7 @@ export interface ParseState extends FSMState {\nname: string;\nval: string;\nquote: string;\n+ phase: number;\n}\nenum State {\n@@ -63,6 +64,9 @@ enum State {\nMAYBE_INSTRUCTION,\nCOMMENT,\nCOMMENT_BODY,\n+ DOCTYPE,\n+ PROC_DECL,\n+ PROC_END,\n}\nexport ... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(sax): add support for proc & doctype elements, update `end` results
- `end` results now include element body as well | 1 | feat | sax |
679,913 | 17.06.2018 23:25:12 | -3,600 | 64f237896040dbf490f4c5c47178fca074522944 | feat(sax): update error handling, add parse() wrapper, add FSMOpts
`unexpected()` does NOT throw error anymore,
but triggers new ERROR FSM state
add input `pos` counter to ParserState, use for error messages
add `parse()` transducer wrapper
update `fsm()` transducer to accept new `FSMOpts` | [
{
"change_type": "MODIFY",
"diff": "import { Event, IObjectOf } from \"@thi.ng/api\";\nimport { Transducer, Reducer } from \"@thi.ng/transducers/api\";\n+import { ensureReduced } from \"@thi.ng/transducers/reduced\";\nexport interface FSMState {\nstate: PropertyKey;\n@@ -8,9 +9,16 @@ export interface FSMSta... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(sax): update error handling, add parse() wrapper, add FSMOpts
- `unexpected()` does NOT throw error anymore,
but triggers new ERROR FSM state
- add input `pos` counter to ParserState, use for error messages
- add `parse()` transducer wrapper
- update `fsm()` transducer to accept new `FSMOpts` | 1 | feat | sax |
679,913 | 17.06.2018 23:41:55 | -3,600 | 7c3c29032afa56af2a1af7dcfcc535ddc37933ff | feat(transducers-fsm): inital import | [
{
"change_type": "ADD",
"diff": "+build\n+coverage\n+dev\n+doc\n+src*\n+test\n+.nyc_output\n+tsconfig.json\n+*.tgz\n+*.html\n",
"new_path": "packages/transducers-fsm/.npmignore",
"old_path": null
},
{
"change_type": "ADD",
"diff": "+ Apache License\n+ Version 2.0, January 2004\n+ http://... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(transducers-fsm): inital import | 1 | feat | transducers-fsm |
679,913 | 17.06.2018 23:44:04 | -3,600 | 56deb4556b4085a7d50ed8c74f094cc02056feb5 | refactor(sax): remove extracted FSM transducer & types, update readme | [
{
"change_type": "ADD",
"diff": "+# @thi.ng/sax\n+\n+[](https://www.npmjs.com/package/@thi.ng/sax)\n+\n+This project is part of the\n+[@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo.\n+\n+## About\n+\n+[@thi.ng/transducers](https:... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(sax): remove extracted FSM transducer & types, update readme | 1 | refactor | sax |
679,913 | 18.06.2018 01:46:28 | -3,600 | 0f2fcdffa8d8207d0ecebe3d58bdd788536a9ed3 | feat(sax): add entity support, update result format, update states
add ParseOpts, ParseElement, ParseEvent, Type
add XML entity replacement (optional)
update error handling (add `error()` helper)
update PROC_DECL state to support arbitrary instruction tags | [
{
"change_type": "MODIFY",
"diff": "-import { Event } from \"@thi.ng/api\";\n+import { IObjectOf } from \"@thi.ng/api\";\nimport * as fsm from \"@thi.ng/transducers-fsm\";\nimport { Transducer } from \"@thi.ng/transducers/api\";\n-export interface ParseState extends fsm.FSMState {\n- pos: number;\n- scope: ... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(sax): add entity support, update result format, update states
- add ParseOpts, ParseElement, ParseEvent, Type
- add XML entity replacement (optional)
- update error handling (add `error()` helper)
- update PROC_DECL state to support arbitrary instruction tags
- | 1 | feat | sax |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.