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
815,745
09.07.2019 16:01:23
-10,800
a90e3f1a81cd1ef3ef9b627e21972923314f5877
fix: update peer dependencies to start from v8
[ { "change_type": "MODIFY", "diff": "\"dropdown\",\n\"multiselect\",\n\"autocomplete\",\n- \"angular2\",\n- \"angular4\"\n+ \"angular2\"\n],\n\"peerDependencies\": {\n- \"@angular/common\": \">=6.0.0 <9.0.0\",\n- \"@angular/core\": \">=6.0.0 <9.0.0\",\n- \"@angular/forms\": \">=6.0.0 <9.0.0\"\n+ \"@angular/c...
TypeScript
MIT License
ng-select/ng-select
fix: update peer dependencies to start from v8
1
fix
null
791,704
09.07.2019 16:03:24
25,200
4c658d272705cc68f1b55a898a2c7fb5f881b57c
tests(smokehouse): assert on expected array length
[ { "change_type": "MODIFY", "diff": "@@ -140,6 +140,9 @@ module.exports = [\ntransferSize: 53181,\nresourceSize: 52997,\n},\n+ {\n+ url: 'http://localhost:10200/favicon.ico',\n+ },\n],\n},\n},\n", "new_path": "lighthouse-cli/test/smokehouse/byte-efficiency/expectations.js", "old_path": "lighthouse-cl...
JavaScript
Apache License 2.0
googlechrome/lighthouse
tests(smokehouse): assert on expected array length (#9292) Co-Authored-By: Brendan Kenny <bckenny@gmail.com>
1
tests
smokehouse
815,595
09.07.2019 16:07:52
-28,800
cbd89c45ec0fe79d829a07c498c5f7570d3a780a
feat: Aggregate into insert_valid_header * Move and Refactor `Synchronizer::insert_header_view` to `SyncSharedState::insert_valid_header` * Put several updating logic together into `SyncSharedState::insert_valid_header`: - Update shared best known header - Update peer's best known header - Update epoches map - Update h...
[ { "change_type": "MODIFY", "diff": "@@ -27,7 +27,7 @@ mod tests {\n]\n}\n- fn assert_(includes: Vec<BlockStatus>, target: BlockStatus) {\n+ fn assert_contain(includes: Vec<BlockStatus>, target: BlockStatus) {\nlet excludes: Vec<BlockStatus> = all()\n.into_iter()\n.filter(|s1| !includes.iter().any(|s2| s2 ==...
Rust
MIT License
nervosnetwork/ckb
feat: Aggregate into insert_valid_header * Move and Refactor `Synchronizer::insert_header_view` to `SyncSharedState::insert_valid_header` * Put several updating logic together into `SyncSharedState::insert_valid_header`: - Update shared best known header - Update peer's best known header - Update epoches map -...
1
feat
null
679,913
09.07.2019 16:11:48
-3,600
119f2577b8b1eb2a725e86d2a83e30e4e6b55f9e
feat(shader-ast): support number casts from bools
[ { "change_type": "MODIFY", "diff": "@@ -238,7 +238,7 @@ export type Numeric = number | FloatTerm | IntTerm | UintTerm;\nexport type NumericF = number | FloatTerm;\nexport type NumericI = number | IntTerm;\nexport type NumericU = number | UintTerm;\n-export type NumericB = boolean | Numeric;\n+export type Nu...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(shader-ast): support number casts from bools
1
feat
shader-ast
679,913
09.07.2019 16:13:23
-3,600
90bb850b41107e47fbb667f7d5a8ad4a6d9b4a41
feat(shader-ast-js): add uvec/bvec support, add bool => float casting
[ { "change_type": "MODIFY", "diff": "@@ -1137,7 +1137,11 @@ export const targetJS = () => {\ncase \"bool\":\nreturn isBoolean(v) ? String(v) : `!!(${emit(v)})`;\ncase \"float\":\n- return isNumber(v) ? String(v) : emit(v);\n+ return isNumber(v)\n+ ? String(v)\n+ : isBool(v)\n+ ? `(${emit(v)} & 1)`\n+ : emit(...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(shader-ast-js): add uvec/bvec support, add bool => float casting
1
feat
shader-ast-js
815,577
09.07.2019 16:19:23
-28,800
f26a2243fe0a79f5e23dc89fb067e9e5022e56ec
feat: make ibd time range configurable
[ { "change_type": "MODIFY", "diff": "@@ -59,10 +59,13 @@ pub fn run(args: RunArgs, version: Version) -> Result<(), ExitCode> {\n}\n};\n+ let sync_shared_state = Arc::new(SyncSharedState::new(\n+ shared.clone(),\n+ args.config.network.max_tip_age,\n+ ));\nlet network_state = Arc::new(\nNetworkState::from_conf...
Rust
MIT License
nervosnetwork/ckb
feat: make ibd time range configurable
1
feat
null
679,913
09.07.2019 16:22:59
-3,600
1aad4c2d063b2c066d36458bb7985734a8e19427
minor(shader-ast): update bool casts
[ { "change_type": "MODIFY", "diff": "@@ -336,13 +336,13 @@ export const lit = <T extends Type>(\nexport const bool = (x: NumericB) => lit(\"bool\", isNumber(x) ? !!x : x);\nexport const float = (x: NumericB) =>\n- lit(\"float\", isBoolean(x) ? (x ? 1 : 0) : x);\n+ lit(\"float\", isBoolean(x) ? (<any>x) & 1 :...
TypeScript
Apache License 2.0
thi-ng/umbrella
minor(shader-ast): update bool casts
1
minor
shader-ast
679,913
09.07.2019 16:27:11
-3,600
b4751c24764c2fcba01b202e491b7423c738ffc9
feat(examples): make webgl-shadertoy compatible with webgl v1
[ { "change_type": "MODIFY", "diff": "import {\n$xy,\nadd,\n- bitand,\ndistance,\n+ eq,\nfloat,\nFloatSym,\nfract,\n@@ -40,7 +40,7 @@ const mainImage: MainImageFn = (gl, unis) => {\nlet col: Vec3Sym;\n// Inline function to create ring pattern with center at `p`\n- const rings = (p: Vec2Term, speed = 0.25, fre...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(examples): make webgl-shadertoy compatible with webgl v1
1
feat
examples
711,597
09.07.2019 16:31:15
-7,200
420793d0b55b53603360b1c9bdc0906bd22e0740
feat(admin-ui): Implement editing of ProductOptions
[ { "change_type": "MODIFY", "diff": "@@ -26,6 +26,7 @@ import { ProductListComponent } from './components/product-list/product-list.com\nimport { ProductSearchInputComponent } from './components/product-search-input/product-search-input.component';\nimport { ProductVariantsListComponent } from './components/...
TypeScript
MIT License
vendure-ecommerce/vendure
feat(admin-ui): Implement editing of ProductOptions
1
feat
admin-ui
269,479
09.07.2019 16:37:18
-7,200
00cba176963d1344073c957f90504feaf992cf99
chore: check for unnecessary packages during CI to prevent need for manual adjustments such as in
[ { "change_type": "MODIFY", "diff": "@@ -36,8 +36,14 @@ lint:\n./bin/misspell -error **/*\n.PHONY: lint\n+# Clean go.mod\n+go-mod-tidy:\n+ go mod tidy -v\n+ git diff-index --quiet HEAD || echo \"Go mod tidy failed. Please run it locally\"\n+.PHONY: go-mod-tidy\n+\n# Run all the tests and code checks\n-ci: bu...
Go
MIT License
goreleaser/goreleaser
chore: check for unnecessary packages during CI (#1075) - to prevent need for manual adjustments such as in https://github.com/goreleaser/goreleaser/commit/c338cfb
1
chore
null
127,975
09.07.2019 16:37:18
-10,800
ac3de5c90b436232b9a71b2bcd570c40defc42a5
refactor: unify header between different scoreboards
[ { "change_type": "MODIFY", "diff": "@@ -4,8 +4,9 @@ import styled from '@emotion/styled';\nimport { colors } from '@heathmont/sportsbet-tokens';\nimport { spacing } from '@heathmont/sportsbet-utils';\nimport { FootballSelections } from './football-selections';\n-import { Market } from '../market';\n+import ...
TypeScript
MIT License
coingaming/moon-design
refactor: unify header between different scoreboards
1
refactor
null
711,597
09.07.2019 17:09:24
-7,200
c06d77d132774dedc5166be4a119fe055d25efd7
refactor(core): Add property resolver for Product.optionGroups
[ { "change_type": "MODIFY", "diff": "@@ -350,16 +350,16 @@ Array [\n\"id\": \"T_4\",\n\"name\": \"Artists Smock\",\n\"optionGroups\": Array [\n- Object {\n- \"code\": \"artists-smock-colour\",\n- \"id\": \"T_4\",\n- \"name\": \"colour\",\n- },\nObject {\n\"code\": \"artists-smock-size\",\n\"id\": \"T_3\",\n\...
TypeScript
MIT License
vendure-ecommerce/vendure
refactor(core): Add property resolver for Product.optionGroups
1
refactor
core
127,975
09.07.2019 17:44:31
-10,800
39c258a9f170ba6710fafa8575030d99ad06caa3
refactor: unify selections between different scoreboards
[ { "change_type": "MODIFY", "diff": "export * from './myBetContainer';\nexport * from './scoreboards/scoreboard';\n-export * from './scoreboards/football/football-scoreboard';\n-export * from './scoreboards/tennis/tennis-scoreboard';\n+export * from './scoreboards/football';\n+export * from './scoreboards/te...
TypeScript
MIT License
coingaming/moon-design
refactor: unify selections between different scoreboards
1
refactor
null
217,922
09.07.2019 18:32:52
-7,200
bd2a73655cca4587cdaaa1f679338a3fc23aa10c
chore: small fix for "delete group with alarms" button
[ { "change_type": "MODIFY", "diff": "</div>\n</nz-collapse-panel>\n<ng-template #panelTitle>\n- <div class=\"panel-title\" fxLayout=\"row wrap\" fxLayoutAlign=\"flex-start center\">\n+ <div class=\"panel-title\" fxLayout=\"row wrap\" fxLayoutAlign=\"flex-start center\" fxLayoutGap=\"5px\">\n<div class=\"grou...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: small fix for "delete group with alarms" button
1
chore
null
815,595
09.07.2019 19:14:46
-28,800
492e311e09f6c872c71b88b218be5dbc293c5bbd
fix: Correct return value of insert_new_block
[ { "change_type": "MODIFY", "diff": "@@ -1110,9 +1110,10 @@ impl<CS: ChainStore> SyncSharedState<CS> {\n}\n// Attempt to accept the given block if its parent already exist in database\n- if let Err(err) = self.accept_block(chain, pi, Arc::clone(&block)) {\n- debug!(\"accept block {:?} error {:?}\", block, er...
Rust
MIT License
nervosnetwork/ckb
fix: Correct return value of insert_new_block
1
fix
null
217,922
09.07.2019 21:32:48
-7,200
929c64274168b4c022b7cc63c766b99e2af126bc
chore: fixes for analytics list events reports
[ { "change_type": "MODIFY", "diff": "@@ -176,12 +176,12 @@ export class ListsFacade {\naddList(list: List): void {\nthis.store.dispatch(new CreateList(list));\n- gtag('send', 'event', 'List', 'creation');\n+ gtag('event', 'List', 'creation');\n}\ndeleteList(key: string): void {\nthis.store.dispatch(new Delet...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: fixes for analytics list events reports
1
chore
null
217,922
09.07.2019 21:54:41
-7,200
3566c72a43428a8f39af11a6fdbf2f66ebfb24fe
feat(patreon): added 3 new patreon supporters
[ { "change_type": "MODIFY", "diff": "'Qih \"Kweh\" Mewrilah',\n'Jihn Molkoh',\n'Toi Toi Toi',\n- 'Walnut Bread Trading Co'\n+ 'Walnut Bread Trading Co',\n+ 'Kouya Hoshino',\n+ 'Sahjah Majime',\n+ 'Uzari Azari'\n];\nconst randomPatron = patrons[Math.floor(Math.random() * patrons.length)];\ndocument.getElement...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(patreon): added 3 new patreon supporters
1
feat
patreon
531,793
09.07.2019 22:08:02
-3,600
e678928017eb8017188fa3983a7a2cf87444da5d
feat(demo): generate alerts with long label names
[ { "change_type": "MODIFY", "diff": "@@ -321,7 +321,8 @@ class LongNameAlerts(AlertGenerator):\nreturn [newAlert(\nself._labels(instance=\"server{}\".format(i), cluster=cluster,\nseverity=\"info\", job=\"textfile_exporter\",\n- region=\"CN\"),\n+ region=\"CN\",\n+ thisIsAVeryLongLabelNameToTestLabelTruncatio...
TypeScript
Apache License 2.0
prymitive/karma
feat(demo): generate alerts with long label names
1
feat
demo
531,793
09.07.2019 22:08:31
-3,600
70e69fda093478b69f3b74e87e9beff4ff3f0a89
feat(ui): add a modal with labels overview Fixes
[ { "change_type": "MODIFY", "diff": "@@ -53,7 +53,7 @@ labels:\ncolor: \"#ff220c\"\nlog:\nconfig: false\n- level: warning\n+ level: debug\nsentry:\nprivate: https://84a9ef37a6ed4fdb80e9ea2310d1ed26:8c6ee6f0ab02406482ff4b4e824e2c27@sentry.io/1279017\npublic: https://84a9ef37a6ed4fdb80e9ea2310d1ed26@sentry.io/...
TypeScript
Apache License 2.0
prymitive/karma
feat(ui): add a modal with labels overview Fixes #766
1
feat
ui
104,927
09.07.2019 22:32:26
-3,600
ef60bd7b8548b2feb438395ebaef9e3b08a5cf30
fix: link mixin
[ { "change_type": "MODIFY", "diff": "@@ -6,7 +6,7 @@ export default {\ncomputed: {\ntagType() {\n// if to is used and not href then user wanted a router-link\n- return this.$attrs.to && !this.$attrs.href ? 'router-link' : 'a';\n+ return this.to && !this.href ? 'router-link' : 'a';\n},\n},\n};\n", "new_pa...
JavaScript
Apache License 2.0
carbon-design-system/carbon-components-vue
fix: link mixin
1
fix
null
217,922
09.07.2019 22:54:42
-7,200
9bc1aa2b76117ba4da29f41c2c7b061be465cd72
feat(settings): added a setting to always default leves exp as HQ delivery
[ { "change_type": "MODIFY", "diff": "[(ngModel)]=\"settings.disableCrossWorld\">{{'SETTINGS.Disable_cross_world_prices' | translate}}</label>\n</nz-form-control>\n</nz-form-item>\n+ <nz-form-item class=\"empty-label\">\n+ <nz-form-label [nzSpan]=\"5\"></nz-form-label>\n+ <nz-form-control [nzSpan]=\"12\">\n+ ...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(settings): added a setting to always default leves exp as HQ delivery
1
feat
settings
531,793
09.07.2019 23:18:47
-3,600
0b7386f7773335701889a53bbe681d9fdbc3b47c
chore(ui): show navbar button indicator on hover
[ { "change_type": "MODIFY", "diff": "@@ -52,7 +52,7 @@ const MainModal = observer(\n>\n<TooltipWrapper title=\"Settings\">\n<span\n- className=\"nav-link cursor-pointer\"\n+ className=\"nav-link components-navbar-button cursor-pointer\"\nonClick={this.toggle.toggle}\n>\n<FontAwesomeIcon icon={faCog} />\n", ...
TypeScript
Apache License 2.0
prymitive/karma
chore(ui): show navbar button indicator on hover
1
chore
ui
217,922
09.07.2019 23:31:10
-7,200
09fd8bbaa0f01f8c1272de656b83fd0582e82bc8
chore: reverted a small change on levequests job selection
[ { "change_type": "MODIFY", "diff": "@@ -81,7 +81,7 @@ export class LevequestsComponent extends TeamcraftComponent implements OnInit {\nprivate dataService: DataService, private lazyData: LazyDataService,\nprivate auth: AuthFacade, private settings: SettingsService) {\nsuper();\n- this.jobList = this.gt.getJ...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: reverted a small change on levequests job selection
1
chore
null
135,452
09.07.2019 23:41:13
-7,200
a89c1ba8292d4ca8be4e06d60cc00ce21ddd960b
chore: add devcontainer setup
[ { "change_type": "ADD", "diff": "+{\n+ \"name\": \"commitlint-dev\",\n+ \"dockerComposeFile\": [\"../docker-compose.yml\"],\n+ \"service\": \"commitlint\",\n+ \"workspaceFolder\": \"/root/repo\",\n+ \"shutdownAction\": \"stopCompose\",\n+ \"extensions\": [\n+ \"editorconfig.editorconfig\",\n+ \"ms-vslivesha...
TypeScript
MIT License
conventional-changelog/commitlint
chore: add devcontainer setup
1
chore
null
103,468
10.07.2019 08:57:47
-7,200
44cd98db96df5ec0b34daaacca003cf9e27e1439
docs: add docs about custom Fonts
[ { "change_type": "ADD", "diff": "+---\n+title: Fonts\n+---\n+\n+# Fonts\n+\n+## Installing custom fonts\n+\n+The easiest way to install custom fonts to your RN project is do as follow:\n+\n+ 1. Define path to asssets directory with fonts in project '`package.json`'\n+\n+ Example:\n+\n+ ```js\n+ ...\n+ \"rnp...
TypeScript
MIT License
callstack/react-native-paper
docs: add docs about custom Fonts (#1151)
1
docs
null
401,147
10.07.2019 09:11:25
-19,080
20329b9a49026b3a5dc32eb9da95b5c34c3a1aeb
refactor: refactor Label component to take size, color & font weight affects:
[ { "change_type": "MODIFY", "diff": "import { defaultTheme } from '@medly-components/theme';\nimport { css, oppositePositionalspacing, styled } from '@medly-components/utils';\n-import { Props } from './types';\n+import { Props, StyledProps } from './types';\nconst asterisk = () => css`\n::after {\n@@ -13,9 ...
TypeScript
MIT License
medly/medly-components
refactor: refactor Label component to take size, color & font weight affects: @medly-components/core, @medly-components/theme
1
refactor
null
104,827
10.07.2019 09:13:03
18,000
12b88c7260bdc36d9e47bf2199f84624417b9b4a
chore(hero): add export
[ { "change_type": "ADD", "diff": "+export default from './Hero';\n", "new_path": "src/components/Hero/index.js", "old_path": null }, { "change_type": "ADD", "diff": "+export default from './SecondaryNavigator';\n", "new_path": "src/components/SecondaryNavigator/index.js", "old_pat...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
chore(hero): add export
1
chore
hero
401,147
10.07.2019 09:33:25
-19,080
b780cd1cfbb1785ae8034486570b27ea7166d79d
fix: fixed onOuter prop warning issue affects:
[ { "change_type": "MODIFY", "diff": "@@ -6,6 +6,7 @@ import { PopoverProps, PopoverWrapperProps } from './types';\nexport const PopoverWrapper: React.SFC<PopoverWrapperProps> & WithStyle = props => {\nconst wrapperRef = useRef(null);\nconst [popoverState, setPopoverState] = useState(false);\n+ const { onOute...
TypeScript
MIT License
medly/medly-components
fix: fixed onOuter prop warning issue affects: @medly-components/core
1
fix
null
504,004
10.07.2019 09:47:43
14,400
9cdc85d62eee6b86714f3965e240559525db919c
fix(ApplicationLauncher): Allow custom icon for application launcher toggle
[ { "change_type": "MODIFY", "diff": "@@ -8,6 +8,7 @@ Note: Application launcher is built on Dropdown, for extended API go to [`Dropdo\nTo add a tooltip, use the `tooltip` prop and optionally add more tooltip props by using `tooltipProps`. For more tooltip information go to [`Tooltip`](/components/tooltip/).\...
TypeScript
MIT License
patternfly/patternfly-react
fix(ApplicationLauncher): Allow custom icon for application launcher toggle (#2492)
1
fix
ApplicationLauncher
902,122
10.07.2019 10:01:32
0
208f6a28f6a949a76c0de8163f2bd60c11975c94
chore(release): v5.8.6
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file.\nSee [Conventional Commits](https://conventionalcommits.org) for commit guidelines.\n+## [5.8.6](https://github.com/kikobeats/browserless/compare/v5.8.5...v5.8.6) (2019-07-10)\n+\n+**Note:** Version bump...
JavaScript
MIT License
microlinkhq/browserless
chore(release): v5.8.6
1
chore
release
815,595
10.07.2019 10:31:39
-28,800
a36c9c79e833c40acbf96f35ff5007283d190ac3
chore: Remove unused known_blocks filter
[ { "change_type": "MODIFY", "diff": "@@ -235,13 +235,10 @@ impl<CS: ChainStore + 'static> Relayer<CS> {\nfbb.finish(message, None);\nlet data = fbb.finished_data().into();\n- let mut known_blocks = self.shared().known_blocks();\nlet selected_peers: Vec<PeerIndex> = nc\n.connected_peers()\n.into_iter()\n- .fi...
Rust
MIT License
nervosnetwork/ckb
chore: Remove unused known_blocks filter
1
chore
null
815,569
10.07.2019 10:32:50
-28,800
48b1f1296dd2aa87d9a76455b140e6bda81c7ef6
test: skip-list test consumes too much time
[ { "change_type": "MODIFY", "diff": "@@ -1169,7 +1169,7 @@ mod tests {\nuse ckb_core::header::HeaderBuilder;\nuse rand::{thread_rng, Rng};\n- const SKIPLIST_LENGTH: u64 = 500_000;\n+ const SKIPLIST_LENGTH: u64 = 10_000;\n#[test]\nfn test_get_ancestor_use_skip_list() {\n@@ -1222,7 +1222,7 @@ mod tests {\nhead...
Rust
MIT License
nervosnetwork/ckb
test: skip-list test consumes too much time
1
test
null
815,577
10.07.2019 10:38:01
-28,800
d21bc54e7b0918273110fb0050c0c9dbbe45b358
chore: modify according to review
[ { "change_type": "MODIFY", "diff": "@@ -354,6 +354,7 @@ impl CKBProtocolContext for DefaultCKBProtocolContext {\n}\nfn inbound_eviction_condition(&self) -> bool {\n+ if self.network_state.config.bootnode_mode {\nlet status = self.network_state.connection_status();\nlet connected_inbound_num = self.network_s...
Rust
MIT License
nervosnetwork/ckb
chore: modify according to review
1
chore
null
815,745
10.07.2019 10:39:54
-10,800
8de7c00f9403a88b8985d9c31c2902ba2dc40a2b
chore: fix demo page path
[ { "change_type": "MODIFY", "diff": "import { Component, OnInit } from '@angular/core';\nimport { FormBuilder, FormGroup } from '@angular/forms';\n-import { environment } from '../../../environments/environment';\n@Component({\nselector: 'forms-with-options-example',\n@@ -9,7 +8,7 @@ import { environment } f...
TypeScript
MIT License
ng-select/ng-select
chore: fix demo page path
1
chore
null
504,026
10.07.2019 11:30:25
14,400
1f52911632996b7841fef827e308281b37acb4f4
feat(charts): adds bottom-left legend position fixes
[ { "change_type": "MODIFY", "diff": "import * as React from 'react';\nimport hoistNonReactStatics from 'hoist-non-react-statics';\n-import { isFinite } from 'lodash';\nimport {\nAnimatePropTypeInterface,\n- BlockProps,\nD3Scale,\nDomainPropType,\nDomainPaddingPropType,\n@@ -196,9 +194,9 @@ export interface C...
TypeScript
MIT License
patternfly/patternfly-react
feat(charts): adds bottom-left legend position (#2442) fixes https://github.com/patternfly/patternfly-react/issues/2441
1
feat
charts
711,597
10.07.2019 11:32:59
-7,200
bbbe70dbb2420a976cfbb87ba6eff01780820f47
fix(admin-ui): Do not hide dropdown panel
[ { "change_type": "MODIFY", "diff": "display: flex;\n}\n-::ng-deep ng-dropdown-panel {\n- display: none;\n-}\n-\n.values {\nflex: 1;\nmargin: 0 6px;\n", "new_path": "admin-ui/src/app/catalog/components/generate-product-variants/generate-product-variants.component.scss", "old_path": "admin-ui/src/app/...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(admin-ui): Do not hide dropdown panel
1
fix
admin-ui
401,147
10.07.2019 11:40:56
-19,080
a9ee6b2c0951a92cc62f60171ef61c917f2bd724
fix: removed invalid attribute from Fileupload icon svg affects:
[ { "change_type": "MODIFY", "diff": "-<svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"fas\" data-icon=\"file-upload\" class=\"svg-inline--fa fa-file-upload fa-w-12\" role=\"img\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 384 512\">\n+<svg aria-hidden=\"true\" focusable=\"false\" class=\"...
TypeScript
MIT License
medly/medly-components
fix: removed invalid attribute from Fileupload icon svg affects: @medly-components/icons
1
fix
null
127,975
10.07.2019 11:43:51
-10,800
65a5c6ff33cdd20326dfd3647cc82405baabc484
feat: Add Outright type of a mybet
[ { "change_type": "MODIFY", "diff": "export * from './myBetContainer';\n+export * from './outrights';\nexport * from './scoreboards/scoreboard';\nexport * from './scoreboards/football';\nexport * from './scoreboards/tennis';\n", "new_path": "portals/user-portal-components/src/myBets/components/index.ts",...
TypeScript
MIT License
coingaming/moon-design
feat: Add Outright type of a mybet
1
feat
null
711,597
10.07.2019 12:11:59
-7,200
bcc26625cc60358360c265ddd1c830af3c764294
feat(admin-ui): Implement deletion of ProductVariants
[ { "change_type": "MODIFY", "diff": "(updateProductOption)=\"updateProductOption($event)\"\n(selectionChange)=\"selectedVariantIds = $event\"\n(selectFacetValueClick)=\"selectVariantFacetValue($event)\"\n+ (deleteVariant)=\"deleteVariant($event)\"\n></vdr-product-variants-list>\n</section>\n</clr-tab-content...
TypeScript
MIT License
vendure-ecommerce/vendure
feat(admin-ui): Implement deletion of ProductVariants
1
feat
admin-ui
730,413
10.07.2019 12:12:25
14,400
017601369a79c9b6cb6292b38e00230186ce5131
chore(transpile): transpile packages in publish: components
[ { "change_type": "MODIFY", "diff": "\"build:package\": \"cross-env NODE_ENV=${NODE_ENV:-production} NODE_OPTIONS=--max-old-space-size=2048 npm run build dist\",\n\"build:components\": \"npm run build components\",\n\"build:esm\": \"npm run build esm\",\n+ \"build:transpile\": \"npm run build transpile\",\n\...
JavaScript
MIT License
webex/react-widgets
chore(transpile): transpile packages in publish: components
1
chore
transpile
401,147
10.07.2019 12:51:57
-19,080
fcbf6dc632dbdb7bd5a2b93d8e241550ef01141b
feat: added Clipboard Icon affects:
[ { "change_type": "ADD", "diff": "+<svg aria-hidden=\"true\" focusable=\"false\" class=\"svg-inline--fa fa-clipboard fa-w-12\" role=\"img\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 384 512\">\n+ <path fill=\"currentColor\" d=\"M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v...
TypeScript
MIT License
medly/medly-components
feat: added Clipboard Icon affects: @medly-components/icons
1
feat
null
603,467
10.07.2019 13:03:54
-3,600
8d5fe54e1dd5ba69ab2ad6387c0c6d492f732f10
docs(website): Improved the layout of the sidebar so that it's more readable
[ { "change_type": "MODIFY", "diff": "<div class=\"row\">\n<aside id=\"sidebar\" class=\"col-lg-3 col-md-12\">\n<nav class=\"toc navigation text-truncate\" data-ice=\"nav\">\n- <ul>\n- <li><a href=\"/modules\">Modules</a></li>\n- <ul>\n+ <ul class=\"summary\">\n+ <li class=\"header\"><a href=\"/modules\">Modu...
TypeScript
Apache License 2.0
serenity-js/serenity-js
docs(website): Improved the layout of the sidebar so that it's more readable
1
docs
website
127,975
10.07.2019 13:17:42
-10,800
215e7de1b097291063d93c005a0c7c85d4fd55d2
fix: align outright title to center
[ { "change_type": "MODIFY", "diff": "@@ -33,6 +33,7 @@ const Header = styled.div(({ onClick }) => [\nheight: rem(40),\ndisplay: 'flex',\nalignItems: 'center',\n+ justifyContent: 'center',\n},\nonClick && {\ncursor: 'pointer',\n@@ -79,7 +80,7 @@ export const OutRight = ({ event, badges }: OutRightProps) => {\...
TypeScript
MIT License
coingaming/moon-design
fix: align outright title to center
1
fix
null
217,922
10.07.2019 13:34:24
-7,200
519a92407cd6ae58be6bcb2f7c7a9ed5e98d4152
fix(rotation-tip): fixed an issue with SH2 tip and observe combos
[ { "change_type": "MODIFY", "diff": "import { RotationTip } from '../rotation-tip';\nimport { RotationTipType } from '../rotation-tip-type';\n-import { Buff, SimulationResult, SteadyHand, SteadyHandII } from '@ffxiv-teamcraft/simulator';\n+import {\n+ Buff,\n+ FocusedSynthesis,\n+ FocusedTouch, Observe,\n+ S...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(rotation-tip): fixed an issue with SH2 tip and observe combos
1
fix
rotation-tip
304,868
10.07.2019 14:07:09
21,600
31731711194ba7157bcbcd6a2dc172cd4e2b593a
chore(codecov): add thresholds on codecov pass/fail
[ { "change_type": "ADD", "diff": "+coverage:\n+ status:\n+ project:\n+ default:\n+ target: auto\n+ threshold: 5\n+ base: auto\n+ patch:\n+ default:\n+ target: auto\n+ threshold: 5\n+ base: auto\n", "new_path": ".codecov.yml", "old_path": null } ]
Go
MIT License
influxdata/flux
chore(codecov): add thresholds on codecov pass/fail
1
chore
codecov
711,597
10.07.2019 14:26:43
-7,200
1d7ab262221a95aec8920fd4911bbe1d3b734ea6
feat(admin-ui): Implement deletion of Collections
[ { "change_type": "MODIFY", "diff": "[collections]=\"items$ | async | paginate: (paginationConfig$ | async) || {}\"\n[activeCollectionId]=\"activeCollectionId$ | async\"\n(rearrange)=\"onRearrange($event)\"\n+ (deleteCollection)=\"deleteCollection($event)\"\n></vdr-collection-tree>\n<div class=\"collection-c...
TypeScript
MIT License
vendure-ecommerce/vendure
feat(admin-ui): Implement deletion of Collections
1
feat
admin-ui
791,704
10.07.2019 14:40:55
25,200
fa9bda4e3244fdb17fceaeed62fb3ca5c08e7997
report: show disabled checkbox when all/no urls are third-party
[ { "change_type": "MODIFY", "diff": "@@ -234,12 +234,11 @@ class ReportUIFeatures {\ntablesWithUrls.forEach((tableEl, index) => {\nconst urlItems = this._getUrlItems(tableEl);\nconst thirdPartyRows = this._getThirdPartyRows(tableEl, urlItems, this.json.finalUrl);\n- // If all or none of the rows are 3rd part...
JavaScript
Apache License 2.0
googlechrome/lighthouse
report: show disabled checkbox when all/no urls are third-party (#9299)
1
report
null
711,597
10.07.2019 14:45:19
-7,200
884c8c262ff949459517675ea7c5a8a1444947dc
chore: Publish v0.1.2-beta.7
[ { "change_type": "MODIFY", "diff": "+## <small>0.1.2-beta.7 (2019-07-10)</small>\n+\n+\n+#### Features\n+\n+* **admin-ui** Implement deletion of Collections ([1d7ab26](https://github.com/vendure-ecommerce/vendure/commit/1d7ab26))\n+* **admin-ui** Implement deletion of ProductVariants ([bcc2662](https://gith...
TypeScript
MIT License
vendure-ecommerce/vendure
chore: Publish v0.1.2-beta.7
1
chore
null
791,834
10.07.2019 14:49:26
25,200
069d8dbe7123dea5d21d1e3127c8ce9cc442e33a
core(domstats): support an empty html body
[ { "change_type": "MODIFY", "diff": "@@ -86,8 +86,8 @@ function elementPathInDOM(element) {\n/* istanbul ignore next */\nfunction getDOMStats(element, deep = true) {\nlet deepestElement = null;\n- let maxDepth = 0;\n- let maxWidth = 0;\n+ let maxDepth = -1;\n+ let maxWidth = -1;\nlet numElements = 0;\nlet pa...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(domstats): support an empty html body (#9340)
1
core
domstats
942,615
10.07.2019 15:19:19
25,200
9246efb2da255abbcaad3afd95b8955987bcc400
fix(universal-module): Remove fonts export to make it opt in
[ { "change_type": "MODIFY", "diff": "@@ -8,7 +8,6 @@ export * from '@workday/canvas-kit-react-checkbox';\nexport * from '@workday/canvas-kit-react-color-picker';\nexport * from '@workday/canvas-kit-react-common';\nexport * from '@workday/canvas-kit-react-cookie-banner';\n-export * from '@workday/canvas-kit-r...
TypeScript
Apache License 2.0
workday/canvas-kit
fix(universal-module): Remove fonts export to make it opt in
1
fix
universal-module
942,615
10.07.2019 15:20:42
25,200
68810cc03b2f2951a62c69e4a8357296c2dfb6c7
docs(universal-module): Update readme
[ { "change_type": "MODIFY", "diff": "-# Canvas Kit\n+# Canvas Kit React\nThe bundle package containing all modules of the Canvas React Kit.\n+\n+> Note: By default, no fonts are included with Canvas Kit modules. To use official Canvas Kit fonts,\n+> install and import the `@workday/canvas-kit-react-fonts` mo...
TypeScript
Apache License 2.0
workday/canvas-kit
docs(universal-module): Update readme
1
docs
universal-module
104,839
10.07.2019 15:21:57
10,800
a4254063761fba095495d3ba802c13665d8a659b
feat(imagecard): new component
[ { "change_type": "MODIFY", "diff": "@@ -42,6 +42,15 @@ module.exports = {\n},\n],\n},\n+ {\n+ test: /\\.(png|jpe?g|gif)$/,\n+ use: [\n+ {\n+ loader: 'file-loader',\n+ options: {},\n+ },\n+ ],\n+ },\n],\n},\n};\n", "new_path": ".storybook/webpack.config.js", "old_path": ".storybook/webpack.config.js"...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
feat(imagecard): new component
1
feat
imagecard
217,922
10.07.2019 15:30:25
-7,200
cd460243f203cf46bd92e1602b0e3e9df834d486
fix(pricing): fixed an issue with end items that can be purchased having wrong price
[ { "change_type": "MODIFY", "diff": "@@ -377,7 +377,9 @@ export class PricingComponent implements AfterViewInit {\n}, 0);\n// If that's a final item or the price is custom, no recursion.\n- if (this.pricingService.isCustomPrice(row) || price === 0 || this.pricingService.getPrice(row).fromVendor) {\n+ if (thi...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(pricing): fixed an issue with end items that can be purchased having wrong price
1
fix
pricing
815,595
10.07.2019 15:50:09
-28,800
39e3bb3de7ad0987d820fd924b5b42d736324a4c
feat: Remove block_number from BMT
[ { "change_type": "MODIFY", "diff": "@@ -33,8 +33,7 @@ impl<CS: ChainStore + 'static> StatsRpc for StatsRpcImpl<CS> {\nlet (tip_header, median_time) = {\nlet chain_state = self.shared.lock_chain_state();\nlet tip_header = chain_state.tip_header().clone();\n- let median_time =\n- (&*chain_state).block_median_...
Rust
MIT License
nervosnetwork/ckb
feat: Remove block_number from BMT
1
feat
null
791,834
10.07.2019 15:58:50
25,200
0c78f37d2889c72119f0d450420a7c4af7fcc77f
deps: update outdated transitive deps
[ { "change_type": "MODIFY", "diff": "@@ -1140,20 +1140,21 @@ axe-core@3.3.0:\nresolved \"https://registry.yarnpkg.com/axe-core/-/axe-core-3.3.0.tgz#3b32d7e54390d89ff4891b20394d33ad7a192776\"\nintegrity sha512-54XaTd2VB7A6iBnXMUG2LnBOI7aRbnrVxC5Tz+rVUwYl9MX/cIJc/Ll32YUoFIE/e9UKWMZoQenQu9dFrQyZCg==\n-axios@0.1...
JavaScript
Apache License 2.0
googlechrome/lighthouse
deps: update outdated transitive deps (#9347)
1
deps
null
217,922
10.07.2019 16:44:20
-7,200
494685dca07e7bb1121a14ff5eb5412b95fb96b3
feat(desktop): you can now make overlay clickthrough in settings
[ { "change_type": "MODIFY", "diff": "@@ -41,9 +41,9 @@ export class IpcService {\n}\n}\n- public send(channel: string, ...args: any[]): void {\n+ public send(channel: string, data?: any): void {\nif (this._ipc !== undefined) {\n- return this._ipc.send(channel, ...args);\n+ return this._ipc.send(channel, data...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(desktop): you can now make overlay clickthrough in settings
1
feat
desktop
791,690
10.07.2019 16:50:30
18,000
c4664b3cd5974afcecb19f56f7207bc3e30f207d
deps: update axe-core to 3.3.0
[ { "change_type": "MODIFY", "diff": "@@ -121,7 +121,7 @@ module.exports = [\n'type': 'node',\n'selector': '#button-name',\n'snippet': '<button id=\"button-name\"></button>',\n- 'explanation': 'Fix all of the following:\\n Element is in tab order and does not have accessible text\\n\\nFix any of the following...
JavaScript
Apache License 2.0
googlechrome/lighthouse
deps: update axe-core to 3.3.0 (#9343)
1
deps
null
304,907
10.07.2019 17:11:55
-7,200
e85ab3b0bb99572661679b0f462fbd949ec0a5b6
docs(SPEC): explain matching params in higher-order functions
[ { "change_type": "MODIFY", "diff": "@@ -731,16 +731,30 @@ Those variables are shared between the function literal and the surrounding bloc\n#### Call expressions\nA call expressions invokes a function with the provided arguments.\n-Arguments must be specified using the argument name, positional arguments no...
Go
MIT License
influxdata/flux
docs(SPEC): explain matching params in higher-order functions (#1456)
1
docs
SPEC
104,857
10.07.2019 17:25:50
10,800
2fafcc49ca3ae815e0a97fd407078f428291051a
feat(tooltip): add tooltip in hero
[ { "change_type": "MODIFY", "diff": "import PropTypes from 'prop-types';\nimport React, { Fragment } from 'react';\nimport styled from 'styled-components';\n-import { Breadcrumb, BreadcrumbItem } from 'carbon-components-react';\n+import Info from '@carbon/icons-react/lib/information/20';\n+import { Breadcrum...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
feat(tooltip): add tooltip in hero
1
feat
tooltip
103,510
10.07.2019 17:51:03
10,800
7ac5d39fdb0802f175480e65b8f47418877b902a
fix: properly render prop description in List.Item
[ { "change_type": "MODIFY", "diff": "@@ -116,7 +116,13 @@ class ListItem extends React.Component<Props> {\n) {\nconst { descriptionEllipsizeMode, descriptionStyle } = this.props;\n- return typeof description === 'string' ? (\n+ return typeof description === 'function' ? (\n+ description({\n+ ellipsizeMode: d...
TypeScript
MIT License
callstack/react-native-paper
fix: properly render prop description in List.Item (#1199)
1
fix
null
815,590
10.07.2019 18:16:25
-28,800
9ef0f37fbb4fbc64ec0ea5b0db617aac9d957210
feat: alert notify script
[ { "change_type": "MODIFY", "diff": "@@ -67,8 +67,13 @@ pub fn run(args: RunArgs, version: Version) -> Result<(), ExitCode> {\nlet relayer = Relayer::new(chain_controller.clone(), sync_shared_state);\nlet net_timer = NetTimeProtocol::default();\n- let alert_config = args.config.alert.unwrap_or_default();\n- ...
Rust
MIT License
nervosnetwork/ckb
feat: alert notify script
1
feat
null
217,922
10.07.2019 18:17:03
-7,200
a2de2ea2eca5c8ab8d1ce8d87d492882933d6b85
fix(simulator): fixed an issue with double reclaim in aactions macro
[ { "change_type": "MODIFY", "diff": "@@ -104,7 +104,7 @@ export class MacroPopupComponent implements OnInit {\nthis.macro[this.macro.length - 1].push(`/echo Craft finished <se.${seNumber}>`);\n}\n// 11 not 10 because /aactions clear takes the first line :)\n- if (this.aactionsMacro.length < 11) {\n+ if (this...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(simulator): fixed an issue with double reclaim in aactions macro
1
fix
simulator
815,595
10.07.2019 18:23:12
-28,800
731ec5c2d8a8a0b8323f1f3bffc8b5e01e576ea4
fix: Reset current_time of block template
[ { "change_type": "MODIFY", "diff": "@@ -280,7 +280,9 @@ impl<CS: ChainStore + 'static> BlockAssembler<CS> {\n)) {\n// check template cache outdate time\nif !template_cache.is_outdate(current_time) {\n- return Ok(template_cache.template.clone());\n+ let mut template = template_cache.template.clone();\n+ temp...
Rust
MIT License
nervosnetwork/ckb
fix: Reset current_time of block template
1
fix
null
815,745
10.07.2019 18:38:59
-10,800
634c80426e9f79463a491e2ab27066280d3fc1b2
fix(ng-option): handle label updates closes
[ { "change_type": "MODIFY", "diff": "import {\n+ AfterViewChecked,\nChangeDetectionStrategy,\nComponent,\nElementRef,\nInput,\nOnChanges,\n+ OnDestroy,\nSimpleChanges\n} from '@angular/core';\nimport { Subject } from 'rxjs';\n@@ -13,17 +15,23 @@ import { Subject } from 'rxjs';\nchangeDetection: ChangeDetecti...
TypeScript
MIT License
ng-select/ng-select
fix(ng-option): handle label updates closes #649
1
fix
ng-option
217,922
10.07.2019 18:40:56
-7,200
45b89a7bbf0c06485e390b101491f5002cd3d04c
fix(simulator): fixed an issue with Delicate Touch's level restriction
[ { "change_type": "MODIFY", "diff": "\"integrity\": \"sha512-TY1P8sKN5JAKXtJcQLADKtXkMzjVGuW9jdiolzMehwynkpXGfrQZWXexmqMlf7KbJl5w3gUHRVcZ7kvn/uDRWg==\"\n},\n\"@ffxiv-teamcraft/simulator\": {\n- \"version\": \"1.2.4\",\n- \"resolved\": \"https://registry.npmjs.org/@ffxiv-teamcraft/simulator/-/simulator-1.2.4....
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(simulator): fixed an issue with Delicate Touch's level restriction
1
fix
simulator
217,922
10.07.2019 18:46:31
-7,200
1ad8ea49be171026492303421525e97f446af0a8
feat(search): changed default search type for "Any"
[ { "change_type": "MODIFY", "diff": "@@ -57,7 +57,7 @@ export class SearchComponent implements OnInit {\nloading = false;\npublic searchType$: BehaviorSubject<SearchType> =\n- new BehaviorSubject<SearchType>(<SearchType>localStorage.getItem('search:type') || SearchType.ITEM);\n+ new BehaviorSubject<SearchTyp...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(search): changed default search type for "Any"
1
feat
search
217,922
10.07.2019 19:01:40
-7,200
cc01329d6fcbfcf1427555ccaecc967d1a7ab105
feat(layout): added new filter: IS_FATE_ITEM
[ { "change_type": "MODIFY", "diff": "@@ -17,6 +17,12 @@ export class LayoutRowFilter {\nreturn row.vendors !== undefined && row.vendors.length > 0;\n}, 'CAN_BE_BOUGHT');\n+\n+ static IS_FATE_ITEM = new LayoutRowFilter(row => {\n+ return row.tradeSources !== undefined\n+ && row.tradeSources.some(ts => ts.trad...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(layout): added new filter: IS_FATE_ITEM
1
feat
layout
503,945
10.07.2019 19:07:06
14,400
4f2cea6f074f06d8caeba3286e1550984c65905c
chore(package): Bump versions to 2.17.3
[ { "change_type": "MODIFY", "diff": "\"@babel/plugin-transform-typescript\": \"^7.0.0\",\n\"@babel/preset-env\": \"^7.0.0\",\n\"@babel/preset-react\": \"^7.0.0\",\n- \"@patternfly/patternfly\": \"2.17.2\",\n+ \"@patternfly/patternfly\": \"2.17.3\",\n\"@patternfly/react-icons\": \"^3.10.9\",\n\"@patternfly/re...
TypeScript
MIT License
patternfly/patternfly-react
chore(package): Bump @patternfly/patternfly versions to 2.17.3 (#2498)
1
chore
package
217,922
10.07.2019 19:12:12
-7,200
4a3ec1619184d40cb4aa9d4e5eed89a27565219c
chore(release): 5.6.9
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"5.6.9\"></a>\n+## [5.6.9](https://github.com/ffxiv-teamcraft/ffxiv-teamcraft/compare/...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore(release): 5.6.9
1
chore
release
679,913
11.07.2019 00:45:43
-3,600
6c64b88b4d2860dea7e99c9877c63cf915a1fd93
fix(geom-splines): fix replace cubicBounds impl
[ { "change_type": "MODIFY", "diff": "import { mixCubic } from \"@thi.ng/math\";\nimport { ReadonlyVec, Vec, VecPair } from \"@thi.ng/vectors\";\n+/**\n+ * Computes cubic spline bounds for a single vector component.\n+ *\n+ * Based on:\n+ * http://www.iquilezles.org/www/articles/bezierbbox/bezierbbox.htm\n+ *...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(geom-splines): fix #100, replace cubicBounds impl
1
fix
geom-splines
679,913
11.07.2019 00:46:50
-3,600
c7d6aaacbb5b6a1fc5618550f006654212700c76
fix(hiccup-svg): update points(), use centered rects
[ { "change_type": "MODIFY", "diff": "@@ -28,7 +28,10 @@ export const points = (\n{ opacity: 0 },\nshape === \"circle\"\n? [\"circle\", { id: href, cx: 0, cy: 0, r: r }]\n- : [\"rect\", { id: href, x: 0, y: 0, width: r, height: r }]\n+ : [\n+ \"rect\",\n+ { id: href, x: -r / 2, y: -r / 2, width: r, height: r ...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(hiccup-svg): update points(), use centered rects
1
fix
hiccup-svg
217,922
11.07.2019 08:01:21
-7,200
3fcd946e7422586eb210259acc42c8980bab0105
fix(profile): fixed order for stats in profile and editor
[ { "change_type": "MODIFY", "diff": "[nzTitle]=\"'SIMULATOR.CONFIGURATION.Specialist' | translate\"></i>\n<div>\n{{'SIMULATOR.CONFIGURATION.STATS.CP' | translate}}: {{set.cp}} -\n- {{'SIMULATOR.CONFIGURATION.STATS.Control' | translate}}: {{set.control}} -\n- {{'SIMULATOR.CONFIGURATION.STATS.Craftsmanship' | ...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(profile): fixed order for stats in profile and editor
1
fix
profile
217,922
11.07.2019 08:20:12
-7,200
c1bf2a9bb0b0ba2c01823525a02010872c365bd8
fix(profile): fixed an issue with DoL stats not being editable
[ { "change_type": "MODIFY", "diff": "@@ -24,7 +24,7 @@ export class StatsPopupComponent implements OnInit {\nngOnInit(): void {\nthis.allSets$ = this.authFacade.mainCharacterEntry$.pipe(\nmap(entry => {\n- return [8, 9, 10, 11, 12, 13, 14, 15].map(jobId => {\n+ return [8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 1...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(profile): fixed an issue with DoL stats not being editable
1
fix
profile
217,922
11.07.2019 09:14:57
-7,200
7cd54c3357433e7ef13a3af221d1832ebbec7718
fix(macro-translator): fixed an issue with japanese macros not detected properly
[ { "change_type": "MODIFY", "diff": "@@ -24,7 +24,7 @@ export class MacroTranslatorComponent {\n];\nprivate findActionsRegex: RegExp =\n- new RegExp(/\\/(ac|action|aaction|gaction|generalaction)[\\s]+(([\\w]+)|\"([^\"]+)\")?.*/, 'i');\n+ new RegExp(/\\/(ac|action|aaction|gaction|generalaction)[\\s]+(([\\w|[\...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(macro-translator): fixed an issue with japanese macros not detected properly
1
fix
macro-translator
127,975
11.07.2019 09:27:49
-10,800
6d95174fd157e10310a805c52da05aeecba2b5ca
feat: implement betboosts for mybets
[ { "change_type": "MODIFY", "diff": "@@ -7,20 +7,28 @@ import { spacing } from '@heathmont/sportsbet-utils';\nimport { IconLogoPlain } from '@heathmont/sportsbet-icons';\nimport { Market } from '../shared/market';\nimport { Selection } from '../shared/selections';\n+import { betBoostHighlightColors } from '....
TypeScript
MIT License
coingaming/moon-design
feat: implement betboosts for mybets
1
feat
null
104,827
11.07.2019 09:34:27
18,000
bfca1683f6bcd6849e68f5b290c280a7cadfc99a
fix(hero): update margins
[ { "change_type": "MODIFY", "diff": "@@ -3,8 +3,6 @@ import React, { Fragment } from 'react';\nimport styled from 'styled-components';\nimport { Breadcrumb, BreadcrumbItem } from 'carbon-components-react';\n-import { COLORS } from '../../styles/styles';\n-\nconst propTypes = {\n/** Title of the page */\ntitl...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(hero): update margins
1
fix
hero
531,793
11.07.2019 10:22:30
-3,600
3b2ed27e25840aadf41a0ec55b1dc0924925a366
fix(ui): fix warning progress bar in overview modal
[ { "change_type": "MODIFY", "diff": "@@ -20,7 +20,7 @@ exports[`<MountedLabelWithPercent /> matches snapshot 1`] = `\n</span>\n</span>\n<div class=\\\\\"progress silence-progress bg-white pr-1\\\\\">\n- <div class=\\\\\"progress-bar bg-success\\\\\"\n+ <div class=\\\\\"progress-bar bg-warning\\\\\"\nrole=\\\...
TypeScript
Apache License 2.0
prymitive/karma
fix(ui): fix warning progress bar in overview modal
1
fix
ui
127,939
11.07.2019 10:27:11
-10,800
b6d332c7e350cf298ec9dce40632124cb7820411
chore(wallet): rounded border for add wallet button on mobile
[ { "change_type": "MODIFY", "diff": "@@ -33,7 +33,7 @@ const borderAddWallet: CSSObject = {\nborderStyle: border.style,\nborderWidth: border.width,\nborderColor: colors.neutral[70],\n- borderRadius: border.radius.small,\n+ borderRadius: border.radius.largest,\n[mq(breakpoints.medium)]: {\nborderRadius: borde...
TypeScript
MIT License
coingaming/moon-design
chore(wallet): rounded border for add wallet button on mobile
1
chore
wallet
67,474
11.07.2019 10:30:01
-36,000
6a090026d97a413c1e05e4939c3cf8bb2fb9dcd1
chore: cleanup jit-browserify-ts deps
[ { "change_type": "MODIFY", "diff": "},\n\"dependencies\": {\n\"@aurelia/debug\": \"dev\",\n+ \"@aurelia/jit\": \"dev\",\n\"@aurelia/jit-html\": \"dev\",\n\"@aurelia/jit-html-browser\": \"dev\",\n- \"@aurelia/jit\": \"dev\",\n\"@aurelia/kernel\": \"dev\",\n+ \"@aurelia/runtime\": \"dev\",\n\"@aurelia/runtime...
TypeScript
MIT License
aurelia/aurelia
chore: cleanup jit-browserify-ts deps
1
chore
null
67,474
11.07.2019 10:33:35
-36,000
4e174d2968ff7757d612015b92d37d7b0e366cd8
ci: turn off browserify tests, Fred will deal with them in future
[ { "change_type": "MODIFY", "diff": "@@ -389,12 +389,12 @@ workflows:\npath: \"examples/jit-parcel-ts\"\nrequires:\n- lint_packages # not a real requirement but forces long-running jobs to go first\n- - e2e_wdio:\n- <<: *filter_ignore_develop_release\n- name: jit-browserify-ts\n- path: \"examples/jit-browser...
TypeScript
MIT License
aurelia/aurelia
ci: turn off browserify tests, Fred will deal with them in future
1
ci
null
815,577
11.07.2019 10:51:48
-28,800
18a3722bf38421560cdef7137279decd252e9633
chore: move inbound eviction to network
[ { "change_type": "MODIFY", "diff": "@@ -59,10 +59,7 @@ pub fn run(args: RunArgs, version: Version) -> Result<(), ExitCode> {\n}\n};\n- let sync_shared_state = Arc::new(SyncSharedState::new(\n- shared.clone(),\n- args.config.network.max_tip_age,\n- ));\n+ let sync_shared_state = Arc::new(SyncSharedState::new...
Rust
MIT License
nervosnetwork/ckb
chore: move inbound eviction to network
1
chore
null
531,793
11.07.2019 10:59:35
-3,600
7d7d6d5e932fb3b27b9b9266f1baf3a02374de19
fix(ui): add missing tests
[ { "change_type": "MODIFY", "diff": "@@ -60,4 +60,43 @@ describe(\"<MountedLabelWithPercent />\", () => {\nNewUnappliedFilter(\"foo!=bar\")\n);\n});\n+\n+ it(\"uses bg-danger when percent is >66\", () => {\n+ const tree = mount(\n+ <LabelWithPercent\n+ alertStore={alertStore}\n+ name={\"foo\"}\n+ value={\"ba...
TypeScript
Apache License 2.0
prymitive/karma
fix(ui): add missing tests
1
fix
ui
67,474
11.07.2019 11:18:50
-36,000
ee2bae18c38499a534828e57dd492841eab4577c
ci: skip browserstack for now
[ { "change_type": "MODIFY", "diff": "@@ -409,7 +409,7 @@ workflows:\n- unit_test_firefox\n- unit_test_node\n- lint_packages\n- - e2e_browserstack\n+ #- e2e_browserstack\n#- e2e_cypress_doc_example\n#- jit-fuse-box-ts\n- jit-webpack-ts\n@@ -429,7 +429,7 @@ workflows:\n- unit_test_firefox\n- unit_test_node\n- ...
TypeScript
MIT License
aurelia/aurelia
ci: skip browserstack for now
1
ci
null
815,745
11.07.2019 12:34:44
-10,800
7ccea9db46c170feca0adbbc2fc1f5034d7c7751
fix(ng-option): don't escape html inside ng-options closes
[ { "change_type": "MODIFY", "diff": "<div class=\"form-group col-md-6\">\n<label for=\"heroId\">Basic select</label>\n<ng-select [searchable]=\"false\" [clearable]=\"false\" labelForId=\"heroId\" formControlName=\"heroId\">\n- <ng-template ng-label-tmp let-item=\"item\" let-label=\"label\">\n- <img src=\"{{b...
TypeScript
MIT License
ng-select/ng-select
fix(ng-option): don't escape html inside ng-options closes #506
1
fix
ng-option
711,597
11.07.2019 12:41:57
-7,200
3178578f9efc9cbf575c4b38ad4e5c6e3fa14ddf
test(core): Correctly handle CustomFields when clearing tables
[ { "change_type": "MODIFY", "diff": "@@ -16,7 +16,7 @@ import { TestingEntityIdStrategy } from './testing-entity-id-strategy';\n* e2e tests because on the first run (and always in CI) the sqlite databases\n* need to be generated, which can take a while.\n*/\n-export const TEST_SETUP_TIMEOUT_MS = 120000;\n+ex...
TypeScript
MIT License
vendure-ecommerce/vendure
test(core): Correctly handle CustomFields when clearing tables
1
test
core
815,745
11.07.2019 12:59:57
-10,800
6dc2b343983572c15cbd2ee697b49b4ff8c77332
test: add escape html test
[ { "change_type": "MODIFY", "diff": "@@ -185,6 +185,23 @@ describe('NgSelectComponent', () => {\nexpect(select.itemsList.items[0].label).toBe('Vilnius');\n}));\n+ it('should escape label', fakeAsync(() => {\n+ const fixture = createTestingModule(\n+ NgSelectTestCmp,\n+ `<ng-select [items]=\"cities\"\n+ [clea...
TypeScript
MIT License
ng-select/ng-select
test: add escape html test
1
test
null
531,793
11.07.2019 13:16:12
-3,600
ee5efc60234b5088f013112ed4ca58cd12c18918
chore(ui): use xl size for the overview modal
[ { "change_type": "MODIFY", "diff": "@@ -14,9 +14,13 @@ import {\nconst Modal = observer(\nclass Modal extends Component {\nstatic propTypes = {\n+ size: PropTypes.oneOf([\"lg\", \"xl\"]),\nisOpen: PropTypes.bool.isRequired,\nchildren: PropTypes.node.isRequired\n};\n+ static defaultProps = {\n+ size: \"lg\"\...
TypeScript
Apache License 2.0
prymitive/karma
chore(ui): use xl size for the overview modal
1
chore
ui
730,413
11.07.2019 13:30:28
14,400
4cd7706d7985cf576509a0fdaa56338dfa6d2ad1
fix(scripts): fix handler logic for transpiling all components
[ { "change_type": "MODIFY", "diff": "@@ -14,11 +14,10 @@ module.exports = {\ntranspile(pkg, `./packages/node_modules/${pkg}`);\n});\n}\n-\n+ else {\nif (packagePath) {\ntranspile(packageName, packagePath);\n}\n- else {\ntranspile(packageName, `./packages/node_modules/@ciscospark/${packageName}`);\n}\n}\n", ...
JavaScript
MIT License
webex/react-widgets
fix(scripts): fix handler logic for transpiling all components
1
fix
scripts
730,429
11.07.2019 13:56:28
14,400
0cd89415c20256a14905e552a36c51c288d91e33
docs: add UPGRADING guide for env var changes
[ { "change_type": "ADD", "diff": "+# Upgrading to Webex\n+\n+The Cisco Spark SDK has been upgraded and renamed to the Webex SDK.\n+With this change, certain environment variables that are passed from the widget to the SDK have been renamed.\n+\n+\n+## Environment variables\n+\n+**Rename these environment var...
JavaScript
MIT License
webex/react-widgets
docs: add UPGRADING guide for env var changes
1
docs
null
127,939
11.07.2019 13:59:42
-10,800
39a7d8e6dfd886bc4f57bcaac67cc1fc92ef28de
fix(wallet): safari for ios summury display reset issue
[ { "change_type": "MODIFY", "diff": "@@ -7,17 +7,11 @@ import rem from 'polished/lib/helpers/rem';\njsx;\n-export const Summary = styled.summary<{\n+const SummaryContainer = styled.summary<{\ninactive?: boolean;\ndetails?: boolean;\n}>(({ inactive = false, details = false }) => [\n{\n- display: 'flex',\n- fl...
TypeScript
MIT License
coingaming/moon-design
fix(wallet): safari for ios summury display reset issue
1
fix
wallet
104,857
11.07.2019 14:15:04
10,800
d39260cae73394981e51555459cca17049678a7d
fix(tooltip): tooltip link renders when prop sent
[ { "change_type": "MODIFY", "diff": "@@ -99,7 +99,7 @@ const Hero = ({ title, description, className, rightContent, breadcrumb, tooltip\n<StyledBreadcrumb noTrailingSlash>\n{breadcrumb.map(({ href = undefined, isCurrentPage = false, label }) => (\n<BreadcrumbItem href={href} isCurrentPage={isCurrentPage}>\n-...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(tooltip): tooltip link renders when prop sent
1
fix
tooltip
865,921
11.07.2019 14:21:12
-7,200
d50c2dbe7a157499085e77de24c5a8a6f891e0fb
chore(client): update cmmn-js Related to
[ { "change_type": "MODIFY", "diff": "\"integrity\": \"sha512-6AghADr1eKdQLRVbTyPREGvjdh4AfZlRbVsDzoN704hfKWjChp6FodneoUP+EgkQ6g3/1XRWbcyAePUovtwU2g==\"\n},\n\"cmmn-js\": {\n- \"version\": \"0.18.1\",\n- \"resolved\": \"https://registry.npmjs.org/cmmn-js/-/cmmn-js-0.18.1.tgz\",\n- \"integrity\": \"sha512-BE+J...
JavaScript
MIT License
camunda/camunda-modeler
chore(client): update cmmn-js Related to https://github.com/camunda/camunda-modeler/issues/1423
1
chore
client
401,147
11.07.2019 14:24:20
-19,080
c1576e0d4476bb3236b214e31da42669dc6aa516
fix: fixed sidenav click issue affects:
[ { "change_type": "MODIFY", "diff": "@@ -150,7 +150,7 @@ exports[`Popover component should render properly when interction type is click\nDummy Div\n</div>\n<div\n- class=\"sc-bdVaJa fgTvrY\"\n+ class=\"sc-bdVaJa imlMkk\"\nstyle=\"display: block;\"\n>\nDummy popover\n@@ -176,7 +176,7 @@ exports[`Popover comp...
TypeScript
MIT License
medly/medly-components
fix: fixed sidenav click issue affects: @medly-components/core, @medly-components/layout
1
fix
null
942,615
11.07.2019 14:32:28
25,200
13c38e4ecc05c9a99f8bc74e8e2eccee631e65da
docs(universal-modules): Minor tweaks
[ { "change_type": "MODIFY", "diff": "# Canvas Kit React\n-The bundle package containing all modules of the Canvas React Kit.\n+The bundle package containing all modules of the Canvas Kit React.\n> Note: By default, no fonts are included with Canvas Kit modules. To use official Canvas Kit fonts,\n> install an...
TypeScript
Apache License 2.0
workday/canvas-kit
docs(universal-modules): Minor tweaks
1
docs
universal-modules
401,147
11.07.2019 15:10:10
-19,080
189c1fa5e9cac63bdd86fe93633dca4d6f96d566
fix: fixed long text issue in sidenav affects:
[ { "change_type": "MODIFY", "diff": "@@ -17,6 +17,10 @@ export const NavItemStyled = styled('li')<NavItemStyledProps>`\ngrid-template-rows: ${({ theme }) => theme.sideNav.closeSize} auto;\ngrid-template-columns: ${({ theme }) => theme.sideNav.closeSize} auto;\nalign-items: center;\n+ min-height: 35px;\n+ tex...
TypeScript
MIT License
medly/medly-components
fix: fixed long text issue in sidenav affects: @medly-components/layout
1
fix
null
217,922
11.07.2019 15:26:10
-7,200
43dceab1132a76784eb15571a9f7ae61849cbc04
fix(alarms): fixed wrong label for folder alarms addition box
[ { "change_type": "MODIFY", "diff": "@@ -176,7 +176,7 @@ export class AlarmsPageComponent implements OnInit {\nfirst(),\nswitchMap((display: AlarmsPageDisplay) => {\nreturn this.dialog.create({\n- nzTitle: this.translate.instant('SIMULATOR.ROTATIONS.FOLDERS.Add_rotations'),\n+ nzTitle: this.translate.instant...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(alarms): fixed wrong label for folder alarms addition box
1
fix
alarms
104,844
11.07.2019 15:37:40
14,400
5be1266ac4cd86b2d7116a896eac84369b7f6c60
feat(table): finish changes from Amys comments
[ { "change_type": "MODIFY", "diff": "@@ -375,6 +375,7 @@ storiesOf('Table', module)\n<StatefulTable\n{...initialState}\nactions={actions}\n+ isSortable\nlightweight={boolean('lightweight', false)}\n/>\n</StyledTableWidth>\n", "new_path": "src/components/Table/Table.story.jsx", "old_path": "src/compon...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
feat(table): finish changes from Amys comments
1
feat
table
749,516
11.07.2019 15:43:08
25,200
8d9bd7c7b2b771c303253b02a9c44b309406421a
fix(dropdowns): remove webkit button styling when used with css-bedrock
[ { "change_type": "MODIFY", "diff": "@@ -65,5 +65,9 @@ export const StyledSelect = styled.div.attrs<IStyledSelectProps>(props => ({\n}))<IStyledSelectProps>`\ncursor: default;\n+ && {\n+ appearance: none;\n+ }\n+\n${props => retrieveTheme(COMPONENT_ID, props)};\n`;\n", "new_path": "packages/dropdowns/src...
TypeScript
Apache License 2.0
zendeskgarden/react-components
fix(dropdowns): remove webkit button styling when used with css-bedrock (#386)
1
fix
dropdowns
791,704
11.07.2019 15:59:45
25,200
3fb2c6d7fba2c9139d385858a6a58a369072051a
clients(devtools): audits2->audits and defer reading resources
[ { "change_type": "MODIFY", "diff": "// @ts-ignore: Runtime exists in Devtools.\nconst cachedResources = Runtime.cachedResources;\n+// Getters are necessary because the DevTools bundling processes\n+// resources after this module is resolved. These properties are not\n+// read from immediately, so we can def...
JavaScript
Apache License 2.0
googlechrome/lighthouse
clients(devtools): audits2->audits and defer reading resources (#9344)
1
clients
devtools
304,868
11.07.2019 16:04:21
21,600
b25312b5fc12e5709f8d31e9ad9dca75a8acf56b
fix(executetest): add helper methods for comparing entire result sets
[ { "change_type": "MODIFY", "diff": "@@ -13,6 +13,24 @@ type Result struct {\nErr error\n}\n+// ConvertResult produces a result object from any flux.Result type.\n+func ConvertResult(result flux.Result) *Result {\n+ var tbls []*Table\n+ err := result.Tables().Do(func(tbl flux.Table) error {\n+ t, err := Conv...
Go
MIT License
influxdata/flux
fix(executetest): add helper methods for comparing entire result sets
1
fix
executetest