author int64 4.98k 943k | date stringdate 2017-04-15 16:45:02 2022-02-25 15:32:15 | timezone int64 -46,800 39.6k | hash stringlengths 40 40 | message stringlengths 8 468 | mods listlengths 1 16 | language stringclasses 9
values | license stringclasses 2
values | repo stringclasses 119
values | original_message stringlengths 12 491 | is_CCS int64 1 1 | commit_type stringclasses 129
values | commit_scope stringlengths 1 44 ⌀ |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
807,849 | 29.05.2018 14:12:22 | 25,200 | d82f1e9cf737e363b3a04c8052fd8246ca952e9e | deps: Prettier 1.13.2 | [
{
"change_type": "MODIFY",
"diff": "\"dev\": true\n},\n\"prettier\": {\n- \"version\": \"1.12.1\",\n- \"resolved\": \"https://registry.npmjs.org/prettier/-/prettier-1.12.1.tgz\",\n- \"integrity\": \"sha1-wa0g6APndJ+vkFpAnSNn4Gu+cyU=\",\n+ \"version\": \"1.13.2\",\n+ \"resolved\": \"https://registry.npmjs.or... | JavaScript | MIT License | lerna/lerna | deps: Prettier 1.13.2 | 1 | deps | null |
679,913 | 29.05.2018 14:36:38 | -3,600 | 94225989315c69bfe565748fcfe569270c4f153e | feat(atom): add INotify impl for History
add EVENT_UNDO/REDO/RECORD events
emit events from `undo()`, `redo()`, `record()` | [
{
"change_type": "MODIFY",
"diff": "@@ -50,7 +50,10 @@ export interface CursorOpts<T> {\nid?: string;\n}\n-export interface IHistory<T> extends IAtom<T> {\n+export interface IHistory<T> extends\n+ IAtom<T>,\n+ api.INotify {\n+\ncanUndo(): boolean;\ncanRedo(): boolean;\n",
"new_path": "packages/atom/src/... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(atom): add INotify impl for History
- add EVENT_UNDO/REDO/RECORD events
- emit events from `undo()`, `redo()`, `record()` | 1 | feat | atom |
807,849 | 29.05.2018 14:48:39 | 25,200 | 15fd4d4cdeba6d1586866e7b17333ec4ebae5c63 | chore: Use correct LC_ALL value | [
{
"change_type": "MODIFY",
"diff": "\"scripts\": {\n\"ci\": \"npm test -- --ci --coverage --verbose && npm run integration -- --ci\",\n\"fix\": \"npm run lint -- --fix\",\n- \"integration\": \"cross-env LC_ALL=en-US NODE_ENV=test jest --config jest.integration.js\",\n+ \"integration\": \"cross-env LC_ALL=en... | JavaScript | MIT License | lerna/lerna | chore: Use correct LC_ALL value | 1 | chore | null |
807,849 | 29.05.2018 15:24:31 | 25,200 | d6ca46d37e10da27dde7648dcd7994d8c5461906 | chore: Set 10s timeout for unit tests because CI is slowwww | [
{
"change_type": "MODIFY",
"diff": "@@ -6,5 +6,6 @@ module.exports = {\nmodulePathIgnorePatterns: [\"/__fixtures__/\"],\nroots: [\"<rootDir>/commands\", \"<rootDir>/core\", \"<rootDir>/utils\"],\nsetupFiles: [\"@lerna-test/silence-logging\", \"@lerna-test/set-npm-userconfig\"],\n+ setupTestFrameworkScriptFi... | JavaScript | MIT License | lerna/lerna | chore: Set 10s timeout for unit tests because CI is slowwww | 1 | chore | null |
807,849 | 29.05.2018 15:25:09 | 25,200 | 1116a4a08a2c32709f78f6201d9a499551da2266 | chore: Use exponential notation in integration test timeout setup | [
{
"change_type": "MODIFY",
"diff": "\"use strict\";\n-// allow CLI integration tests to run for awhile\n-jasmine.DEFAULT_TIMEOUT_INTERVAL = 300000;\n+// allow CLI integration tests to run for awhile (300s)\n+jasmine.DEFAULT_TIMEOUT_INTERVAL = 300e3;\n",
"new_path": "setup-integration-timeout.js",
"o... | JavaScript | MIT License | lerna/lerna | chore: Use exponential notation in integration test timeout setup | 1 | chore | null |
217,922 | 29.05.2018 15:52:21 | -7,200 | e442cf9d7e23d74c43bd80e0f12882ba3a552338 | feat: tags button now present inside list panel header | [
{
"change_type": "MODIFY",
"diff": "(cbOnSuccess)=\"showCopiedNotification()\">\n<mat-icon>share</mat-icon>\n</button>\n- <!--<input type=\"text\" #uri readonly hidden value=\"{{getLink()}}\">-->\n+\n+ <button mat-icon-button matTooltip=\"{{'LIST_DETAILS.Tags_popup' | translate}}\"\n+ matTooltipPosition=\"a... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: tags button now present inside list panel header | 1 | feat | null |
217,922 | 29.05.2018 23:06:42 | -7,200 | e3b3459e53eeefce9ac8a4a6db78cd06c44eacce | fix: fixed an issue with pricing view not computing benefits properly | [
{
"change_type": "MODIFY",
"diff": "matTooltipPosition=\"above\">\nattach_money\n</mat-icon>\n- <mat-icon color=\"warn\" *ngIf=\"craftCost < (price.nq * amount.nq + price.hq * amount.hq)\"\n+ <mat-icon color=\"warn\" *ngIf=\"craftCost < (price.nq * amount.nq + price.hq * amount.hq) && !earning\"\nmatTooltip... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed an issue with pricing view not computing benefits properly | 1 | fix | null |
217,922 | 29.05.2018 23:38:37 | -7,200 | 6865b778a83c597bd76581f5754ff9945058d20f | fix: fixed an issue with reduction details popup freezing the app
closes | [
{
"change_type": "MODIFY",
"diff": "@@ -12,6 +12,8 @@ export class BellNodesService {\n*/\nprivate nodes: any[] = (<any>window).gt.bell.nodes;\n+ private cache: { [index: number]: any[] } = {};\n+\nconstructor(private localizedDataService: LocalizedDataService, private i18n: TranslateService) {\n}\n@@ -27,6... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed an issue with reduction details popup freezing the app
closes #383 | 1 | fix | null |
217,922 | 29.05.2018 23:46:10 | -7,200 | a9a28682a5bad96601a57c4ef84fb954c9d5719e | fix: fixed an issue with custom layouts panel sometimes broken | [
{
"change_type": "MODIFY",
"diff": "@@ -26,6 +26,9 @@ export class ListLayoutPopupComponent {\nprivate serializer: NgSerializerService) {\nthis.layoutService.layouts.subscribe(layouts => {\nthis.availableLayouts = layouts;\n+ if (this.availableLayouts[this.selectedIndex] === undefined) {\n+ this.selectedInd... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed an issue with custom layouts panel sometimes broken | 1 | fix | null |
217,922 | 29.05.2018 23:47:41 | -7,200 | 768093b5c651d83effc8fcc204bac40034ac1a0e | fix: fixed an issue with precrafts inside pricing view | [
{
"change_type": "MODIFY",
"diff": "@@ -61,9 +61,6 @@ export class PricingComponent {\n// If the crafting price is cheaper than the item itself,\n// don't add the price because mats are already used in the price.\ntotal += 0;\n- } else {\n- // Else, remove the price of the craft because the user won't craft... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed an issue with precrafts inside pricing view | 1 | fix | null |
217,922 | 29.05.2018 23:49:14 | -7,200 | 83dee1258474972e6bfc27d1925a52aa738a136a | fix: fixed an issue with masterbooks popup in profile page | [
{
"change_type": "MODIFY",
"diff": "@@ -17,7 +17,7 @@ export class MasterbooksPopupComponent {\nsetMasterbook(id: number, active: boolean): void {\n// We set a default value if it's currently undefined.\n- // this.data.user.masterbooks = this.data.user.masterbooks || [];\n+ this.data.user.masterbooks = this... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed an issue with masterbooks popup in profile page | 1 | fix | null |
311,021 | 30.05.2018 02:25:03 | -36,000 | 867ce3dc599bc8e0475cb466e437959e4bafa9d7 | test(windows): fix broken tests on windows | [
{
"change_type": "MODIFY",
"diff": "@@ -12,9 +12,6 @@ describe('@ionic/cli-framework', () => {\nconst mock_os = os;\njest.resetModules();\n- const mock_homedir = () => '/home/user';\n- jest.mock('os', () => ({ ...mock_os, homedir: mock_homedir }));\n- const { prettyPath } = require('../format');\nbeforeEach... | TypeScript | MIT License | ionic-team/ionic-cli | test(windows): fix broken tests on windows (#3219) | 1 | test | windows |
311,021 | 30.05.2018 04:04:08 | -36,000 | 91b69f64e3cc7aac1c92aeca3387af8919c35240 | refactor(cordova): don't mutate angular source files | [
{
"change_type": "MODIFY",
"diff": "@@ -664,14 +664,16 @@ export interface IAilmentRegistry {\nget(id: string): IAilment | undefined;\n}\n-export interface AngularConfig {\n- defaultProject: string;\n- projects: {\n- [key: string]: {\n+export interface AngularConfigProject {\nroot: string;\nsourceRoot: stri... | TypeScript | MIT License | ionic-team/ionic-cli | refactor(cordova): don't mutate angular source files (#3220) | 1 | refactor | cordova |
821,227 | 30.05.2018 10:40:08 | -28,800 | dd37310b8231cda76fd240fb3b7c329e40acf3ca | fix: command descriptions not showing up in the help
This is for JavaScript-based commands. See discussion in | [
{
"change_type": "MODIFY",
"diff": "@@ -9,8 +9,7 @@ class <%- klass %> extends Command {\n}\n}\n-<%- klass %>.description = `\n-Describe the command here\n+<%- klass %>.description = `Describe the command here\n...\nExtra documentation goes here\n`\n",
"new_path": "templates/src/command.js.ejs",
"ol... | TypeScript | MIT License | oclif/oclif | fix: command descriptions not showing up in the help (#124)
This is for JavaScript-based commands. See discussion in https://github.com/oclif/oclif/issues/120 | 1 | fix | null |
815,746 | 30.05.2018 12:44:40 | -10,800 | 7a3dfb33a57add982cef8a5d7540e29e3e25c2d4 | fix: allow to use compareWith fn when bindValue is used
closes | [
{
"change_type": "MODIFY",
"diff": "@@ -123,7 +123,7 @@ map: {\n| [closeOnSelect] | `boolean` | true | no | Whether to close the menu when a value is selected |\n| clearAllText | `string` | `Clear all` | no | Set custom text for clear all icon title |\n| [clearable] | `boolean` | `true` | no | Allow to clea... | TypeScript | MIT License | ng-select/ng-select | fix: allow to use compareWith fn when bindValue is used (#586)
closes #535 | 1 | fix | null |
815,746 | 30.05.2018 12:45:10 | -10,800 | 5c53fbf53132eabe8b33fa6e4f45b8acca6136ec | chore(release): 2.1.2 | [
{
"change_type": "MODIFY",
"diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"2.1.2\"></a>\n+## [2.1.2](https://github.com/ng-select/ng-select/compare/v2.1.1...v2.... | TypeScript | MIT License | ng-select/ng-select | chore(release): 2.1.2 | 1 | chore | release |
217,922 | 30.05.2018 16:46:19 | -7,200 | 7119389778858456aa81689c0ba2ff676acdfe09 | chore: tests are now working and integrated with travis | [
{
"change_type": "MODIFY",
"diff": "@@ -9,22 +9,7 @@ before_install:\n- npm i -g firebase-functions\nscript:\n- - if [ $TRAVIS_BRANCH = \"beta\" ]; then npm run build:beta; else npm run build:prod; fi\n-\n-deploy:\n- - provider: firebase\n- skip_cleanup: true\n- on:\n- branch: master\n- token:\n- secure: m+... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: tests are now working and integrated with travis | 1 | chore | null |
679,913 | 30.05.2018 17:40:05 | -3,600 | 7ac6227dcb8b2ce3c17bbf01d74f7087fb06f117 | feat(atom): provide prev/curr states to history event listeners
update undo()/redo() event value
(now an object w/ `prev`/`curr` keys/states)
refactor/fix record(), only expunge history and truncate future
if actually recording new state | [
{
"change_type": "MODIFY",
"diff": "@@ -77,17 +77,19 @@ export class History<T> implements\n* there's no history.\n*\n* If undo was possible, the `History.EVENT_UNDO` event is emitted\n- * after the restoration with the restored state provided as event\n- * value. This allows for additional state handling t... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(atom): provide prev/curr states to history event listeners
- update undo()/redo() event value
(now an object w/ `prev`/`curr` keys/states)
- refactor/fix record(), only expunge history and truncate future
if actually recording new state | 1 | feat | atom |
217,922 | 30.05.2018 17:46:33 | -7,200 | 373cafd0eb9b97024c79a03dbbee9ae73bb011c6 | feat(desktop): way better window state management (position and size saving properly) | [
{
"change_type": "MODIFY",
"diff": "const {app, ipcMain, BrowserWindow, Tray, nativeImage} = require('electron');\nconst {autoUpdater} = require('electron-updater');\nconst path = require('path');\n-const windowStateKeeper = require('electron-window-state');\n+const Config = require('electron-config');\n+co... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat(desktop): way better window state management (position and size saving properly) | 1 | feat | desktop |
217,922 | 30.05.2018 17:54:32 | -7,200 | 1f4e9cc88596042bab712e8a375d36696cad6fac | feat: new button to copy macro fragments to clipboard
closes | [
{
"change_type": "MODIFY",
"diff": "</mat-checkbox>\n<div class=\"macro\">\n<pre *ngFor=\"let macroFragment of macro\" class=\"macro-fragment\">\n+ <button mat-icon-button class=\"copy-macro\" ngxClipboard [cbContent]=\"getText(macroFragment)\">\n+ <mat-icon>content_copy</mat-icon>\n+ </button>\n<span class... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: new button to copy macro fragments to clipboard
closes #382 | 1 | feat | null |
217,922 | 30.05.2018 18:03:06 | -7,200 | 0d7d435bfd506561be3fa1553027a1e231bace43 | feat(simulator): you can now see & edit rotation name inside simulator
closes | [
{
"change_type": "MODIFY",
"diff": "<mat-icon>format_list_numbered</mat-icon>\n</button>\n</div>\n+<div class=\"rotation-name\" *ngIf=\"rotation !== undefined\">\n+ {{rotation.getName()}}\n+ <button mat-icon-button (click)=\"$event.preventDefault();editRotationName(rotation)\">\n+ <mat-icon>mode_edit</mat-i... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat(simulator): you can now see & edit rotation name inside simulator
closes #380 | 1 | feat | simulator |
217,922 | 30.05.2018 18:06:35 | -7,200 | ef547c758445957c048c2a41bac3b1f44b395ec3 | fix: custom links popup now creates links properly
closes | [
{
"change_type": "MODIFY",
"diff": "@@ -115,7 +115,7 @@ export class CustomLinkPopupComponent implements OnInit {\n}\ngetRedirectTo(): string {\n- if (this.data !== undefined) {\n+ if (this.data !== undefined && this.data !== null) {\nreturn this.data.redirectTo;\n} else if (this.selectedType === 'simulator... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: custom links popup now creates links properly
closes #385 | 1 | fix | null |
217,922 | 30.05.2018 18:21:21 | -7,200 | c4577b48b2c81acbb6dc75e262fd64919debb20d | feat: current list shown inside bulk regeneration popup
closes | [
{
"change_type": "MODIFY",
"diff": "<h2 mat-dialog-title>{{'Regenerating_lists' | translate }}</h2>\n<div mat-dialog-content>\n+ <div class=\"current-list\">{{currentList}}</div>\n<mat-progress-bar mode=\"determinate\" [value]=\"progress\"></mat-progress-bar>\n<app-random-gif></app-random-gif>\n</div>\n",
... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: current list shown inside bulk regeneration popup
closes #384 | 1 | feat | null |
217,922 | 30.05.2018 18:39:46 | -7,200 | 7220dcc003b54c28722a04cbedef992bd14e6acd | fix(simulator): fixed an issue with Innovative Touch not decreasing durability
closes | [
{
"change_type": "MODIFY",
"diff": "@@ -36,7 +36,7 @@ export class InnovativeTouch extends QualityAction {\n}\ngetBaseDurabilityCost(simulationState: Simulation): number {\n- return 0;\n+ return 10;\n}\ngetBaseSuccessRate(simulationState: Simulation): number {\n",
"new_path": "src/app/pages/simulator/mo... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(simulator): fixed an issue with Innovative Touch not decreasing durability
closes #386 | 1 | fix | simulator |
217,922 | 30.05.2018 23:45:09 | -7,200 | 90feec114d4cc54d12c11e49f2f84e1a17d5c642 | perf(list): huge performance improvement on lists regeneration | [
{
"change_type": "MODIFY",
"diff": "@@ -11,7 +11,7 @@ import {environment} from '../../../environments/environment';\nimport {Ingredient} from '../../model/garland-tools/ingredient';\nimport {DataExtractorService} from './data/data-extractor.service';\n-import {map} from 'rxjs/operators';\n+import {map, ski... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | perf(list): huge performance improvement on lists regeneration | 1 | perf | list |
217,922 | 31.05.2018 08:53:47 | -7,200 | 769c06d6a57c770a2213e8100e477859425f9d6e | fix: fixed an issue that was preventing to add community lists in a workshop | [
{
"change_type": "MODIFY",
"diff": "[templateButton]=\"userData?.patron || userData?.admin\"></app-list-panel>\n</div>\n<button mat-button class=\"full-width-button\" color=\"accent\"\n- (click)=\"addListsToWorkhop(workshop, display.basicLists)\">\n+ (click)=\"addListsToWorkhop(workshop, display.basicLists.... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed an issue that was preventing to add community lists in a workshop | 1 | fix | null |
821,196 | 31.05.2018 11:37:15 | 25,200 | 64808b302f741670ac05cae09c774b23c8c4c434 | fix: path names for eslint | [
{
"change_type": "MODIFY",
"diff": "@@ -16,7 +16,7 @@ module.exports = {\npath: '@semantic-release/exec',\ncmd: 'OCLIF_NEXT_VERSION=${nextRelease.version} yarn run version',\n},\n- {path: './scripts/release_example'},\n+ {path: './scripts/release-example'},\n'@semantic-release/changelog',\n'@semantic-releas... | TypeScript | MIT License | oclif/oclif | fix: path names for eslint | 1 | fix | null |
791,690 | 31.05.2018 11:37:30 | 25,200 | a7710ef7cc8201b7cc2fe01fd8f7a6303d8c3765 | core(opportunities): more granular score | [
{
"change_type": "MODIFY",
"diff": "@@ -133,7 +133,7 @@ module.exports = [\n},\n},\n'efficient-animated-content': {\n- score: 0,\n+ score: '<0.5',\ndetails: {\noverallSavingsMs: '>2000',\nitems: [\n",
"new_path": "lighthouse-cli/test/smokehouse/dobetterweb/dbw-expectations.js",
"old_path": "lighthou... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(opportunities): more granular score (#5331) | 1 | core | opportunities |
743,974 | 31.05.2018 15:06:03 | 25,200 | b3544cc092297b86c8f76e01ecf0831b85a4a2d1 | chore: Allow v4 of y18n | [
{
"change_type": "MODIFY",
"diff": "\"set-blocking\": \"^2.0.0\",\n\"string-width\": \"^2.0.0\",\n\"which-module\": \"^2.0.0\",\n- \"y18n\": \"^3.2.1\",\n+ \"y18n\": \"^3.2.1 || ^4.0.0\",\n\"yargs-parser\": \"^10.0.0\"\n},\n\"devDependencies\": {\n",
"new_path": "package.json",
"old_path": "package.... | JavaScript | MIT License | yargs/yargs | chore: Allow v4 of y18n (#1138) | 1 | chore | null |
821,196 | 31.05.2018 18:27:12 | 25,200 | 80ef22b17bd96247b9d41ad2070e25d1ff3d185d | fix: remove es module config | [
{
"change_type": "MODIFY",
"diff": "{\n\"compilerOptions\": {\n\"declaration\": true,\n- \"esModuleInterop\": true,\n\"forceConsistentCasingInFileNames\": true,\n\"importHelpers\": true,\n\"module\": \"commonjs\",\n\"outDir\": \"./lib\",\n- \"resolveJsonModule\": true,\n\"rootDirs\": [ \"./src\" ],\n\"stric... | TypeScript | MIT License | oclif/oclif | fix: remove es module config | 1 | fix | null |
821,196 | 31.05.2018 18:35:37 | 25,200 | dd927fb458bc30fc5606c10b12d7cf9f4ec8ba87 | fix: add prepare step | [
{
"change_type": "MODIFY",
"diff": "@@ -262,6 +262,7 @@ class App extends Generator {\nthis.pjson.scripts.test = 'echo NO TESTS'\n}\nif (this.ts) {\n+ this.pjson.scripts.prepare = 'rm -rf lib && tsc'\nthis.pjson.scripts.prepack = 'rm -rf lib && tsc'\n}\nif (['plugin', 'multi'].includes(this.type)) {\n",
... | TypeScript | MIT License | oclif/oclif | fix: add prepare step | 1 | fix | null |
821,196 | 31.05.2018 19:07:01 | 25,200 | a58f9428e6c7f54873da4f771f665dec4842ecba | fix: updated fancy-test | [
{
"change_type": "MODIFY",
"diff": "\"eslint\": \"^4.19.1\",\n\"eslint-config-oclif\": \"^1.5.1\",\n\"execa\": \"^0.10.0\",\n- \"fancy-test\": \"^1.1.2\",\n+ \"fancy-test\": \"^1.1.4\",\n\"fs-extra\": \"^6.0.1\",\n\"globby\": \"^8.0.1\",\n\"mocha\": \"^5.2.0\",\n",
"new_path": "package.json",
"old_p... | TypeScript | MIT License | oclif/oclif | fix: updated fancy-test | 1 | fix | null |
217,922 | 01.06.2018 12:07:48 | -7,200 | 6ce2a37102a8b84bd3d236caba1222826d6e6632 | fix(alarms): you can now properly change sound, delay and volume of your alarms | [
{
"change_type": "MODIFY",
"diff": "<h2 mat-dialog-title>Timer options</h2>\n<div mat-dialog-content>\n<mat-form-field>\n- <mat-select placeholder=\"{{'Sound' | translate}}\" [value]=\"settings.alarmSound\"\n- (change)=\"setSound($event.value)\">\n+ <mat-select placeholder=\"{{'Sound' | translate}}\" [ngMod... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(alarms): you can now properly change sound, delay and volume of your alarms | 1 | fix | alarms |
791,834 | 01.06.2018 13:05:30 | 14,400 | c9749e14297f3a2116cebb8c1feacef511121dc2 | extension: update minimum Chrome version to 66 | [
{
"change_type": "MODIFY",
"diff": "{\n\"name\": \"__MSG_appName__\",\n\"version\": \"2.10.1.3000\",\n- \"minimum_chrome_version\": \"56\",\n+ \"minimum_chrome_version\": \"66\",\n\"manifest_version\": 2,\n\"description\": \"__MSG_appDescription__\",\n\"icons\": {\n",
"new_path": "lighthouse-extension/a... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | extension: update minimum Chrome version to 66 (#5403) | 1 | extension | null |
217,922 | 01.06.2018 14:06:14 | -7,200 | 6faf5d07b6b631828a774b9b151efd7c8a3cc39b | chore: WIP custom timer sound | [
{
"change_type": "MODIFY",
"diff": "@@ -19,6 +19,7 @@ import {\nMatProgressSpinnerModule,\nMatSelectModule,\nMatSliderModule,\n+ MatSlideToggleModule,\nMatTooltipModule\n} from '@angular/material';\nimport {FormsModule} from '@angular/forms';\n@@ -80,6 +81,7 @@ const routes: Routes = [\nMatProgressSpinnerMo... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: WIP custom timer sound | 1 | chore | null |
217,922 | 01.06.2018 15:06:13 | -7,200 | e64768903222343c214908265ef0f33c28cbcd43 | feat(desktop): you can now use custom sounds as alarm
closes | [
{
"change_type": "MODIFY",
"diff": "@@ -186,7 +186,12 @@ export class AlarmService {\n.onAction().subscribe(() => {\nthis.dialog.open(MapPopupComponent, {data: {coords: {x: alarm.coords[0], y: alarm.coords[1]}, id: alarm.zoneId}});\n});\n- const audio = new Audio(`./assets/audio/${this.settings.alarmSound}.... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat(desktop): you can now use custom sounds as alarm
closes #350 | 1 | feat | desktop |
217,922 | 01.06.2018 16:02:22 | -7,200 | b93a1c0e0ee6d702d2da2ea38d86055c4b6a4b01 | style: better representation of craftable/done state on list rows | [
{
"change_type": "MODIFY",
"diff": "<!--Layout for desktop browsers-->\n<mat-list-item *ngIf=\"!(isMobile | async); else mobileLayout\"\n- [ngClass]=\"{'even': even, 'auto-height':true, 'compact':settings.compactLists}\">\n+ [ngClass]=\"{'even': even, 'auto-height':true, 'compact':settings.compactLists,\n+ ... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | style: better representation of craftable/done state on list rows | 1 | style | null |
730,412 | 01.06.2018 16:29:22 | 0 | c3d1e3b656f817d4f0e92394adf9ab03f0d79b39 | chore(release): 0.1.304 | [
{
"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.304\"></a>\n+## [0.1.304](https://github.com/webex/react-ciscospark/compare/v0.1.... | JavaScript | MIT License | webex/react-widgets | chore(release): 0.1.304 | 1 | chore | release |
815,745 | 01.06.2018 17:05:44 | -10,800 | acef71480604b2c4956cd2db2f559fe6b90611e7 | fix(groupBy): treat empty string as valid group | [
{
"change_type": "MODIFY",
"diff": "@@ -271,17 +271,17 @@ export class ItemsList {\nprivate _groupBy(items: NgOption[], prop: string | Function): OptionGroups {\nconst isFn = isFunction(this._ngSelect.groupBy);\n- const groups = items.reduce((grouped, item) => {\n+ const groups = new Map<string, NgOption[]>... | TypeScript | MIT License | ng-select/ng-select | fix(groupBy): treat empty string as valid group | 1 | fix | groupBy |
815,745 | 01.06.2018 17:20:29 | -10,800 | 40a6eb72b8bdb36d611bf427da6d7c225739d289 | chore(release): 2.1.3 | [
{
"change_type": "MODIFY",
"diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"2.1.3\"></a>\n+## [2.1.3](https://github.com/ng-select/ng-select/compare/v2.1.2...v2.... | TypeScript | MIT License | ng-select/ng-select | chore(release): 2.1.3 | 1 | chore | release |
217,922 | 01.06.2018 17:33:57 | -7,200 | 3d9aebb86ae158e0c91c2ac5989b5cad5f8799b4 | feat: new "Copy as text" button to copy a panel or the whole list as text
closes | [
{
"change_type": "MODIFY",
"diff": "<mat-expansion-panel [expanded]=\"expanded\" (opened)=\"opened.emit()\" (closed)=\"closed.emit()\">\n<mat-expansion-panel-header>\n<mat-panel-title>{{title}}</mat-panel-title>\n+ <button mat-icon-button ngxClipboard\n+ *ngIf=\"data !== null\"\n+ matTooltip=\"{{'LIST.Copy_... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: new "Copy as text" button to copy a panel or the whole list as text
closes #342 | 1 | feat | null |
821,196 | 01.06.2018 17:37:46 | 25,200 | 620707ce80a17f1ba0e4e3e447ad16128b81638a | feat: add oclif badge | [
{
"change_type": "MODIFY",
"diff": "<%= pjson.description %>\n+[](https://oclif.io)\n[](https://npmjs.org/package/<%= pjson.name %>)\n[ => {\nreturn rowExportString + `${row.amount}x ${this.i18nTools.getName(this.l12n.getItem(row.id))}\\n`... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: added link to the list text export
#342 | 1 | chore | null |
448,065 | 02.06.2018 12:37:31 | 14,400 | da954c9492c24f8dcaa22cf6758be16bb0e2f9a5 | docs: fixes path for integration samples link | [
{
"change_type": "MODIFY",
"diff": "@@ -59,7 +59,7 @@ If neccessay, it's recommended that these tools pick up the `package.json` gener\n### Folder layout\nVarious folder layouts exist and are commonly used within the Angular community.\n-The different styles are reflected in the [integration samples of ng-p... | TypeScript | MIT License | ng-packagr/ng-packagr | docs: fixes path for integration samples link (#918) | 1 | docs | null |
135,522 | 02.06.2018 14:59:10 | -10,800 | 9d4264b4fa9714b5a390eab92b8049ac792dd90d | fix: ignore case of words in quotes | [
{
"change_type": "MODIFY",
"diff": "@@ -7,7 +7,11 @@ import startCase from 'lodash.startcase';\nexport default ensureCase;\nfunction ensureCase(raw = '', target = 'lowercase') {\n- const input = String(raw);\n+ // We delete any content together with quotes because he can contains proper names (example `refa... | TypeScript | MIT License | conventional-changelog/commitlint | fix: ignore case of words in quotes | 1 | fix | null |
217,922 | 02.06.2018 16:21:51 | -7,200 | dadf1bf7f4cc684d4d1c80e9aa287dd1d002da3a | feat: control is now properly handled in min stats popup | [
{
"change_type": "MODIFY",
"diff": "export class Tables {\n+ public static readonly HQ_TABLE = [\n+ 1, 1, 1, 1, 1, 2, 2, 2, 2, 3,\n+ 3, 3, 3, 4, 4, 4, 4, 5, 5, 5,\n+ 5, 6, 6, 6, 6, 7, 7, 7, 7, 8,\n+ 8, 8, 9, 9, 9, 10, 10, 10, 11, 11,\n+ 11, 12, 12, 12, 13, 13, 13, 14, 14, 14,\n+ 15, 15, 15, 16, 16, 17, 17, ... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: control is now properly handled in min stats popup | 1 | feat | null |
217,922 | 02.06.2018 16:24:36 | -7,200 | 527f60c305f7053968f04a46e7d6b536de04a0fe | feat(simulator): rotation name is suffixed by "*" if there's some unsaved changes | [
{
"change_type": "MODIFY",
"diff": "</div>\n<div class=\"rotation-name\" *ngIf=\"rotation !== undefined\">\n{{rotation.getName()}}\n+ <span *ngIf=\"dirty\">*</span>\n<button mat-icon-button (click)=\"$event.preventDefault();editRotationName(rotation)\">\n<mat-icon>mode_edit</mat-icon>\n</button>\n",
"ne... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat(simulator): rotation name is suffixed by "*" if there's some unsaved changes | 1 | feat | simulator |
217,922 | 02.06.2018 18:27:28 | -7,200 | 39a877a37c8ff522de10d2f1d31e2939cfbad4ae | fix: change email popup is now loading properly
closes | [
{
"change_type": "MODIFY",
"diff": "<form [formGroup]=\"form\" (submit)=\"changeEmail()\">\n<mat-form-field>\n- <input type=\"text\" required matInput placeholder=\"Current\" formControlName=\"currentEmail\">\n+ <input type=\"text\" required matInput placeholder=\"Current email\" formControlName=\"currentEm... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: change email popup is now loading properly
closes #387 | 1 | fix | null |
217,922 | 02.06.2018 18:55:45 | -7,200 | 21af5d67e7a9e320154919aa688ab93b49d472ee | feat(simulator): you can now change the current rotation inside simulator
closes | [
{
"change_type": "MODIFY",
"diff": "<mat-icon>format_list_numbered</mat-icon>\n</button>\n</div>\n+\n+<mat-menu #rotationsMenu=\"matMenu\">\n+ <button mat-menu-item *ngFor=\"let availableRotation of availableRotations$ | async\"\n+ (click)=\"useRotation(availableRotation)\">{{availableRotation.getName()}}\n... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat(simulator): you can now change the current rotation inside simulator
closes #389 | 1 | feat | simulator |
217,922 | 02.06.2018 18:58:49 | -7,200 | 5e1f341c58c7ed80485557e8e075f7200052c789 | chore: small race condition issue fix | [
{
"change_type": "MODIFY",
"diff": "<button mat-mini-fab\nmatTooltip=\"{{'SIMULATOR.Save_as_new' | translate}}\"\nmatTooltipPosition=\"{{isMobile()?'below':'right'}}\"\n- *ngIf=\"(actions$ | async).length > 0 && authorId === userData.$key\" (click)=\"save(true)\">\n+ *ngIf=\"(actions$ | async).length > 0 &&... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: small race condition issue fix | 1 | chore | null |
217,922 | 02.06.2018 19:03:08 | -7,200 | fb765dde114e85bee1625d991c7183776e7998e3 | fix: navigation map no longer takes completed items into account | [
{
"change_type": "MODIFY",
"diff": "@@ -150,7 +150,7 @@ export class ListDetailsPanelComponent implements OnChanges, OnInit {\nconst data: { mapId: number, points: NavigationObjective[] } = {\nmapId: zoneBreakdownRow.zoneId,\npoints: <NavigationObjective[]>zoneBreakdownRow.items\n- .filter(item => item.done... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: navigation map no longer takes completed items into account | 1 | fix | null |
217,922 | 02.06.2018 19:24:22 | -7,200 | 6048ef01d3e081c82320965edf9843075ef2a6a6 | feat: added the icon of the item in alarms overlay view | [
{
"change_type": "MODIFY",
"diff": "'primary-background': alarmService.isAlarmSpawned(alarm, time),\n'accent-background': alarmService.isAlerted(alarm.itemId) | async\n}\">\n- <img mat-list-avatar [appXivdbTooltip]=\"alarm.itemId\" [src]=\"alarm.icon | icon\" alt=\"\" *ngIf=\"!overlay\">\n+ <img mat-list-av... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: added the icon of the item in alarms overlay view | 1 | feat | null |
217,922 | 02.06.2018 20:24:13 | -7,200 | 1c5501890747051d34a6a7d833bef2a8142d092b | fix: completion dialog is no longer shown for public lists | [
{
"change_type": "MODIFY",
"diff": "@@ -365,7 +365,7 @@ export class ListDetailsComponent extends ComponentWithSubscriptions implements\nthis.listService.remove(list.$key).pipe(first()).subscribe(() => {\nthis.router.navigate(['recipes']);\n});\n- } else if (l.isComplete()) {\n+ } else if (l.isComplete() &&... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: completion dialog is no longer shown for public lists | 1 | fix | null |
217,922 | 03.06.2018 13:01:02 | -7,200 | 1017091104ca6c917a1a6d9a400a3db7aa1ed255 | feat: you can now organize alarms on groups, mute them by group and reorder using drag & drop
closes | [
{
"change_type": "MODIFY",
"diff": "import {Injectable} from '@angular/core';\nimport {EorzeanTimeService} from './eorzean-time.service';\nimport {Alarm} from './alarm';\n-import {Observable, Subscription} from 'rxjs';\n+import {Observable, of, Subscription} from 'rxjs';\nimport {ListRow} from '../../model/... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: you can now organize alarms on groups, mute them by group and reorder using drag & drop
closes #366 | 1 | feat | null |
217,922 | 03.06.2018 13:05:03 | -7,200 | bf351108a3d08ddf0ba9b672bab4bc439147eb9c | chore: forgot to stop propagation of rename click event | [
{
"change_type": "MODIFY",
"diff": "<mat-expansion-panel-header>\n<mat-panel-title>\n{{group.groupName}}\n- <button mat-icon-button (click)=\"renameGroup(group)\"\n+ <button mat-icon-button (click)=\"$event.stopPropagation();renameGroup(group)\"\n[disabled]=\"group.groupName === 'Default group'\">\n<mat-ico... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: forgot to stop propagation of rename click event | 1 | chore | null |
217,922 | 03.06.2018 13:38:05 | -7,200 | f772456c0ae82a2cf080149f38a3987bb4a00946 | fix: fixed an error with crafts yielding more than one item | [
{
"change_type": "MODIFY",
"diff": "@@ -299,7 +299,7 @@ export class List extends DataWithPermissions {\n*/\npublic setDone(pitem: ListRow, amount: number, excludeRecipes = false, setUsed = false): void {\nconst item = this.getItemById(pitem.id, excludeRecipes);\n- const previousDone = item.done;\n+ const p... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed an error with crafts yielding more than one item | 1 | fix | null |
217,922 | 03.06.2018 15:33:35 | -7,200 | ea2720193ace63dc00590dddaee98d51a42b4cbf | fix: ordering by job no longer hides non-recipe items | [
{
"change_type": "MODIFY",
"diff": "@@ -72,7 +72,7 @@ export class LayoutOrderService {\n}\nprivate getJobId(row: ListRow): number {\n- if (row.craftedBy !== undefined) {\n+ if (row.craftedBy !== undefined && row.craftedBy.length > 0) {\n// Returns the lowest level available for the craft.\nconst jobName = ... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: ordering by job no longer hides non-recipe items | 1 | fix | null |
217,922 | 03.06.2018 16:42:48 | -7,200 | 8c50f6cfe150fa1cb4b157e29eef038518bf62e3 | fix: fixed an issue with vendors extractor | [
{
"change_type": "MODIFY",
"diff": "@@ -26,6 +26,7 @@ export class VendorsExtractor extends AbstractExtractor<Vendor[]> {\n// Else, simply bind the obj property to the effective partial\nitemPartial = itemPartial.obj;\n}\n+ if (itemPartial !== undefined) {\n// If we have an undefined price, this is not what... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed an issue with vendors extractor | 1 | fix | null |
217,922 | 03.06.2018 16:52:01 | -7,200 | c8b9d0c72654c5c39f62c316c111ae8592759ebd | chore: small fix for bulk addition | [
{
"change_type": "MODIFY",
"diff": "@@ -8,29 +8,10 @@ All notable changes to this project will be documented in this file. See [standa\n### Bug Fixes\n-* **alarms:** you can now properly change sound, delay and volume of your alarms ([6ce2a37](https://github.com/Supamiu/ffxiv-teamcraft/commit/6ce2a37))\n-* ... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: small fix for bulk addition | 1 | chore | null |
217,922 | 03.06.2018 16:56:14 | -7,200 | 1f5561995a25f1306709d1d8464a7e4848d39c0d | style: changed text color to white in items for better UX | [
{
"change_type": "MODIFY",
"diff": "mat-icon-button ngxClipboard [cbContent]=\"item.id | itemName | i18n\"\n(cbOnSuccess)=\"afterNameCopy(item.id)\">\n<span\n- [ngClass]=\"{'strike': item.done >= item.amount, 'compact': settings.compactLists, 'craftable': canBeCrafted}\">\n+ [ngClass]=\"{'compact': settings... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | style: changed text color to white in items for better UX | 1 | style | null |
217,922 | 03.06.2018 16:57:49 | -7,200 | ecb47dcfac3936a9d7b8ae3f42ac669ac2986270 | chore: fixed small typo | [
{
"change_type": "MODIFY",
"diff": "mat-icon-button ngxClipboard [cbContent]=\"item.id | itemName | i18n\"\n(cbOnSuccess)=\"afterNameCopy(item.id)\">\n<span\n- [ngClass]=\"{'compact': settings.compactLists\">\n+ [ngClass]=\"{'compact': settings.compactLists}\">\n{{item.id | itemName | i18n}}\n</span>\n</div... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: fixed small typo | 1 | chore | null |
217,922 | 03.06.2018 19:18:51 | -7,200 | 5bf2273eb7046f2ad51abd2da714186e59c04908 | fix: fixed a bug that prevented alarms from playing | [
{
"change_type": "MODIFY",
"diff": "@@ -186,7 +186,10 @@ export class AlarmService {\n.pipe(\nfirst(),\nmergeMap(user => {\n- const alarmGroup = user.alarmGroups.find(group => group.name === alarm.groupName);\n+ let alarmGroup = user.alarmGroups.find(group => group.name === alarm.groupName);\n+ if (alarmGro... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed a bug that prevented alarms from playing | 1 | fix | null |
217,922 | 04.06.2018 13:41:51 | -7,200 | b65a44fd2065bf6a487bdd495a3c1c0415d26553 | fix: no more sound spam with some items
closes | [
{
"change_type": "MODIFY",
"diff": "@@ -194,9 +194,9 @@ export class AlarmService {\nif (alarmGroup !== undefined && !alarmGroup.enabled) {\nreturn of(null);\n}\n- const lastPlayed = localStorage.getItem('alarms:' + alarm.itemId);\n- // Don't play the alarm if it was played less than a minute ago\n- if (las... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: no more sound spam with some items
closes #397 | 1 | fix | null |
217,922 | 04.06.2018 14:57:20 | -7,200 | 9455a4e09257a1c7513b9452cab028b04831828d | feat: new checkbox to search for recipes only in items search page | [
{
"change_type": "MODIFY",
"diff": "@@ -115,13 +115,18 @@ export class DataService {\n* Fires a search request to the search api in order to get results based on filters.\n* @param {string} query\n* @param {SearchFilter[]} filters\n+ * @param onlyCraftable\n* @returns {Observable<Recipe[]>}\n*/\n- public se... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: new checkbox to search for recipes only in items search page | 1 | feat | null |
730,413 | 04.06.2018 15:07:59 | 14,400 | befaf9e35231b8b3b462c2cca831ac0026888402 | feat(widget-message): load avatars from activities list | [
{
"change_type": "MODIFY",
"diff": "@@ -4,7 +4,7 @@ import {connect} from 'react-redux';\nimport {bindActionCreators} from 'redux';\nimport Dropzone from 'react-dropzone';\nimport classNames from 'classnames';\n-import {debounce, has, throttle} from 'lodash';\n+import {debounce, has, throttle, filter} from ... | JavaScript | MIT License | webex/react-widgets | feat(widget-message): load avatars from activities list | 1 | feat | widget-message |
730,413 | 04.06.2018 15:09:09 | 14,400 | e60c5666c3ca436dc5b3a6b320f3eb1953375246 | feat(react-component-people-list): use react-virtualized for rendering people list | [
{
"change_type": "MODIFY",
"diff": "// Jest Snapshot v1, https://goo.gl/fbAQLP\nexports[`PeopleList component renders a group of participants 1`] = `\n-<div>\n<div\n- className=\"ciscospark-people-group group\"\n+ style={\n+ Object {\n+ \"height\": \"100%\",\n+ \"width\": \"100%\",\n+ }\n+ }\n>\n- <h3\n- cl... | JavaScript | MIT License | webex/react-widgets | feat(react-component-people-list): use react-virtualized for rendering people list | 1 | feat | react-component-people-list |
791,674 | 04.06.2018 15:23:21 | 25,200 | df631a093a3dc9337fb142cb953e35963f4a53fa | core: support traces with TracingStartedInBrowser event | [
{
"change_type": "MODIFY",
"diff": "@@ -46,17 +46,37 @@ class TraceOfTab extends ComputedArtifact {\nreturn e.cat.includes('blink.user_timing') ||\ne.cat.includes('loading') ||\ne.cat.includes('devtools.timeline') ||\n- e.name === 'TracingStartedInPage';\n+ e.cat === '__metadata';\n})\n// @ts-ignore - stabl... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core: support traces with TracingStartedInBrowser event (#5271) | 1 | core | null |
217,922 | 04.06.2018 17:42:43 | -7,200 | d387ee36abbe2426938aa7db84bc02836b52ac70 | fix: fixed an issue that prevented addition of some items
closes | [
{
"change_type": "MODIFY",
"diff": "@@ -21,6 +21,10 @@ export class VendorsExtractor extends AbstractExtractor<Vendor[]> {\nlet itemPartial = itemData.getPartial(item.id.toString(), 'item');\n// If we didn't find the item in partials, get it from ingredients\nif (itemPartial === undefined) {\n+ if (itemData... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed an issue that prevented addition of some items
closes #396 | 1 | fix | null |
217,922 | 04.06.2018 21:21:05 | -7,200 | 22d5e9552f48679e366f37aa0a79c27e2d063f6a | fix: fixed a missing translation in sidebar | [
{
"change_type": "MODIFY",
"diff": "matTooltip=\"{{'ITEMS.Title' | translate}}\"\n[matTooltipDisabled]=\"!settings.compactSidebar\">\n<mat-icon matListIcon>search</mat-icon>\n- <span matLine *ngIf=\"!settings.compactSidebar\">{{'Recipes' | translate}}</span>\n+ <span matLine *ngIf=\"!settings.compactSidebar... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed a missing translation in sidebar | 1 | fix | null |
791,690 | 05.06.2018 03:46:51 | 25,200 | 4826a77fc3c522b34ca42083992d81adc48176d7 | core(traces): move findTracingStartedEvt to tracingProcessor
And add support of new traces to scripts/minify-trace.js | [
{
"change_type": "MODIFY",
"diff": "const ComputedArtifact = require('./computed-artifact');\nconst log = require('lighthouse-logger');\n+const TracingProcessor = require('../../lib/traces/tracing-processor');\nconst LHError = require('../../lib/errors');\nconst Sentry = require('../../lib/sentry');\n@@ -51... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(traces): move findTracingStartedEvt to tracingProcessor
And add support of new traces to scripts/minify-trace.js | 1 | core | traces |
807,942 | 05.06.2018 06:40:21 | -28,800 | 1f885f1288f58da6e59261ac6c859f2507f12e3b | docs: Update `--npm-client` details [skip ci] | [
{
"change_type": "MODIFY",
"diff": "@@ -1041,8 +1041,12 @@ $ lerna bootstrap --hoist --nohoist=babel-*\n#### --npm-client [client]\n-Install external dependencies using `[client] install`. Must be an executable\n-that knows how to install npm dependencies.\n+This will apply to actions below:\n+* Install ext... | JavaScript | MIT License | lerna/lerna | docs: Update `--npm-client` details (#1442) [skip ci] | 1 | docs | null |
217,922 | 05.06.2018 12:26:29 | -7,200 | 9db17c95f5bc13f23dfbebdd3d67e21e16f6a8b2 | feat(simulator): crafter stats now shown in main panel, for easier screenshots | [
{
"change_type": "MODIFY",
"diff": "<mat-card-subtitle *ngIf=\"itemId !== undefined\">\n<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}}: {{simulati... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat(simulator): crafter stats now shown in main panel, for easier screenshots | 1 | feat | simulator |
217,922 | 05.06.2018 12:36:58 | -7,200 | b0e7089dd8c8a3719be0f625ac812aa16ca5605e | chore: [WIP] first part of recipe change dialog box in simulator | [
{
"change_type": "ADD",
"diff": "+<p>\n+ recipe-choice-popup works!\n+</p>\n",
"new_path": "src/app/pages/simulator/components/recipe-choice-popup/recipe-choice-popup.component.html",
"old_path": null
},
{
"change_type": "ADD",
"diff": "",
"new_path": "src/app/pages/simulator/compone... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: [WIP] first part of recipe change dialog box in simulator
#395 | 1 | chore | null |
730,429 | 05.06.2018 12:37:05 | 14,400 | 3f11f7f9c941fae152e1fce99e9cef7f19c8926e | fix(icon): add missing download icon | [
{
"change_type": "MODIFY",
"diff": "@@ -21,6 +21,7 @@ export const ICONS = {\nICON_TYPE_DELETE: 'ICON_TYPE_DELETE',\nICON_TYPE_DND: 'ICON_TYPE_DND',\nICON_TYPE_DOCUMENT: 'ICON_TYPE_DOCUMENT',\n+ ICON_TYPE_DOWNLOAD: 'ICON_TYPE_DOWNLOAD',\nICON_TYPE_EXIT: 'ICON_TYPE_EXIT',\nICON_TYPE_EXTERNAL_USER: 'ICON_TYPE... | JavaScript | MIT License | webex/react-widgets | fix(icon): add missing download icon | 1 | fix | icon |
730,429 | 05.06.2018 12:37:31 | 14,400 | 2d49de79d5d0674cc8eceb93afb188e6816ca165 | feat(samples): add download icon | [
{
"change_type": "MODIFY",
"diff": "@@ -70,6 +70,13 @@ function BasicComponents() {\ntype={ICONS.ICON_TYPE_DOCUMENT}\n/>\n</div>\n+ <div style={{height: '25px', width: '25px', backgroundColor: 'blueviolet'}}>\n+ <Icon\n+ color=\"white\"\n+ title=\"Download\"\n+ type={ICONS.ICON_TYPE_DOWNLOAD}\n+ />\n+ </div... | JavaScript | MIT License | webex/react-widgets | feat(samples): add download icon | 1 | feat | samples |
730,429 | 05.06.2018 12:56:52 | 14,400 | 41f0dfaabd3fd725d139688beca0576cc2d9e303 | style(activity-share-file): style download icon properly | [
{
"change_type": "MODIFY",
"diff": "@@ -75,7 +75,36 @@ exports[`ActivityShareFile component renders properly 1`] = `\nonClick={[Function]}\nonKeyPress={[Function]}\n>\n-\n+ <div\n+ className=\"ciscospark-button-icon buttonIcon\"\n+ >\n+ <div\n+ className=\"ciscospark-icon\"\n+ title=\"Download this file\"\n... | JavaScript | MIT License | webex/react-widgets | style(activity-share-file): style download icon properly | 1 | style | activity-share-file |
730,429 | 05.06.2018 12:57:10 | 14,400 | 22613b03dbbc3f39e38e7fa7b681651082c779bf | style(activity-share-thumbnail): style download icon properly | [
{
"change_type": "MODIFY",
"diff": "@@ -53,7 +53,36 @@ exports[`ActivityShareThumbnail post component renders loaded thumbnail properly\nonClick={[Function]}\nonKeyPress={[Function]}\n>\n-\n+ <div\n+ className=\"ciscospark-button-icon buttonIcon\"\n+ >\n+ <div\n+ className=\"ciscospark-icon\"\n+ title=\"Dow... | JavaScript | MIT License | webex/react-widgets | style(activity-share-thumbnail): style download icon properly | 1 | style | activity-share-thumbnail |
730,429 | 05.06.2018 12:57:57 | 14,400 | 7e449606271bff513cae695b8d954614c1156991 | refactor(container-file-downloader): use selector for mapping props | [
{
"change_type": "MODIFY",
"diff": "@@ -7,6 +7,8 @@ import {autobind} from 'core-decorators';\nimport {bufferToBlob, getDisplayName} from '@ciscospark/react-component-utils';\nimport {retrieveSharedFile} from '@ciscospark/redux-module-share';\n+import getContainerProps from './selectors';\n+\n// eslint-disa... | JavaScript | MIT License | webex/react-widgets | refactor(container-file-downloader): use selector for mapping props | 1 | refactor | container-file-downloader |
679,913 | 05.06.2018 14:47:08 | -3,600 | de48e13407fde97ade7abc24514ecd0adb1aa773 | build: add yarn bootstrap | [
{
"change_type": "MODIFY",
"diff": "\"webpack-dev-server\": \"^3.1.4\"\n},\n\"scripts\": {\n+ \"bootstrap\": \"lerna bootstrap\",\n\"build\": \"yarn install && lerna -v && lerna bootstrap && lerna run build --sort\",\n\"cover\": \"lerna run cover\",\n\"depgraph\": \"scripts/depgraph && git add assets/deps.p... | TypeScript | Apache License 2.0 | thi-ng/umbrella | build: add yarn bootstrap | 1 | build | null |
730,429 | 05.06.2018 15:34:56 | 14,400 | 9ed88613ab6802917003cc60987faf163e6b93ad | style(people-list): use flexbox to grow height | [
{
"change_type": "MODIFY",
"diff": "exports[`PeopleList component renders a group of participants 1`] = `\n<div\n- style={\n- Object {\n- \"height\": \"100%\",\n- \"width\": \"100%\",\n- }\n- }\n+ className=\"ciscospark-people-list list\"\n>\n<AutoSizer\ndisableHeight={false}\n@@ -22,12 +17,7 @@ exports[`Pe... | JavaScript | MIT License | webex/react-widgets | style(people-list): use flexbox to grow height | 1 | style | people-list |
730,429 | 05.06.2018 15:35:26 | 14,400 | 872dbaaf249108207e18485f7d7cf598db3a6117 | style(widget-roster): use flexbox to grow height | [
{
"change_type": "MODIFY",
"diff": "@@ -74,7 +74,7 @@ function AddParticipant({\n}\nelse if (searchResults.results && searchResults.results.length) {\nresults = (\n- <div className={classNames(`${baseClassPrefix}-results`, styles.results)}>\n+ <div className={classNames(`${baseClassPrefix}-results`, styles.... | JavaScript | MIT License | webex/react-widgets | style(widget-roster): use flexbox to grow height | 1 | style | widget-roster |
730,429 | 05.06.2018 15:36:03 | 14,400 | 7e6cb97804239368592ed6d9d632f7addf0418e2 | fix(widget-roster): get proper loading state of search | [
{
"change_type": "MODIFY",
"diff": "@@ -42,7 +42,7 @@ const getSearchResults = createSelector(\n],\n(search, widgetRoster, currentUser) => {\nconst searchTerm = widgetRoster.get('searchTerm');\n- if (searchTerm && search.hasIn(['searchResults', searchTerm, 'results'])) {\n+ if (searchTerm && search.hasIn(['... | JavaScript | MIT License | webex/react-widgets | fix(widget-roster): get proper loading state of search | 1 | fix | widget-roster |
730,413 | 05.06.2018 16:32:01 | 14,400 | d889221904cb2858be054cec0259e4b82869f7a2 | style(widget-recents): eslint sort-comp errors | [
{
"change_type": "MODIFY",
"diff": "@@ -52,19 +52,6 @@ const defaultProps = {\nexport class MessageComposer extends Component {\n- static renderSuggestion(entry, search, highlightedDisplay) {\n- return (\n- <div className={mentionStyles.content}>\n- <div className={mentionStyles.avatar}>\n- <PresenceAvatar ... | JavaScript | MIT License | webex/react-widgets | style(widget-recents): eslint sort-comp errors | 1 | style | widget-recents |
573,190 | 05.06.2018 16:55:05 | 25,200 | 39bb37eedd112e9e2530b8af0c3fc9a0e1b61066 | style: fix failing check-style | [
{
"change_type": "MODIFY",
"diff": "@@ -257,9 +257,12 @@ describe('JSON body parser', function() {\n'\\r\\n' +\n'{\"foo\":\"bar\"}';\n- var client = net.connect({ host: '127.0.0.1', port: PORT }, function() {\n+ var client = net.connect(\n+ { host: '127.0.0.1', port: PORT },\n+ function() {\nclient.write(re... | JavaScript | MIT License | restify/node-restify | style: fix failing check-style (#1671) | 1 | style | null |
730,429 | 05.06.2018 17:09:30 | 14,400 | 7818749b5ef72eeb9617ed3298613c27ae6c08cb | refactor(file-uploader): use reselect to get data from store | [
{
"change_type": "MODIFY",
"diff": "@@ -9,6 +9,8 @@ import {addFiles, removeFile} from '@ciscospark/redux-module-activity';\nimport AddFileButton from '@ciscospark/react-component-add-file-button';\nimport FileStagingArea from '@ciscospark/react-component-file-staging-area';\n+import getContainerProps from ... | JavaScript | MIT License | webex/react-widgets | refactor(file-uploader): use reselect to get data from store | 1 | refactor | file-uploader |
217,922 | 05.06.2018 18:43:38 | -7,200 | 87a2a28ef14223a813a340f5710758968ae3340a | feat: you can now change recipe from the simulator page
closes | [
{
"change_type": "MODIFY",
"diff": "-<p>\n- recipe-choice-popup works!\n+<div class=\"input-container compact\">\n+ <mat-form-field>\n+ <mat-icon matPrefix>search</mat-icon>\n+ <input class=\"filter\" [(ngModel)]=\"query\" matInput placeholder=\"{{'ITEMS.Item_name' | translate}}\" #filter>\n+ </mat-form-fie... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: you can now change recipe from the simulator page
closes #395 | 1 | feat | null |
791,883 | 05.06.2018 19:15:49 | -7,200 | 8f23052b26c9bf495797bd586997c2574ce70b7e | core: handle DOM.resolveNode errors | [
{
"change_type": "MODIFY",
"diff": "@@ -54,7 +54,14 @@ class EventListeners extends Gatherer {\npromise = driver.sendCommand('DOM.resolveNode', {\nnodeId: nodeIdOrObject,\nobjectGroup: 'event-listeners-gatherer', // populates event handler info.\n- }).then(result => result.object);\n+ })\n+ .then(result => ... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core: handle DOM.resolveNode errors (#5427) | 1 | core | null |
217,922 | 05.06.2018 23:04:52 | -7,200 | 36d77b2add7eaec121cf61bb164b9e08dc128ecc | fix: only show recipe swap button if a rotation is set and pure (saved) | [
{
"change_type": "MODIFY",
"diff": "</a>\n<mat-card-title *ngIf=\"itemId !== undefined\">\n{{itemId | itemName | i18n}}\n- <button mat-icon-button (click)=\"changeRecipe()\">\n+ <button mat-icon-button (click)=\"changeRecipe()\" *ngIf=\"rotation !== undefined && !dirty\">\n<mat-icon>swap_horiz</mat-icon>\n<... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: only show recipe swap button if a rotation is set and pure (saved) | 1 | fix | null |
730,412 | 05.06.2018 23:37:08 | 0 | 016764b76c22698449d783c2dbf56d7898e6934b | chore(release): 0.1.305 | [
{
"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.305\"></a>\n+## [0.1.305](https://github.com/webex/react-ciscospark/compare/v0.1.... | JavaScript | MIT License | webex/react-widgets | chore(release): 0.1.305 | 1 | chore | release |
724,048 | 06.06.2018 00:31:22 | 25,200 | 1ad53de8958e4b88d5e53a674dab20a6adeaae43 | docs: fix spelling of component in shallowMount.md | [
{
"change_type": "MODIFY",
"diff": "- `{Object} context`\n- `{Array<Component|Object>|Component} children`\n- `{Object} slots`\n- - `{Array<Componet|Object>|Component|String} default`\n- - `{Array<Componet|Object>|Component|String} named`\n+ - `{Array<Component|Object>|Component|String} default`\n+ - `{Arra... | JavaScript | MIT License | vuejs/vue-test-utils | docs: fix spelling of component in shallowMount.md (#683) | 1 | docs | null |
679,913 | 06.06.2018 02:55:12 | -3,600 | be21c4c20a5cb8e3885cfcb3501b876cb373900d | feat(rstream-graph): update NodeOutput, support multiple handlers
extract prepareNodeOutputs() | [
{
"change_type": "MODIFY",
"diff": "@@ -96,4 +96,7 @@ export interface NodeInput {\nxform?: Transducer<any, any>;\n}\n-export type NodeOutput = Path | ((node: ISubscribable<any>) => void);\n+export type NodeOutput =\n+ Path |\n+ ((node: ISubscribable<any>) => void) |\n+ IObjectOf<Path | ((node: ISubscribabl... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(rstream-graph): update NodeOutput, support multiple handlers
- extract prepareNodeOutputs() | 1 | feat | rstream-graph |
217,922 | 06.06.2018 08:26:49 | -7,200 | 6810053a986b6b50948f610e09e861081fe15947 | chore: disconnected gt.data.core.js file from the app | [
{
"change_type": "MODIFY",
"diff": "@@ -28,6 +28,7 @@ import {Observable, Subscription} from 'rxjs';\nimport {debounceTime, distinctUntilChanged, filter, first, map} from 'rxjs/operators';\nimport {PlatformService} from './core/tools/platform.service';\nimport {IpcService} from './core/electron/ipc.service'... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: disconnected gt.data.core.js file from the app | 1 | chore | null |
217,922 | 06.06.2018 11:50:32 | -7,200 | 68ad38552f191d790fb087b790ca1f5c79bfff4e | feat(desktop): better flow for auto updater | [
{
"change_type": "ADD",
"diff": "+owner: Supamiu\n+repo: ffxiv-teamcraft\n+provider: github\n",
"new_path": "dev-app-update.yml",
"old_path": null
},
{
"change_type": "MODIFY",
"diff": "-const {app, ipcMain, BrowserWindow, Tray, nativeImage} = require('electron');\n+const {app, ipcMain, ... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat(desktop): better flow for auto updater | 1 | feat | desktop |
679,913 | 06.06.2018 12:00:52 | -3,600 | dc6e0acc9229444f2b95bd1e1320a9561a9019c7 | refactor(resolve-map): export absPath(), add LookupPath type alias | [
{
"change_type": "MODIFY",
"diff": "@@ -7,6 +7,8 @@ import { getIn, mutIn } from \"@thi.ng/paths\";\nconst SEMAPHORE = Symbol(\"SEMAPHORE\");\n+export type LookupPath = PropertyKey[];\n+\n/**\n* Visits all key-value pairs in depth-first order for given object or\n* array, expands any reference values, mutat... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(resolve-map): export absPath(), add LookupPath type alias | 1 | refactor | resolve-map |
730,429 | 06.06.2018 12:33:58 | 14,400 | dc3d285cbea3d9e306879a7ce81309bf2b4f5aab | feat(all): remove group calling feature flag | [
{
"change_type": "MODIFY",
"diff": "@@ -2,7 +2,6 @@ import {Map} from 'immutable';\nexport const STORE_FEATURE = 'features/STORE_FEATURE';\n-export const FEATURE_GROUP_CALLING = 'js-widgets-group-calling';\nexport const FEATURE_MENTIONS = 'js-widgets-mentions';\nexport const FEATURE_ROSTER = 'js-widgets-ros... | JavaScript | MIT License | webex/react-widgets | feat(all): remove group calling feature flag | 1 | feat | all |
679,913 | 06.06.2018 13:38:30 | -3,600 | f2e0df251fbd35e5687cf20b7c7eb940e4498bcd | feat(rstream-graph): add full/optional support for multiple node outputs
BREAKING CHANGE: update NodeSpec format & graph initialization
add new types/interfaces
non-destructive initGraph() behavior
update & refactor nodeFromSpec()
update addNode/removeNode()
update tests & docs | [
{
"change_type": "MODIFY",
"diff": "@@ -7,7 +7,17 @@ import { Transducer } from \"@thi.ng/transducers/api\";\n* A function which constructs and returns an `ISubscribable` using\n* given object of inputs and node ID. See `node()` and `node1()`.\n*/\n-export type NodeFactory<T> = (src: IObjectOf<ISubscribable... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(rstream-graph): add full/optional support for multiple node outputs
BREAKING CHANGE: update NodeSpec format & graph initialization
- add new types/interfaces
- non-destructive initGraph() behavior
- update & refactor nodeFromSpec()
- update addNode/removeNode()
- update tests & docs | 1 | feat | rstream-graph |
679,913 | 06.06.2018 14:36:36 | -3,600 | 558f4f8cbe3a843bc107a213e0dfa1c7de28a913 | fix(resolve-map): add private _resolveDeep
fixes resolution issue if a function dynamically created deep values | [
{
"change_type": "MODIFY",
"diff": "@@ -81,7 +81,7 @@ export const resolveMap = (obj: any, root?: any, path: LookupPath = [], resolved\n* @param path\n* @param resolved\n*/\n-const resolveArray = (arr: any[], root?: any, path: LookupPath = [], resolved: any = {}) => {\n+const _resolveArray = (arr: any[], ro... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(resolve-map): add private _resolveDeep
- fixes resolution issue if a function dynamically created deep values | 1 | fix | resolve-map |
679,913 | 06.06.2018 14:37:40 | -3,600 | 1a09b61ef178a48e09b8b84b19f0afd1e019d202 | minor(rstream-graph): minor fix exported types | [
{
"change_type": "MODIFY",
"diff": "@@ -15,6 +15,7 @@ import { Transducer } from \"@thi.ng/transducers/api\";\nimport {\nGraph,\nGraphSpec,\n+ Node,\nNodeFactory,\nNodeInputs,\nNodeInputSpec,\n@@ -67,15 +68,15 @@ const isNodeSpec = (x: any): x is NodeSpec =>\n* then updates the provided state atom at the pa... | TypeScript | Apache License 2.0 | thi-ng/umbrella | minor(rstream-graph): minor fix exported types | 1 | minor | rstream-graph |
679,913 | 06.06.2018 14:38:11 | -3,600 | dd2cbd44d21d3041aae30334b2207d18467e3497 | refactor(examples): update rstream-graph examples | [
{
"change_type": "MODIFY",
"diff": "@@ -59,7 +59,7 @@ const graph = initGraph(db, {\nmpos: {\nfn: extract([1, \"pos\"]),\nins: { src: { stream: () => gestures } },\n- out: \"mpos\"\n+ outs: { \"*\": \"mpos\" }\n},\n// extracts last click position from gesture tuple\n@@ -68,7 +68,7 @@ const graph = initGraph... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(examples): update rstream-graph examples | 1 | refactor | examples |
679,913 | 06.06.2018 15:19:22 | -3,600 | 48c796f5cb7cdefe7f86a876c7829410158f4c06 | fix(resolve-map): also use _resolvePath for plain lookups, optimize
rename _resolveDeep => _resolvePath
update docs | [
{
"change_type": "MODIFY",
"diff": "@@ -93,15 +93,16 @@ const _resolve = (root: any, path: LookupPath, resolved: any) => {\nlet rv = SEMAPHORE;\nlet v = getIn(root, path);\nconst pp = path.join(\"/\");\n+ console.log(\"resolve\", pp, resolved[pp]);\nif (!resolved[pp]) {\n- if (isString(v) && v.charAt(0) ===... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(resolve-map): also use _resolvePath for plain lookups, optimize
- rename _resolveDeep => _resolvePath
- update docs | 1 | fix | resolve-map |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.