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 ⌀ |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
503,950 | 26.11.2018 20:55:45 | -7,200 | 44aab833f7155dff3e7f532c57797c002459533d | fix(LoginPage): Add submit error callback handling | [
{
"change_type": "MODIFY",
"diff": "@@ -96,7 +96,10 @@ const createProps = () => {\n},\ndisableSubmit: false,\nsubmitText: card.form.submitText,\n- onSubmit: e => storyAction(e, 'Form was submitted')\n+ onSubmit: (e, onError) => {\n+ onError(card.form.error);\n+ storyAction(e, 'Form was submitted');\n+ }\n}... | TypeScript | MIT License | patternfly/patternfly-react | fix(LoginPage): Add submit error callback handling (#952) | 1 | fix | LoginPage |
217,922 | 26.11.2018 21:10:51 | -3,600 | bd965fa5151d82c3db62ff947bc8b7c301142e59 | feat: first part of simulator ready for testing | [
{
"change_type": "MODIFY",
"diff": "@@ -107,6 +107,11 @@ export class LocalizedDataService {\nif (result === undefined) {\nthrow new Error('Data row not found.');\n}\n+ const name = result.en;\n+ const koRow = koActions.find(a => a.en === name);\n+ if (koRow !== undefined) {\n+ result.ko = koRow.ko;\n+ }\nr... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: first part of simulator ready for testing | 1 | feat | null |
791,690 | 26.11.2018 21:19:45 | 21,600 | a203a36026c722895d3c885e282adaf87225f19e | tests: add smoketest for slow service worker | [
{
"change_type": "MODIFY",
"diff": "@@ -24,7 +24,11 @@ const RUNTIME = 'runtime';\n// The install handler takes care of precaching the resources we always need.\nself.addEventListener('install', event => {\n+ if (self.location.search.includes('slow')) {\n+ event.waitUntil(new Promise(resolve => setTimeout(r... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | tests: add smoketest for slow service worker (#6648) | 1 | tests | null |
67,476 | 26.11.2018 21:32:41 | -3,600 | 535bf95fe52d11b9383c9f8fa301e596820f7c9c | refactor(template-compiler): track attribute ownership to prevent duplicate processing & set interpolation textNode to empty in the compiler itself | [
{
"change_type": "MODIFY",
"diff": "@@ -212,9 +212,9 @@ export class SemanticModel {\nconst { name, value } = attr;\nswitch (name) {\ncase 'part':\n- return new PartAttributeSymbol(attr);\n+ return new PartAttributeSymbol(attr, el);\ncase 'replace-part':\n- return new ReplacePartAttributeSymbol(attr);\n+ re... | TypeScript | MIT License | aurelia/aurelia | refactor(template-compiler): track attribute ownership to prevent duplicate processing & set interpolation textNode to empty in the compiler itself | 1 | refactor | template-compiler |
273,683 | 26.11.2018 22:13:27 | -3,600 | 21ba048fe4f76684e05d71cf1f81e4eced2f9cad | fix(remark): override autolink heading options | [
{
"change_type": "MODIFY",
"diff": "@@ -46,12 +46,14 @@ class RemarkTransformer {\ntype: 'element',\ntagName: 'span',\nproperties: {\n- className: options.anchorClassName || 'icon icon-link'\n+ className: options.autolinkClassName || 'icon icon-link'\n}\n},\nlinkProperties: {\n'aria-hidden': 'true'\n- }\n+ ... | JavaScript | MIT License | gridsome/gridsome | fix(remark): override autolink heading options | 1 | fix | remark |
217,922 | 26.11.2018 22:19:37 | -3,600 | 1b72492ba744c9ae95dbda04a86664a10ac8a677 | feat: standard simulator yay ! | [
{
"change_type": "MODIFY",
"diff": "</button>\n</ng-template>\n<ng-template #openInSimulatorAction>\n- <button nz-button nzDisabled [nzType]=\"'primary'\" [nzShape]=\"'circle'\" nz-tooltip\n- [nzTitle]=\"'Quick_list_create' | translate\" (click)=\"createQuickList(item)\">\n+ <a nz-button [nzType]=\"'primary... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: standard simulator yay ! | 1 | feat | null |
217,922 | 26.11.2018 22:21:24 | -3,600 | c4dc282596d27b967d0a2f8c59ccb62693d8777f | fix: show simulator button only if the item has a recipe | [
{
"change_type": "MODIFY",
"diff": "</button>\n</ng-template>\n<ng-template #openInSimulatorAction>\n- <a nz-button [nzType]=\"'primary'\" [nzShape]=\"'circle'\" nz-tooltip\n- [nzTitle]=\"'SIMULATOR.Simulate_tooltip' | translate\" routerLink=\"/simulator/{{item.itemId}}\">\n+ <a nz-button *ngIf=\"item.recip... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: show simulator button only if the item has a recipe | 1 | fix | null |
217,922 | 26.11.2018 22:26:56 | -3,600 | 237dd9678125ee1e48a224d1f1e124a0b31f085d | fix: show as dirty if you're using a non-persisted rotation | [
{
"change_type": "MODIFY",
"diff": "@@ -94,6 +94,11 @@ export class SimulatorComponent implements OnDestroy {\nrotation.rotation = this.registry.serializeRotation(actions);\n}\nreturn rotation;\n+ }),\n+ tap(rotation => {\n+ if (rotation.$key === undefined && rotation.rotation.length > 0) {\n+ this.dirty = ... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: show as dirty if you're using a non-persisted rotation | 1 | fix | null |
273,683 | 26.11.2018 23:29:38 | -3,600 | c6da951689eb6c475fe8cf6c0ba8123b1dc4a6f2 | fix(remark): strip html tags from headings | [
{
"change_type": "MODIFY",
"diff": "@@ -17,7 +17,8 @@ const {\nconst {\nGraphQLInt,\nGraphQLList,\n- GraphQLString\n+ GraphQLString,\n+ GraphQLBoolean\n} = require('gridsome/graphql')\nclass RemarkTransformer {\n@@ -94,16 +95,23 @@ class RemarkTransformer {\nheadings: {\ntype: new GraphQLList(HeadingType),\... | JavaScript | MIT License | gridsome/gridsome | fix(remark): strip html tags from headings | 1 | fix | remark |
67,476 | 27.11.2018 03:48:47 | -3,600 | 67b1b9b51a1b2800aafd5e2a9f7d970e3f1d432d | refactor(jit): various small fixes | [
{
"change_type": "MODIFY",
"diff": "@@ -20,7 +20,7 @@ import {\nTriggerBindingInstruction,\nTwoWayBindingInstruction\n} from '@aurelia/runtime';\n-import { PotentialBindingCommandAttributeSymbol, SymbolKind, TemplateControllerAttributeSymbol } from './semantic-model-2';\n+import { PotentialBindingCommandAtt... | TypeScript | MIT License | aurelia/aurelia | refactor(jit): various small fixes | 1 | refactor | jit |
815,605 | 27.11.2018 06:20:27 | 0 | 781d5f57472198f8e09c565d5200e24699e4902c | feat: add get_current_cell rpc for fetching unspent cells | [
{
"change_type": "MODIFY",
"diff": "@@ -54,6 +54,10 @@ build_rpc_trait! {\n#[rpc(name = \"get_cells_by_type_hash\")]\nfn get_cells_by_type_hash(&self, H256, u64, u64) -> Result<Vec<CellOutputWithOutPoint>>;\n+ // curl -d '{\"id\": 2, \"jsonrpc\": \"2.0\", \"method\":\"get_current_cell\",\"params\": [{\"hash... | Rust | MIT License | nervosnetwork/ckb | feat: add get_current_cell rpc for fetching unspent cells | 1 | feat | null |
815,605 | 27.11.2018 06:49:37 | 0 | c7fbc922098364d526cb361237e03c28d1065c9d | fix: fix integration tests | [
{
"change_type": "MODIFY",
"diff": "use super::{\n- BlockTemplate, BlockWithHash, CellOutputWithOutPoint, Config, RpcController,\n+ BlockTemplate, BlockWithHash, CellOutputWithOutPoint, CellWithStatus, Config, RpcController,\nTransactionWithHash,\n};\nuse bigint::H256;\n+use ckb_core::cell::CellProvider;\nu... | Rust | MIT License | nervosnetwork/ckb | fix: fix integration tests | 1 | fix | null |
217,922 | 27.11.2018 07:12:42 | -3,600 | 4b5ba195909ac27d121f143519f083552322e68b | fix: fixed a bug where "select all" button would stay selected but not link to any list | [
{
"change_type": "MODIFY",
"diff": "@@ -69,6 +69,7 @@ export class LevequestsComponent implements OnInit {\ntap(() => {\nthis.showIntro = false;\nthis.loading = true;\n+ this.allSelected = false;\n}),\nswitchMap(query => {\nconst filters: XivapiSearchFilter[] = [{ column: 'ClassJobCategoryTargetID', operato... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed a bug where "select all" button would stay selected but not link to any list | 1 | fix | null |
679,913 | 27.11.2018 09:03:55 | 0 | 35babfc6fee6eea849fb712460db024d631cd37e | feat(matrices): add more matrix ops | [
{
"change_type": "ADD",
"diff": "+import { add as _add, add4 } from \"@thi.ng/vectors3/add\";\n+import { MatOpMM, MultiMatOpMM } from \"./api\";\n+import { defMath } from \"./internal/codegen\";\n+\n+export const add: MultiMatOpMM = _add;\n+export const add22: MatOpMM = add4;\n+export const [add23, add33, a... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(matrices): add more matrix ops | 1 | feat | matrices |
217,922 | 27.11.2018 09:29:13 | -3,600 | 1b2f77dfe75b5ee0a345b41ab8eff667a225fed8 | feat: first part of rotations page | [
{
"change_type": "MODIFY",
"diff": "@@ -7,6 +7,8 @@ export class CraftingRotation extends DataWithPermissions {\npublic name: string;\n+ public index = -1;\n+\npublic recipe: Partial<Craft>;\npublic rotation: string[] = [];\n@@ -30,6 +32,10 @@ export class CraftingRotation extends DataWithPermissions {\npub... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: first part of rotations page | 1 | feat | null |
807,849 | 27.11.2018 09:53:54 | 28,800 | f4edc76a5b04fd92fc0380f4b2d70af74cf666e2 | docs: Remove broken badges | [
{
"change_type": "MODIFY",
"diff": "<p align=\"center\">\n<a href=\"https://www.npmjs.com/package/lerna\"><img alt=\"NPM Status\" src=\"https://img.shields.io/npm/v/lerna.svg?style=flat\"></a>\n<a href=\"https://travis-ci.org/lerna/lerna\"><img alt=\"Travis Status\" src=\"https://img.shields.io/travis/lerna... | JavaScript | MIT License | lerna/lerna | docs: Remove broken badges | 1 | docs | null |
807,849 | 27.11.2018 09:58:35 | 28,800 | 1aa1712363b07531fbe438639f98642d55ddafa3 | chore: bump eslint-plugin-jest | [
{
"change_type": "MODIFY",
"diff": "}\n},\n\"eslint-plugin-jest\": {\n- \"version\": \"22.0.0\",\n- \"resolved\": \"https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-22.0.0.tgz\",\n- \"integrity\": \"sha512-YOj8cYI5ZXEZUrX2kUBLachR1ffjQiicIMBoivN7bXXHnxi8RcwNvmVzwlu3nTmjlvk5AP3kIpC5i8Hcinmh... | JavaScript | MIT License | lerna/lerna | chore: bump eslint-plugin-jest | 1 | chore | null |
807,849 | 27.11.2018 10:23:05 | 28,800 | 3b98973e273157ef87b7a1c026cd444ddb824fe3 | refactor(publish): Gather current tags filtered by --list glob | [
{
"change_type": "MODIFY",
"diff": "@@ -198,12 +198,15 @@ class PublishCommand extends Command {\n}\ndetectFromGit() {\n+ const { tagVersionPrefix = \"v\" } = this.options;\n+ const matchingPattern = this.project.isIndependent() ? \"*@*\" : `${tagVersionPrefix}*.*.*`;\n+\nlet chain = Promise.resolve();\n// ... | JavaScript | MIT License | lerna/lerna | refactor(publish): Gather current tags filtered by --list glob | 1 | refactor | publish |
217,922 | 27.11.2018 11:17:37 | -3,600 | 4efeb2e6ff8e2c14539007c87976fdcebd09f34e | feat: rotations picker for simulator | [
{
"change_type": "MODIFY",
"diff": "@@ -32,7 +32,7 @@ export function rotationsReducer(\ncase RotationsActionTypes.CreateRotation: {\nstate = {\n...state,\n- rotations: [...state.rotations, action.rotation]\n+ rotations: [...state.rotations.filter(rotation => rotation.$key !== undefined), action.rotation]\n... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: rotations picker for simulator | 1 | feat | null |
807,862 | 27.11.2018 11:37:53 | 21,600 | e2c0342c7e5698f6f3d6cd9a81b66eddb838998a | docs: Fix link to `--git-remote` option [ci skip] | [
{
"change_type": "MODIFY",
"diff": "@@ -253,7 +253,7 @@ bumps using the specified [prerelease identifier](http://semver.org/#spec-item-9\n### `--push`\n-Push the committed and tagged changes to the configured [git remote](https://github.com/lerna/lerna/tree/master/commands/version#--git-remote)\n+Push the c... | JavaScript | MIT License | lerna/lerna | docs: Fix link to `--git-remote` option (#1796) [ci skip] | 1 | docs | null |
807,849 | 27.11.2018 11:40:27 | 28,800 | b199f328dd9360fe6ffceb318fa92536ebffd5e1 | refactor(publish): Allow --git-reset to be configured from lerna.json | [
{
"change_type": "MODIFY",
"diff": "@@ -60,7 +60,7 @@ exports.builder = yargs => {\n\"git-reset\": {\ndescribe: \"Reset the git working tree.\\nPass --no-git-reset to disable.\",\ntype: \"boolean\",\n- default: true,\n+ defaultDescription: \"true\",\n},\n};\n",
"new_path": "commands/publish/command.js",... | JavaScript | MIT License | lerna/lerna | refactor(publish): Allow --git-reset to be configured from lerna.json | 1 | refactor | publish |
807,849 | 27.11.2018 11:42:57 | 28,800 | fbf962932c15b20567678e33d3be226064d50e59 | refactor(version): Tweak error code when remote branch does not exist | [
{
"change_type": "MODIFY",
"diff": "@@ -93,7 +93,7 @@ class VersionCommand extends Command {\nif (this.pushToRemote && !remoteBranchExists(this.gitRemote, this.currentBranch, this.execOpts)) {\nthrow new ValidationError(\n- \"EMISSREMOTEBRANCH\",\n+ \"ENOREMOTEBRANCH\",\ndedent`\nBranch '${this.currentBranc... | JavaScript | MIT License | lerna/lerna | refactor(version): Tweak error code when remote branch does not exist | 1 | refactor | version |
679,913 | 27.11.2018 11:52:52 | 0 | f1a5cf121faef1c0976537a0f29056a1d3a72acc | feat(matrices): add M44 factories | [
{
"change_type": "ADD",
"diff": "+import { DEG2RAD } from \"@thi.ng/math/api\";\n+import { Mat } from \"./api\";\n+import { setValues44 } from \"./set-values\";\n+\n+export const frustum = (\n+ out: Mat,\n+ left: number,\n+ right: number,\n+ bottom: number,\n+ top: number,\n+ near: number,\n+ far: number) =... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(matrices): add M44 factories | 1 | feat | matrices |
815,598 | 27.11.2018 12:42:55 | -28,800 | ef65f8b06385495821735fcb51cc23218db64052 | chore: delete CHANGELOG from develop | [
{
"change_type": "DELETE",
"diff": "-# Change Log\n-\n-All notable changes to this project will be documented in this file.\n-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.\n-\n-## [v0.1.0-pre10](https://github.com/nervosnetwork/ckb/compare/v0.1.0-pre09...v0.1.0-pre10) (2... | Rust | MIT License | nervosnetwork/ckb | chore: delete CHANGELOG from develop | 1 | chore | null |
679,913 | 27.11.2018 12:46:22 | 0 | 28fd0f1f6c02cb1bf0845ea1ad8c79e4115b57f3 | feat(vectors): add sum() | [
{
"change_type": "MODIFY",
"diff": "@@ -89,6 +89,7 @@ export * from \"./smoothstep\";\nexport * from \"./sub\";\nexport * from \"./subn\";\nexport * from \"./subs\";\n+export * from \"./sum\";\nexport * from \"./swizzle\";\nexport * from \"./tan\";\nexport * from \"./tanh\";\n",
"new_path": "packages/ve... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(vectors): add sum() | 1 | feat | vectors |
679,913 | 27.11.2018 12:47:44 | 0 | 16d56a3715d985e98158fe99be1222ec010a1eee | feat(matrices): add trace() | [
{
"change_type": "MODIFY",
"diff": "@@ -28,5 +28,6 @@ export * from \"./shear\";\nexport * from \"./skew\";\nexport * from \"./sub\";\nexport * from \"./subn\";\n+export * from \"./trace\";\nexport * from \"./translation\";\nexport * from \"./transpose\";\n",
"new_path": "packages/matrices/src/index.ts"... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(matrices): add trace() | 1 | feat | matrices |
791,834 | 27.11.2018 12:59:17 | 28,800 | 5f369150417c492ca29bcf0d10a7596aec190c99 | report(tsc): infer dom.createElement type from tag name | [
{
"change_type": "MODIFY",
"diff": "@@ -130,7 +130,7 @@ class DetailsRenderer {\ndisplayedPath = url;\n}\n- const element = /** @type {HTMLElement} */ (this._dom.createElement('div', 'lh-text__url'));\n+ const element = this._dom.createElement('div', 'lh-text__url');\nelement.appendChild(this._renderText({\... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | report(tsc): infer dom.createElement type from tag name (#6637) | 1 | report | tsc |
217,922 | 27.11.2018 13:22:16 | -3,600 | 5ba736499f2b31278272cf5a352f6ec03f6528f0 | feat: ffxivgathering links for seeds | [
{
"change_type": "MODIFY",
"diff": "@@ -48,8 +48,8 @@ export class DataExtractorService {\n* @param {ItemData} data\n* @returns {GatheredBy}\n*/\n- extractGardening(id: number, data: ItemData): boolean {\n- return this.extract<boolean>(DataType.GARDENING, id, data);\n+ extractGardening(id: number, data: Ite... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: ffxivgathering links for seeds | 1 | feat | null |
679,913 | 27.11.2018 14:13:17 | 0 | d9e1b2eca6367c4be655d91bb4b95024e7a0a645 | feat(matrices): add viewport(), project/unproject(), update invert() | [
{
"change_type": "MODIFY",
"diff": "@@ -18,6 +18,7 @@ export * from \"./mulv\";\nexport * from \"./normal-mat\";\nexport * from \"./ortho\";\nexport * from \"./perspective\";\n+export * from \"./project\";\nexport * from \"./rotation\";\nexport * from \"./row\";\nexport * from \"./scale\";\n@@ -31,3 +32,4 @... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(matrices): add viewport(), project/unproject(), update invert() | 1 | feat | matrices |
815,605 | 27.11.2018 14:25:13 | -28,800 | b7d092c64c1914caf8f30cd195a9e2bffd0f2595 | feat: Print full config error instead of just description | [
{
"change_type": "MODIFY",
"diff": "@@ -58,9 +58,9 @@ fn main() {\n}\nErr(e) => {\neprintln!(\n- \"Failed to setup with config {}, cause err: {}\",\n+ \"Failed to setup with config {}, cause err: {:?}\",\nconfig_path.display(),\n- e.description()\n+ e\n);\n::std::process::exit(1);\n}\n",
"new_path": "sr... | Rust | MIT License | nervosnetwork/ckb | feat: Print full config error instead of just description (#23) | 1 | feat | null |
815,590 | 27.11.2018 14:29:59 | -28,800 | f4644b8e63da2eaac24fbc184713cf8174301f7f | fix: Fix network unexpected connections to self | [
{
"change_type": "MODIFY",
"diff": "@@ -24,6 +24,7 @@ use std::time::Instant;\nuse std::usize;\nuse tokio::io::{AsyncRead, AsyncWrite};\nuse tokio::prelude::{task, Async, Poll};\n+use tokio::spawn;\nuse tokio::timer::Interval;\nuse tokio::timer::Timeout;\nuse transport::TransportOutput;\n@@ -375,6 +376,14 @... | Rust | MIT License | nervosnetwork/ckb | fix: Fix network unexpected connections to self (#21) | 1 | fix | null |
679,913 | 27.11.2018 15:15:00 | 0 | a373e55bee9392e8d2348a68a1399004d72cd084 | feat(vectors): update `out` default behavior & codegens, bugfixes
where possible inject behavior to use 2nd arg as default `out`, iff given
`out=null`
update def*() codegens
fix normalize() / limit() | [
{
"change_type": "MODIFY",
"diff": "@@ -6,6 +6,7 @@ export const cross2 =\nexport const cross3 =\n(out: Vec, a: ReadonlyVec, b: ReadonlyVec) => {\n+ !out && (out = a);\nconst x = a[1] * b[2] - a[2] * b[1];\nconst y = a[2] * b[0] - a[0] * b[2];\nout[2] = a[0] * b[1] - a[1] * b[0];\n",
"new_path": "packag... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(vectors): update `out` default behavior & codegens, bugfixes
- where possible inject behavior to use 2nd arg as default `out`, iff given
`out=null`
- update def*() codegens
- fix normalize() / limit() | 1 | feat | vectors |
217,922 | 27.11.2018 15:27:49 | -3,600 | aa0da9bfd8782fe61781b0d7bace92e234376c44 | feat: ffxivgardening.com links !
Also fixed issues with list regeneration | [
{
"change_type": "MODIFY",
"diff": "@@ -24,7 +24,6 @@ export class BellNodesService {\nif (match !== undefined) {\nconst nodeCopy = { ...node };\nnodeCopy.icon = match.icon;\n- console.log(match);\nnodeCopy.itemId = match.id;\nif (match.slot !== '?' && match.slot !== undefined) {\nnodeCopy.slot = +match.slo... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: ffxivgardening.com links !
Also fixed issues with list regeneration | 1 | feat | null |
730,429 | 27.11.2018 15:59:24 | 18,000 | 0fd4b67f37254d0dab7921134099da3f674bcc7c | feat(widget-message): use collab-ui for scroll to bottom button | [
{
"change_type": "MODIFY",
"diff": "@@ -43,7 +43,6 @@ import {\nimport ConfirmationModal from '@ciscospark/react-component-confirmation-modal';\nimport Cover from '@ciscospark/react-component-cover';\nimport LoadingScreen from '@webex/react-component-loading-screen';\n-import ScrollToBottomButton from '@cis... | JavaScript | MIT License | webex/react-widgets | feat(widget-message): use collab-ui for scroll to bottom button | 1 | feat | widget-message |
217,922 | 27.11.2018 15:59:34 | -3,600 | e91700945c6b68c65825172b55949373fa72a20d | chore: cleanup for electron and incoming beta | [
{
"change_type": "MODIFY",
"diff": "@@ -24,7 +24,7 @@ import { NotificationsFacade } from './modules/notifications/+state/notification\nimport { AbstractNotification } from './core/notification/abstract-notification';\nimport { RotationsFacade } from './modules/rotations/+state/rotations.facade';\n-declare ... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: cleanup for electron and incoming beta | 1 | chore | null |
807,849 | 27.11.2018 16:05:52 | 28,800 | a4c57c26d936a09794d837495944dd670fc758e8 | fix(publish): Pass explicit list of files to checkout instead of globs
Fixes | [
{
"change_type": "MODIFY",
"diff": "@@ -6,11 +6,12 @@ const path = require(\"path\");\nconst initFixture = require(\"@lerna-test/init-fixture\")(__dirname);\nconst gitCheckout = require(\"../lib/git-checkout\");\n-test(\"gitCheckout\", async () => {\n+test(\"gitCheckout files\", async () => {\nconst cwd = a... | JavaScript | MIT License | lerna/lerna | fix(publish): Pass explicit list of files to checkout instead of globs
Fixes #1786 | 1 | fix | publish |
67,494 | 27.11.2018 16:08:12 | -3,600 | 6ec9357c913e109e1b977eb0ea2794a39c2c4bf2 | feat(router): add clear viewport functionality | [
{
"change_type": "MODIFY",
"diff": "@@ -20,16 +20,24 @@ export class Viewport {\npublic component: IRouteableCustomElement;\npublic nextComponent: IRouteableCustomElement;\n+ private clear: boolean = false;\n+\nconstructor(private container: IContainer, public name: string, public element: Element, public o... | TypeScript | MIT License | aurelia/aurelia | feat(router): add clear viewport functionality | 1 | feat | router |
503,933 | 27.11.2018 16:25:05 | 18,000 | a3e74fa973cc97aca0630af8937ca2f433a5827c | fix(Radio): Updated Radio aria-label prop so that it is optional | [
{
"change_type": "MODIFY",
"diff": "@@ -7,7 +7,7 @@ export interface RadioProps extends Omit<HTMLProps<HTMLInputElement>, 'type' | '\nisChecked?: boolean;\nonChange?(checked: boolean, event: FormEvent<HTMLInputElement>): void;\nid: string;\n- 'aria-label': string;\n+ 'aria-label'?: string;\nlabel?: ReactNod... | TypeScript | MIT License | patternfly/patternfly-react | fix(Radio): Updated Radio aria-label prop so that it is optional (#930)
#803 | 1 | fix | Radio |
730,429 | 27.11.2018 16:31:33 | 18,000 | 3e22dd083663194f8ea8098d6adb74777635f055 | fix(title-bar): remove hard coded font style | [
{
"change_type": "MODIFY",
"diff": ".titleBar {\ndisplay: flex;\nheight: 46px;\n- font-family: CiscoSans, 'Helvetica Neue', Arial;\n- font-weight: 200;\nborder-bottom: 1px solid #ececed;\n}\noverflow: hidden;\nfont-size: 12px;\nline-height: 16px;\n- font-weight: 200;\n- color: #000000;\ntext-overflow: ellip... | JavaScript | MIT License | webex/react-widgets | fix(title-bar): remove hard coded font style | 1 | fix | title-bar |
217,922 | 27.11.2018 16:59:14 | -3,600 | 8d704f4713b2147d20ad1fa86928f95c42da0213 | fix: fixed an issue with first login creating an infinite loading for character informations | [
{
"change_type": "MODIFY",
"diff": "@@ -62,10 +62,18 @@ export class AuthEffects {\nmap((result: UserCredential) => new LoggedInAsAnonymous(result.user.uid))\n);\n+ @Effect()\n+ fetchUserOnAnoymous$ = this.actions$.pipe(\n+ ofType(AuthActionTypes.LoggedInAsAnonymous),\n+ switchMap((action: Authenticated) =>... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed an issue with first login creating an infinite loading for character informations | 1 | fix | null |
730,429 | 27.11.2018 17:05:20 | 18,000 | 6298708147a1a28ef591e46f9ea8b6c11a86f4b8 | feat(scrolling-activity): use collab-ui loader | [
{
"change_type": "MODIFY",
"diff": "@@ -21,8 +21,18 @@ exports[`ScrollingActivity container renders properly loading history 1`] = `\nclassName=\"ciscospark-spinner-container spinnerContainer\"\n>\n<div\n- className=\"ciscospark-spinner spinner\"\n+ className=\"cui-loading \"\n+ >\n+ <span\n+ className=\"cu... | JavaScript | MIT License | webex/react-widgets | feat(scrolling-activity): use collab-ui loader | 1 | feat | scrolling-activity |
217,922 | 27.11.2018 17:08:08 | -3,600 | 6f88fd8709eab4a74f1150194ce78db5aab28d0e | feat: rename rotation button in rotation panel | [
{
"change_type": "MODIFY",
"diff": "<div fxLayout=\"row\" fxLayoutAlign=\"space-between center\" class=\"panel-header\">\n<div>{{rotation.getName()}}</div>\n<div fxLayout=\"row\" fxLayoutGap=\"5px\">\n+ <button nz-button nzShape=\"circle\" nz-tooltip [nzTitle]=\"'SIMULATOR.Rename_rotation' | translate\"\n+ ... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: rename rotation button in rotation panel | 1 | feat | null |
730,429 | 27.11.2018 17:11:43 | 18,000 | 4c486142ed5a63352692c102eef44ae411e01478 | feat(loading-screen): use collab-ui spinner | [
{
"change_type": "MODIFY",
"diff": "@@ -9,10 +9,10 @@ exports[`LoadingScreen component renders properly 1`] = `\n/>\nLoading\n<div\n- className=\"webex-teams-spinner-container spinnerContainer\"\n+ className=\"webex-teams-spinner-container\"\n>\n- <div\n- className=\"ciscospark-spinner spinner\"\n+ <i\n+ cl... | JavaScript | MIT License | webex/react-widgets | feat(loading-screen): use collab-ui spinner | 1 | feat | loading-screen |
679,913 | 27.11.2018 18:13:24 | 0 | 28f04ac17e77b8ca4095347595eefe82dffb728f | feat(vectors): add project(), signedArea2(), update orthoNormal3() | [
{
"change_type": "MODIFY",
"diff": "@@ -69,6 +69,7 @@ export * from \"./perpendicular\";\nexport * from \"./polar\";\nexport * from \"./pow\";\nexport * from \"./pown\";\n+export * from \"./project\";\nexport * from \"./random\";\nexport * from \"./reflect\";\nexport * from \"./refract\";\n@@ -81,6 +82,7 @@... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(vectors): add project(), signedArea2(), update orthoNormal3() | 1 | feat | vectors |
679,913 | 27.11.2018 18:41:55 | 0 | 27f65f9edf32dbf37bc8bbd4eb529324bd44e72d | feat(matrices): add rotationAroundAxis33/44() | [
{
"change_type": "MODIFY",
"diff": "@@ -19,6 +19,7 @@ export * from \"./normal-mat\";\nexport * from \"./ortho\";\nexport * from \"./perspective\";\nexport * from \"./project\";\n+export * from \"./rotation-around-axis\";\nexport * from \"./rotation\";\nexport * from \"./row\";\nexport * from \"./scale\";\n... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(matrices): add rotationAroundAxis33/44() | 1 | feat | matrices |
471,527 | 27.11.2018 18:45:43 | -3,600 | 8065bae2e1e8bf5a641c2cdf2beab0e3a9520442 | fix: update generators to latest versions | [
{
"change_type": "MODIFY",
"diff": "\"lint:eslint\": \"eslint --ext .js,.html .\"\n},\n\"devDependencies\": {\n- \"@open-wc/eslint-config\": \"^0.2.0\"\n+ \"@open-wc/eslint-config\": \"^0.3.0\"\n}\n}\n",
"new_path": "packages/generator-open-wc/generators/lint-eslint/templates/_package.json",
"old_pa... | JavaScript | MIT License | open-wc/open-wc | fix: update generators to latest versions | 1 | fix | null |
807,819 | 27.11.2018 18:47:21 | -3,600 | 3cb7465af13d886ee41cf12ee43f85f5b53e2061 | fix(publish): Ignore non-release tags when detecting `from-git` | [
{
"change_type": "MODIFY",
"diff": "@@ -212,7 +212,7 @@ class PublishCommand extends Command {\n}\nif (this.project.isIndependent()) {\n- return taggedPackageNames.map(name => this.packageGraph.get(name));\n+ return taggedPackageNames.map(name => this.packageGraph.get(name)).filter(name => name !== undefine... | JavaScript | MIT License | lerna/lerna | fix(publish): Ignore non-release tags when detecting `from-git` (#1782) | 1 | fix | publish |
217,922 | 27.11.2018 18:55:25 | -3,600 | 8981554b6edcadfe74d0f5e8bceb47d715059c67 | feat: change rotation button inside simulator | [
{
"change_type": "MODIFY",
"diff": "@@ -68,7 +68,7 @@ export class AppComponent implements OnInit {\npublic teamsFacade: TeamsFacade, private notificationsFacade: NotificationsFacade,\nprivate iconService: NzIconService, private rotationsFacade: RotationsFacade) {\n- this.iconService.fetchFromIconfont({scri... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: change rotation button inside simulator | 1 | feat | null |
503,954 | 27.11.2018 19:47:14 | -3,600 | d48d45f1ededbf27895546ac9b23311e087b4769 | feat(LoadingState): Add LoadingState component | [
{
"change_type": "ADD",
"diff": "+import React, { Component } from 'react';\n+import PropTypes from 'prop-types';\n+import classNames from 'classnames';\n+import { Spinner } from '../Spinner';\n+\n+class LoadingState extends Component {\n+ constructor(props) {\n+ super(props);\n+ this.state = {\n+ render: f... | TypeScript | MIT License | patternfly/patternfly-react | feat(LoadingState): Add LoadingState component (#881) (#886) | 1 | feat | LoadingState |
217,922 | 27.11.2018 20:05:55 | -3,600 | 156a4f6d05d985678fad641d72a987b37d75f59d | feat: simulator is now totally ready for production | [
{
"change_type": "MODIFY",
"diff": "@@ -35,7 +35,7 @@ export class CraftingRotation extends DataWithPermissions {\nif (this.recipe) {\nreturn this.name || `rlvl${this.recipe.rlvl} - ${this.rotation.length} steps, ${this.recipe.durability} dur`;\n} else {\n- return 'New custom rotation';\n+ return 'New rotat... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: simulator is now totally ready for production | 1 | feat | null |
217,922 | 27.11.2018 20:08:50 | -3,600 | cb0e02b59137e570e27927b87b56362760ba0fad | style: sidebar is now collapse by default | [
{
"change_type": "MODIFY",
"diff": "<nz-layout class=\"content-container\">\n<nz-sider nzCollapsible\n[(nzCollapsed)]=\"collapsedSidebar\"\n- (nzCollapsedChange)=\"settings.compactSidebar = $event\"\n- [class.collapsed]=\"collapsedSidebar | ifMobile: false\"\n- [nzCollapsedWidth]=\"80 | ifMobile: 0\"\n- [nz... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | style: sidebar is now collapse by default | 1 | style | null |
217,922 | 27.11.2018 20:49:45 | -3,600 | d51f10bfb7d074705896e25daed4d0e893335a25 | feat: social buttons in sidebar | [
{
"change_type": "MODIFY",
"diff": "</nz-layout>\n<nz-layout class=\"content-container\">\n<nz-sider nzCollapsible\n+ class=\"sider\"\n[(nzCollapsed)]=\"collapsedSidebar\"\n[nzCollapsedWidth]=\"80 | ifMobile: 0\">\n+ <div fxLayout=\"column\" class=\"flex-container\" fxLayoutAlign=\"space-between\">\n+ <div>... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: social buttons in sidebar | 1 | feat | null |
67,476 | 27.11.2018 21:53:59 | -3,600 | 870b24ee1e3224ab8592906a0ae5ada44ab9f356 | chore(all): update package dependencies | [
{
"change_type": "MODIFY",
"diff": "\"@types/fancy-log\": \"^1.3.0\",\n\"@types/karma\": \"^3.0.0\",\n\"@types/mocha\": \"^5.2.5\",\n- \"@types/node\": \"^8.10.37\",\n+ \"@types/node\": \"^10.12.10\",\n\"@types/request\": \"^2.48.1\",\n- \"@types/sinon\": \"^5.0.5\",\n- \"@types/sinon-chai\": \"^3.2.0\",\n-... | TypeScript | MIT License | aurelia/aurelia | chore(all): update package dependencies | 1 | chore | all |
503,918 | 27.11.2018 21:59:05 | -7,200 | 7638f808c388471b9452ef722c48522b1a7f8858 | fix(Slider): Call onSlide on slide event | [
{
"change_type": "MODIFY",
"diff": "import React from 'react';\nimport PropTypes from 'prop-types';\nimport BootstrapSlider from './BootstrapSlider';\n+import { noop } from '../../common/helpers';\nimport { Icon } from '../Icon';\nimport { ControlLabel, FormControl } from '../Form';\nimport Boundaries from ... | TypeScript | MIT License | patternfly/patternfly-react | fix(Slider): Call onSlide on slide event (#828)
Signed-off-by: Boaz Shuster <boaz.shuster.github@gmail.com> | 1 | fix | Slider |
217,922 | 27.11.2018 22:17:53 | -3,600 | 5eec159895230bad6b13e45ec7669d8f0919406b | fix: fixed an issue with non-recipe items added to lists crashing the GCF | [
{
"change_type": "MODIFY",
"diff": "@@ -9,13 +9,16 @@ function getCompact(list) {\nconst compact = list;\ndelete compact.items;\ncompact.finalItems = compact.finalItems.map(item => {\n- return {\n+ const entry = {\nid: item.id,\nicon: item.icon,\namount: item.amount,\n- amount_needed: item.amount_needed,\n-... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed an issue with non-recipe items added to lists crashing the GCF | 1 | fix | null |
217,922 | 27.11.2018 22:24:05 | -3,600 | 4bc01554cb8e0941f0fc4d1eaa68b17c20bba890 | fix: fixed false error in GCF | [
{
"change_type": "MODIFY",
"diff": "@@ -4,6 +4,7 @@ const functions = require('firebase-functions');\nconst admin = require('firebase-admin');\nadmin.initializeApp(functions.config().firebase);\nconst firestore = admin.firestore();\n+firestore.settings({timestampsInSnapshots: true});\nfunction getCompact(li... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed false error in GCF | 1 | fix | null |
217,922 | 27.11.2018 23:11:41 | -3,600 | dbd2fc4db50f8793fa4cd079882bebd40fff8dda | fix: last small fixes for beta compliance | [
{
"change_type": "MODIFY",
"diff": "{{'Ephemeral_tag' | translate}}\n</nz-tag>\n<nz-tag *ngIf=\"_list.public && !publicDisplay\" [nzColor]=\"'geekblue'\" nz-tooltip\n- [nzTitle]=\"'LIST_DETAILS.HELP.Public_list' | translate\">\n+ [nzTitle]=\"'LIST_DETAILS.Public_list_description' | translate\">\n{{'Public_l... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: last small fixes for beta compliance | 1 | fix | null |
217,922 | 27.11.2018 23:12:36 | -3,600 | 5989085ab15925e9006d78559755a2e525f96630 | chore: woops, forgot to reconnect preview on preview db | [
{
"change_type": "MODIFY",
"diff": "@@ -9,11 +9,11 @@ export const environment = {\nproduction: false,\nversion: version,\nfirebase: {\n- apiKey: 'AIzaSyCkrNPf7XlyuxQeqNtynvDFDnQ-XigG3WA',\n- authDomain: 'ffxiv-teamcraft-beta.firebaseapp.com',\n- databaseURL: 'https://ffxiv-teamcraft-beta.firebaseio.com',\n... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: woops, forgot to reconnect preview on preview db | 1 | chore | null |
679,913 | 27.11.2018 23:27:13 | 0 | 4a8295b739de77638fe3371065eb97cf0bf872dc | feature(vectors): update swizzle*() to support in-place updates | [
{
"change_type": "MODIFY",
"diff": "import { ReadonlyVec, Vec, VecOpV } from \"./api\";\n/**\n- * Places a re-ordered 2D version of vector `a` into `out`. MUST be\n- * separate instances. The given coord indices must be valid for `a`.\n- * No bounds checking.\n+ * Places a re-ordered 2D version of vector `a... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feature(vectors): update swizzle*() to support in-place updates | 1 | feature | vectors |
679,913 | 27.11.2018 23:28:04 | 0 | c3d1914139758a380eef0924e31a4fd08df4e3c2 | feat(vectors): add Vec2/3/4.iterator() | [
{
"change_type": "MODIFY",
"diff": "@@ -27,14 +27,14 @@ export class Vec2 extends AVec implements\n* interleaved etc.\n*\n* @param buf backing array\n- * @param n num vectors\n+ * @param num num vectors\n* @param start start index\n* @param cstride component stride\n* @param estride element stride\n*/\n- st... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(vectors): add Vec2/3/4.iterator() | 1 | feat | vectors |
679,913 | 27.11.2018 23:28:38 | 0 | 1fe9650d5303a40db5a9485dcbbabfa49eb9c03c | feat(vectors): add mapBuffer*() fns | [
{
"change_type": "MODIFY",
"diff": "@@ -51,6 +51,7 @@ export * from \"./maddn\";\nexport * from \"./mag\";\nexport * from \"./magsq\";\nexport * from \"./major\";\n+export * from \"./map\";\nexport * from \"./max\";\nexport * from \"./min\";\nexport * from \"./minor\";\n",
"new_path": "packages/vectors3... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(vectors): add mapBuffer*() fns | 1 | feat | vectors |
71,663 | 28.11.2018 00:03:11 | 28,800 | 01cc8a24b890fa5257678462ffb6696ad4b37ae6 | feat(aws-ecr): add an ECR Repository source CodePipeline Action. | [
{
"change_type": "MODIFY",
"diff": "\"@aws-cdk/aws-codebuild\": \"^0.18.1\",\n\"@aws-cdk/aws-codecommit\": \"^0.18.1\",\n\"@aws-cdk/aws-codedeploy\": \"^0.18.1\",\n+ \"@aws-cdk/aws-ecr\": \"^0.18.1\",\n\"@aws-cdk/aws-lambda\": \"^0.18.1\",\n\"@aws-cdk/aws-sns\": \"^0.18.1\",\n\"cdk-build-tools\": \"^0.18.1\... | TypeScript | Apache License 2.0 | aws/aws-cdk | feat(aws-ecr): add an ECR Repository source CodePipeline Action. (#1255) | 1 | feat | aws-ecr |
471,527 | 28.11.2018 00:19:45 | -3,600 | e5798e568c28f2eed3fed2754d0d6423305d30eb | fix(generator-open-wc): support lint and site build | [
{
"change_type": "MODIFY",
"diff": "{\n\"scripts\": {\n+ \"lint\": \"npm run lint:eslint\",\n\"lint:eslint\": \"eslint --ext .js,.html .\"\n},\n\"devDependencies\": {\n",
"new_path": "packages/generator-open-wc/generators/lint-eslint/templates/_package.json",
"old_path": "packages/generator-open-wc/... | JavaScript | MIT License | open-wc/open-wc | fix(generator-open-wc): support lint and site build | 1 | fix | generator-open-wc |
815,582 | 28.11.2018 07:27:05 | -32,400 | d126e514988b2ace0eb2be3e57b2570cebb17f7a | chore: Update dependency bigint:0.2.3
That in turn depends on primitives with renamed github org name. | [
{
"change_type": "MODIFY",
"diff": "@@ -136,14 +136,14 @@ dependencies = [\n[[package]]\nname = \"bigint\"\nversion = \"0.2.3\"\n-source = \"git+https://github.com/nervosnetwork/bigint#604d76957a768bc8a620288ebf0a9448fdcd5190\"\n+source = \"git+https://github.com/nervosnetwork/bigint#8ba1894cb7633ae2c345169... | Rust | MIT License | nervosnetwork/ckb | chore: Update dependency bigint:0.2.3
That in turn depends on primitives with renamed github org name. | 1 | chore | null |
217,922 | 28.11.2018 09:36:00 | -3,600 | 8d0d5a1efa6b76da31420df9fd19292596e354bd | feat: action tooltips | [
{
"change_type": "MODIFY",
"diff": "import { Injectable } from '@angular/core';\nimport { Observable } from 'rxjs';\n-import { HttpClient, HttpParams } from '@angular/common/http';\nimport { TranslateService } from '@ngx-translate/core';\n-import { map } from 'rxjs/operators';\n+import { XivapiEndpoint, Xiv... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: action tooltips | 1 | feat | null |
217,922 | 28.11.2018 10:01:54 | -3,600 | f0473e018474e827be25c39c47457e9a12dc8155 | fix: fixed an issue hiding the sidebar on mobile | [
{
"change_type": "MODIFY",
"diff": "font-size: 11px;\n}\n}\n+\n+ .sider {\n+ .ant-layout-sider-children {\n+ overflow: auto;\n+ }\n+ }\n}\n.menu-link, .menu-link:visited, .menu-link:focus {\n}\n}\n-.sider {\n- overflow: auto;\n-}\n-\n.flex-container {\n- height: 100%;\n+ min-height: 100%;\n}\n.social-button... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed an issue hiding the sidebar on mobile | 1 | fix | null |
504,004 | 28.11.2018 10:37:39 | 18,000 | b2237fc18a4c8916b255c86cca3fef5901c2123c | fix(CatalogTile): Fix to correctly position fading out of description text | [
{
"change_type": "MODIFY",
"diff": "height: @catalog-tile-pf-height;\nmargin: 0 15px @catalog-tile-pf-margin-bottom 0;\npadding: 15px;\n- position: relative;\nwidth: @catalog-tile-pf-width;\n&.featured {\n.catalog-tile-pf-body {\ndisplay: flex;\n+ flex: 1;\nflex-direction: column;\nmargin-top: 15px;\nmin-he... | TypeScript | MIT License | patternfly/patternfly-react | fix(CatalogTile): Fix to correctly position fading out of description text (#958) | 1 | fix | CatalogTile |
730,429 | 28.11.2018 10:45:48 | 18,000 | 4e78d509034f39671d6400b8bcc9af3b351f3c17 | feat(activity-share-thumbnail): use collab-ui spinner | [
{
"change_type": "MODIFY",
"diff": "@@ -44,49 +44,16 @@ exports[`ActivityShareThumbnail post component renders loaded thumbnail properly\n<div\nclassName=\"ciscospark-share-action-item shareActionItem\"\n>\n- <div\n- className=\"ciscospark-button-container buttonContainer\"\n- >\n- <button\n- aria-label=\"D... | JavaScript | MIT License | webex/react-widgets | feat(activity-share-thumbnail): use collab-ui spinner | 1 | feat | activity-share-thumbnail |
730,429 | 28.11.2018 11:11:33 | 18,000 | ebfb053295a1642ba494724815333264101c5466 | fix(widget-message): support for empty lastActivity | [
{
"change_type": "MODIFY",
"diff": "@@ -455,7 +455,7 @@ export class MessageWidget extends Component {\n} = props;\nif (has(event, 'data.bufferState.conversation') && event.data.bufferState.conversation === 'UNKNOWN') {\n// Mercury does not contain enough information about the conversation, refetch\n- const... | JavaScript | MIT License | webex/react-widgets | fix(widget-message): support for empty lastActivity | 1 | fix | widget-message |
730,429 | 28.11.2018 11:12:27 | 18,000 | dc78e6d5fae2023d8ff2af6553b5a5d65c5d1c89 | chore(presence-avatar): use specific prop types for collab-ui size | [
{
"change_type": "MODIFY",
"diff": "@@ -15,7 +15,7 @@ exports[`Avatar component when avatar is a self type renders with active presenc\nisDecrypting={false}\nisOverview={false}\nonClick={null}\n- size=\"40\"\n+ size={40}\nsrc={null}\ntheme={null}\ntitle=\"Test User\"\n@@ -39,7 +39,7 @@ exports[`Avatar compo... | JavaScript | MIT License | webex/react-widgets | chore(presence-avatar): use specific prop types for collab-ui size | 1 | chore | presence-avatar |
730,429 | 28.11.2018 11:13:10 | 18,000 | ef28352ed9c24b1de730c98004ad7d3b508d8cdf | chore(people-list): use number for avatar size | [
{
"change_type": "MODIFY",
"diff": "@@ -15,7 +15,7 @@ exports[`PeopleListItem component renders a local participant properly 1`] = `\n<Connect(PresenceAvatar)\navatarId=\"1\"\nname=\"Dr Dre\"\n- size=\"28\"\n+ size={28}\n/>\n</div>\n<div\n@@ -41,7 +41,7 @@ exports[`PeopleListItem component renders a local p... | JavaScript | MIT License | webex/react-widgets | chore(people-list): use number for avatar size | 1 | chore | people-list |
730,429 | 28.11.2018 11:13:39 | 18,000 | a7a1b5ca9700258ea314cd8e869a633ffa1e0ff0 | feat(widget-roster): use collab-ui spinner | [
{
"change_type": "MODIFY",
"diff": "@@ -4,9 +4,10 @@ import isEmail from 'validator/lib/isEmail';\nimport classNames from 'classnames';\nimport Icon, {ICONS} from '@ciscospark/react-component-icon';\nimport Button from '@ciscospark/react-component-button';\n-import Spinner from '@ciscospark/react-component-... | JavaScript | MIT License | webex/react-widgets | feat(widget-roster): use collab-ui spinner | 1 | feat | widget-roster |
791,834 | 28.11.2018 11:21:49 | 28,800 | e25e81596795594302e831929883c8ee6f0e5289 | report: fix pwa-optimized badge gauge | [
{
"change_type": "MODIFY",
"diff": "@@ -601,6 +601,10 @@ limitations under the License.\n.lh-gauge--pwa__wrapper:not([class*='lh-badged--']) .lh-gauge--pwa__na-line {\ndisplay: inline;\n}\n+ /* Just optimized. Same n/a line as no passing groups. */\n+ .lh-gauge--pwa__wrapper.lh-badged--pwa-optimized .lh-gau... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | report: fix pwa-optimized badge gauge (#6670) | 1 | report | null |
679,913 | 28.11.2018 11:41:53 | 0 | 63458c2c5bacb633daee4e9a2a96723ee7f224cd | feat(vectors): add proxied gvec(), update mapBuffer*() docs | [
{
"change_type": "ADD",
"diff": "+import { range } from \"@thi.ng/transducers/iter/range\";\n+import { map } from \"@thi.ng/transducers/xform/map\";\n+import { Vec } from \"./api\";\n+\n+/**\n+ * Wrapper for strided, arbitrary length vectors. Wraps given buffer in\n+ * ES6 `Proxy` with custom property gette... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(vectors): add proxied gvec(), update mapBuffer*() docs | 1 | feat | vectors |
71,663 | 28.11.2018 11:49:54 | 28,800 | 825e448a300211f91dbe8e64a579924c1867ef3f | feat(aws-codebuild): rename the Project methods for adding Actions to CodePipeline.
BREAKING CHANGE: `addBuildToPipeline` was renamed to `addToPipeline`
and `addTestToPipeline` was renamed to `addPipelineToTest` in order to align
with naming conventions.
Fixes | [
{
"change_type": "MODIFY",
"diff": "@@ -80,7 +80,7 @@ You can also add the Project to the Pipeline directly:\n```ts\n// equivalent to the code above:\n-const buildAction = project.addBuildToPipeline(buildStage, 'CodeBuild');\n+const buildAction = project.addToPipeline(buildStage, 'CodeBuild');\n```\nIn addi... | TypeScript | Apache License 2.0 | aws/aws-cdk | feat(aws-codebuild): rename the Project methods for adding Actions to CodePipeline. (#1254)
BREAKING CHANGE: `addBuildToPipeline` was renamed to `addToPipeline`
and `addTestToPipeline` was renamed to `addPipelineToTest` in order to align
with naming conventions.
Fixes #1211 | 1 | feat | aws-codebuild |
217,922 | 28.11.2018 12:31:40 | -3,600 | 2f4712139920e28c658eb3bd55ab13f3a14caa15 | fix: better loading management for lists page | [
{
"change_type": "MODIFY",
"diff": "@@ -2,7 +2,7 @@ import { Component } from '@angular/core';\nimport { ListsFacade } from '../../../modules/list/+state/lists.facade';\nimport { List } from '../../../modules/list/model/list';\nimport { combineLatest, concat, Observable, of } from 'rxjs';\n-import { debounc... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: better loading management for lists page | 1 | fix | null |
815,598 | 28.11.2018 13:15:27 | -28,800 | f59c0300400922527a64f41e8beb8c5e47c69a8f | doc: vm is no longer a submodule | [
{
"change_type": "MODIFY",
"diff": "@@ -85,10 +85,6 @@ brew install autoconf libtool\ngit clone https://github.com/nervosnetwork/ckb.git\ncd ckb\n-# get ckb-vm submodule\n-git submodule init\n-git submodule update\n-\n# build in release mode\ncargo build --release\n```\n",
"new_path": "README.md",
"... | Rust | MIT License | nervosnetwork/ckb | doc: vm is no longer a submodule (#32) | 1 | doc | null |
679,913 | 28.11.2018 17:31:55 | 0 | 6cb3b92bf7d5b9f20ff7b9c12eef512f272b5d99 | feat(vectors): add IVector interface impls for gvec() | [
{
"change_type": "MODIFY",
"diff": "-import { ILength, ICopy, IEmpty, IEqualsDelta } from \"@thi.ng/api/api\";\n+import {\n+ ICopy,\n+ IEmpty,\n+ IEqualsDelta,\n+ ILength,\n+} from \"@thi.ng/api/api\";\nexport interface Vec extends\nIterable<number>,\n",
"new_path": "packages/vectors3/src/api.ts",
"... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(vectors): add IVector interface impls for gvec() | 1 | feat | vectors |
679,913 | 28.11.2018 17:33:12 | 0 | ea6bafaf8224d5f7cac961367552a87d8d5ee7a7 | feat(malloc): expose SIZEOF, add wrap() | [
{
"change_type": "MODIFY",
"diff": "@@ -12,6 +12,18 @@ export const enum Type {\nF64\n};\n+export const SIZEOF = {\n+ [Type.U8]: 1,\n+ [Type.U8C]: 1,\n+ [Type.I8]: 1,\n+ [Type.U16]: 2,\n+ [Type.I16]: 2,\n+ [Type.U32]: 4,\n+ [Type.I32]: 4,\n+ [Type.F32]: 4,\n+ [Type.F64]: 8,\n+};\n+\nexport interface MemBloc... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(malloc): expose SIZEOF, add wrap() | 1 | feat | malloc |
217,922 | 28.11.2018 17:45:51 | -3,600 | 894bfd9ecba439ad0590f07b7a956256e35ca204 | chore: woops again | [
{
"change_type": "MODIFY",
"diff": "@@ -9,11 +9,12 @@ export const environment = {\nproduction: false,\nversion: version,\nfirebase: {\n- apiKey: 'AIzaSyCkrNPf7XlyuxQeqNtynvDFDnQ-XigG3WA',\n- authDomain: 'ffxiv-teamcraft-beta.firebaseapp.com',\n- databaseURL: 'https://ffxiv-teamcraft-beta.firebaseio.com',\n... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: woops again | 1 | chore | null |
217,922 | 28.11.2018 17:57:15 | -3,600 | 09e33c3900d53818274c64309df73c6de93ec7ca | style: tried to fix button positions inside simulator, not done yet but cleanup done | [
{
"change_type": "MODIFY",
"diff": "</div>\n<nz-collapse>\n<nz-collapse-panel [nzHeader]=\"'SIMULATOR.Configuration' | translate\" [nzActive]=\"custom\">\n- <div nz-row [nzGutter]=\"16\">\n- <div nz-col [nzXs]=\"24\" [nzMd]=\"custom?12:8\">\n+ <div fxLayout=\"row wrap\" fxLayoutGap=\"16px\" fxLayoutAlign=\"... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | style: tried to fix button positions inside simulator, not done yet but cleanup done | 1 | style | null |
217,927 | 28.11.2018 17:59:56 | 18,000 | 7c54ff2d89cfc9b77d67ad12f049e6aa167fd7c5 | refactor: align rotation configuration buttons
Reorganizes the configuration panels so that their apply buttons all
line up nicely. Also makes some minor changes to various spacing and
fixes the missing translation on the "New rotation" button. | [
{
"change_type": "MODIFY",
"diff": "<h2>{{'SIMULATOR.Rotations' | translate}}</h2>\n<div class=\"toolbar\" fxLayout=\"row\" fxLayoutGap=\"5px\">\n- <button nz-button [nzType]=\"'primary'\" [nzShape]=\"'circle'\" nzSize=\"small\" nz-tooltip\n- [nzTitle]=\"'SIMULATOR.New_rotation'\" (click)=\"newRotation()\">... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | refactor: align rotation configuration buttons
Reorganizes the configuration panels so that their apply buttons all
line up nicely. Also makes some minor changes to various spacing and
fixes the missing translation on the "New rotation" button. | 1 | refactor | null |
679,913 | 28.11.2018 18:13:53 | 0 | c31ce8adc9b8249db8d0a21270f61f0bdfa6b60e | refactor(vector-pools): various minor updates & fixes | [
{
"change_type": "MODIFY",
"diff": "@@ -25,7 +25,7 @@ export abstract class AVecList<T extends IVector<any>> {\nestride = size,\nstart = 0) {\n- this.buffer = buffer;\n+ this.buffer = buffer || new Float32Array(size * capacity);\nthis.size = size;\nthis.factory = factory;\nthis.cstride = cstride;\n",
"n... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(vector-pools): various minor updates & fixes | 1 | refactor | vector-pools |
815,575 | 28.11.2018 18:33:23 | -28,800 | 2494aa7889d106fa1c0e080540840140d83b2a30 | chore: add `make stats` for counting lines of code | [
{
"change_type": "MODIFY",
"diff": "@@ -33,6 +33,11 @@ info:\npwd\nenv\n+# For counting lines of code\n+stats:\n+ @cargo count --version || cargo +nightly install --git https://github.com/kbknapp/cargo-count\n+ @cargo count --separator , --unsafe-statistics\n+\n.PHONY: build build-integration-test\n-.PHONY:... | Rust | MIT License | nervosnetwork/ckb | chore: add `make stats` for counting lines of code (#37) | 1 | chore | null |
217,922 | 28.11.2018 20:55:07 | -3,600 | a2780f8c26054c64b9d2cf005be2e97a87d15438 | fix: fixed an issue with alarms not ringing properly | [
{
"change_type": "MODIFY",
"diff": "@@ -32,7 +32,7 @@ export class AlarmBellService {\nreturn alarms.filter(alarm => {\nconst lastPlayed = this.getLastPlayed(alarm);\n// Ceiling on /6 so precision is 1/10\n- const timeBeforePlay = Math.ceil(this.alarmsFacade.getMinutesBefore(date, this.alarmsFacade.getNextS... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed an issue with alarms not ringing properly | 1 | fix | null |
217,922 | 28.11.2018 21:36:46 | -3,600 | 9691eec650da2031c67bcf97cee05cdea7972ba6 | fix: various fixes to the alarm styles | [
{
"change_type": "MODIFY",
"diff": "@@ -68,11 +68,14 @@ export class AlarmBellService {\n}\npublic notify(alarm: Alarm): void {\n- const aetheryteName = this.i18n.getName(this.localizedData.getPlace(alarm.aetheryte.nameid));\n+ let aetheryteName;\n+ if (alarm.aetheryte) {\n+ aetheryteName = this.i18n.getNam... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: various fixes to the alarm styles | 1 | fix | null |
815,575 | 28.11.2018 23:39:48 | -28,800 | 1ca309052e7c840a2c8c342315baedace57ba3e8 | chore: add `make security-audit` to audit crates with security vulnerabilities | [
{
"change_type": "MODIFY",
"diff": "@@ -38,6 +38,12 @@ stats:\n@cargo count --version || cargo +nightly install --git https://github.com/kbknapp/cargo-count\n@cargo count --separator , --unsafe-statistics\n+# Use cargo-audit to audit Cargo.lock for crates with security vulnerabilities\n+# expecting to see \... | Rust | MIT License | nervosnetwork/ckb | chore: add `make security-audit` to audit crates with security vulnerabilities (#38) | 1 | chore | null |
71,663 | 28.11.2018 23:55:34 | 28,800 | a2093ca2f8d49063c0913d8612ccac5ea0b5d4f5 | chore(app-delivery): fix for renamed CodeBuild methods that add to CodePipeline. | [
{
"change_type": "MODIFY",
"diff": "@@ -61,7 +61,7 @@ const project = new codebuild.PipelineProject(pipelineStack, 'CodeBuild', {\n*/\n});\nconst buildStage = pipeline.addStage('build');\n-const buildAction = project.addBuildToPipeline(buildStage, 'CodeBuild');\n+const buildAction = project.addToPipeline(bu... | TypeScript | Apache License 2.0 | aws/aws-cdk | chore(app-delivery): fix for renamed CodeBuild methods that add to CodePipeline. (#1261) | 1 | chore | app-delivery |
71,598 | 29.11.2018 01:29:37 | 28,800 | 082459ef4b26f7631924181f1c0b61d9ebf822aa | chore: fix typos in documentation | [
{
"change_type": "MODIFY",
"diff": "@@ -71,7 +71,7 @@ to instantiate the ``StorageLayer`` construct.\nWhen you initialize a construct,\nadd the construct to the construct tree by specifying the parent construct as the first initializer parameter,\nan identifier for the construct as the second parameter,\n-a... | TypeScript | Apache License 2.0 | aws/aws-cdk | chore: fix typos in documentation (#1263) | 1 | chore | null |
217,922 | 29.11.2018 08:16:25 | -3,600 | f01e5e3e8ffbb11ac47897e11343ea4112bc1d3c | chore: renamed # of craft to collestable flag | [
{
"change_type": "MODIFY",
"diff": "<label nz-checkbox class=\"select-box\" [(ngModel)]=\"item.selected\"\n(ngModelChange)=\"updateAllSelected(results)\"></label>\n<ng-template #inputBox>\n- <nz-input-group [nzAddOnBefore]=\"addCrafts\" [nzCompact]=\"true\" class=\"amount-input\">\n+ <nz-input-group [nzAddO... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: renamed # of craft to collestable flag | 1 | chore | null |
217,922 | 29.11.2018 08:16:58 | -3,600 | f0eb38af56a7b9b183f8c42f5d3b25a0a6f3bda8 | style: first pass for mobile-friendly simulator | [
{
"change_type": "MODIFY",
"diff": "+@import '../../../../../styles';\n+\n.custom-config {\nmargin-left: 42px;\n+ @media @mobile {\n+ margin-left: 0;\n+ }\n}\n",
"new_path": "apps/client/src/app/pages/simulator/components/custom-simulator-page/custom-simulator-page.component.less",
"old_path": "apps... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | style: first pass for mobile-friendly simulator | 1 | style | null |
217,922 | 29.11.2018 09:12:36 | -3,600 | 01b278a050a2a248b0c37fc36e52aa5343fb7989 | chore: fixed issues reported in beta channel | [
{
"change_type": "MODIFY",
"diff": "@@ -26,10 +26,17 @@ export class AlarmBellService {\n}\nprivate initBell(): void {\n- combineLatest(this.eorzeanTime.getEorzeanTime(), this.alarmsFacade.allAlarms$)\n+ combineLatest(this.eorzeanTime.getEorzeanTime(), this.alarmsFacade.allAlarms$, this.alarmsFacade.allGrou... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: fixed issues reported in beta channel | 1 | chore | null |
217,922 | 29.11.2018 09:59:51 | -3,600 | d7b0993ee98aaf72f92a84d403698faf0e3ef19c | feat: total price in trades popup | [
{
"change_type": "MODIFY",
"diff": "<nz-card *ngFor=\"let tradeSource of item.tradeSources\" fxFlex=\"1 1 auto\" fxLayoutGap=\"5px\">\n<nz-card-meta [nzTitle]=\"tradeSource.shopName\">\n</nz-card-meta>\n- <div *ngFor=\"let trade of tradeSource.trades\" fxLayout=\"row\" fxLayoutGap=\"5px\" fxLayoutAlign=\"ce... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: total price in trades popup | 1 | feat | null |
217,922 | 29.11.2018 10:50:27 | -3,600 | 765385b562a0f9ae292b3b11db4c29e63b4e6a65 | feat: "collapse when done" layout option | [
{
"change_type": "MODIFY",
"diff": "@@ -70,7 +70,8 @@ export class LayoutsFacade {\nzoneBreakdown: row.zoneBreakdown,\ntiers: row.tiers,\nfilterChain: row.filter.name,\n- hideIfEmpty: row.hideIfEmpty\n+ hideIfEmpty: row.hideIfEmpty,\n+ collapsed: row.collapseIfDone ? orderedAccepted.reduce((collapse, row) =... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: "collapse when done" layout option | 1 | feat | null |
217,922 | 29.11.2018 11:21:01 | -3,600 | bd5fe350acfcfe1448e3a94a80c1e56299e48db0 | feat: warning for missing masterbook with easy addition to profile | [
{
"change_type": "MODIFY",
"diff": "</li>\n</ul>\n</nz-dropdown>\n+ <ng-container *ngIf=\"missingBooks$ | async as missingBooks\">\n+ <button nz-button nzGhost nzSize=\"small\" nzShape=\"circle\" nzType=\"danger\" *ngIf=\"missingBooks.length > 0\"\n+ class=\"missing-masterbooks\"\n+ nz-tooltip [nzTitle]=\"'... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: warning for missing masterbook with easy addition to profile | 1 | feat | null |
730,429 | 29.11.2018 11:33:04 | 18,000 | 6d546242769c4606191b27fa977369e628f4f310 | feat(activity-item): add support for isAdditional style | [
{
"change_type": "MODIFY",
"diff": "@@ -13,6 +13,7 @@ exports[`ActivityItem post component is self renders properly 1`] = `\ncontent=\"\"\ndisplayName=\"Test Activity Content\"\nid=\"test-123-123-123-123\"\n+ isAdditional={false}\nisSelf={true}\nname=\"Test User\"\nonActivityDelete={[MockFunction]}\n@@ -36,... | JavaScript | MIT License | webex/react-widgets | feat(activity-item): add support for isAdditional style | 1 | feat | activity-item |
730,429 | 29.11.2018 11:34:40 | 18,000 | 7036fc2e27edf057e44451f1fb2b1af10aa16d8b | feat(activity-item-base): use collab-ui icons and styling | [
{
"change_type": "MODIFY",
"diff": "@@ -46,11 +46,18 @@ exports[`ActivityItemBase component renders properly 1`] = `\n<div\nclassName=\"activity-post-action activityPostAction\"\n>\n- <ActivityPostAction\n- iconColor=\"black\"\n- iconType=\"ICON_TYPE_FLAGGED_OUTLINE\"\n+ <Icon\n+ ariaLabel=\"Flag for follow... | JavaScript | MIT License | webex/react-widgets | feat(activity-item-base): use collab-ui icons and styling | 1 | feat | activity-item-base |
730,429 | 29.11.2018 11:35:50 | 18,000 | e3324f9100a1cab3ed34e4090ba0182475411b79 | feat(activity-list): add padding at bottom of list | [
{
"change_type": "MODIFY",
"diff": "exports[`ActivityList component renders properly 1`] = `\n<div\n- className=\"ciscospark-activity-list\"\n+ className=\"ciscospark-activity-list activityList\"\n>\n<ActivityItem\nactivity={\n",
"new_path": "packages/node_modules/@ciscospark/react-component-activity-li... | JavaScript | MIT License | webex/react-widgets | feat(activity-list): add padding at bottom of list | 1 | feat | activity-list |
730,429 | 29.11.2018 11:36:20 | 18,000 | 4b1eb4c550e903f8b1c15c28e0b33c7e27ff6f59 | style(widget-message): remove top padding for indicators | [
{
"change_type": "MODIFY",
"diff": ".indicators {\ndisplay: flex;\nmin-height: 40px;\n- padding: 46px 0 20px;\n+ padding-bottom: 20px;\nfont-size: 17px;\nwhite-space: nowrap;\njustify-content: center;\n",
"new_path": "packages/node_modules/@ciscospark/widget-message/src/styles.css",
"old_path": "pac... | JavaScript | MIT License | webex/react-widgets | style(widget-message): remove top padding for indicators | 1 | style | widget-message |
217,922 | 29.11.2018 12:00:48 | -3,600 | ddf4914f2ce0a4f13b0fc6494c1e46e15ac1cbb8 | feat: ability to change item amount from list details view | [
{
"change_type": "ADD",
"diff": "+import { NgModule } from '@angular/core';\n+import { CommonModule } from '@angular/common';\n+import { NumberQuestionPopupComponent } from './number-question-popup/number-question-popup.component';\n+import { TranslateModule } from '@ngx-translate/core';\n+import { NgZorroA... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: ability to change item amount from list details view | 1 | feat | null |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.