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
679,913
10.04.2019 22:38:26
-3,600
8af49434c01331e4581fd55b781bcdf350866d96
feat(webgl): add texture lookup shader snippets
[ { "change_type": "ADD", "diff": "+import { defglsl } from \"./assemble\";\n+\n+export const indexToUV = defglsl(\n+ `vec2 indexToUV(int i, ivec2 size) {\n+ return vec2(float(i % size.x), float(i / size.x)) / vec2(size);\n+}`\n+);\n+\n+export const readIndex1 = defglsl(\n+ `float readIndex1(sampler2D tex, in...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(webgl): add texture lookup shader snippets
1
feat
webgl
679,913
10.04.2019 22:39:01
-3,600
cf7c40877312b615f7b66c73effd30677a85304b
feat(webgl): add (incomplete) texture format specs
[ { "change_type": "ADD", "diff": "+import { IObjectOf } from \"@thi.ng/api\";\n+\n+export enum Format {\n+ RED = 6403,\n+ R11F_G11F_B10F = 35898,\n+ R16F = 33325,\n+ R16I = 33331,\n+ R16UI = 33332,\n+ R32F = 33326,\n+ R32I = 33333,\n+ R32UI = 33334,\n+ R8_SNORM = 36756,\n+ R8 = 33321,\n+ R8I = 33329,\n+ R8UI...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(webgl): add (incomplete) texture format specs
1
feat
webgl
679,913
10.04.2019 22:47:21
-3,600
b34b70ea8c71916c57cd4f7e37cf22d2296b46dd
feat(examples): update ssao demo param & uniform handling
[ { "change_type": "MODIFY", "diff": "-import { Path } from \"@thi.ng/api\";\n-import { mergeDeepObj } from \"@thi.ng/associative\";\nimport { sin } from \"@thi.ng/dsp\";\nimport { start } from \"@thi.ng/hdom\";\nimport { canvasWebGL2 } from \"@thi.ng/hdom-components\";\nimport { lookAt, perspective, transfor...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(examples): update ssao demo param & uniform handling
1
feat
examples
679,913
10.04.2019 22:51:06
-3,600
a9ba010fdb5e90934c2b34aa0c98f6217dc40434
feat(geom): add AABB impls for vertices() & volume()
[ { "change_type": "MODIFY", "diff": "@@ -49,6 +49,7 @@ export * from \"./ops/translate\";\nexport * from \"./ops/union\";\nexport * from \"./ops/unmap-point\";\nexport * from \"./ops/vertices\";\n+export * from \"./ops/volume\";\nexport * from \"./ops/warp-points\";\nexport * from \"./ops/with-attribs\";\n",...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(geom): add AABB impls for vertices() & volume()
1
feat
geom
679,913
10.04.2019 22:57:45
-3,600
b1790b3c80964aff581e1aee33e88ba7e206873e
feat(geom): add inscribedSquare*() fns
[ { "change_type": "MODIFY", "diff": "import { Attribs } from \"@thi.ng/geom-api\";\n-import { sub2, Vec } from \"@thi.ng/vectors\";\n-import { Rect } from \"../api\";\n+import { centroid } from \"@thi.ng/geom-poly-utils\";\n+import { SQRT2_2, SQRT3 } from \"@thi.ng/math\";\n+import {\n+ dist,\n+ ReadonlyVec,...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(geom): add inscribedSquare*() fns
1
feat
geom
679,913
10.04.2019 23:01:01
-3,600
0ae12431587bc20a5eaaaabbfb40d7547c3445ee
fix(rstream): add missing Subscription.deref() return type hint
[ { "change_type": "MODIFY", "diff": "@@ -9,7 +9,12 @@ import {\nTransducer,\nunreduced\n} from \"@thi.ng/transducers\";\n-import { DEBUG, ISubscribable, ISubscriber, State } from \"./api\";\n+import {\n+ DEBUG,\n+ ISubscribable,\n+ ISubscriber,\n+ State\n+} from \"./api\";\nimport { nextID } from \"./utils/i...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(rstream): add missing Subscription.deref() return type hint
1
fix
rstream
447,440
11.04.2019 03:16:21
18,000
e0ce3f946e19157ab9eb595ca89358c6157beef7
fix: fix calendar example
[ { "change_type": "MODIFY", "diff": "<Card style={calendarContainerStyles} className=\"rainbow-p-around_large\">\n<Calendar\nvalue={state.date}\n- label=\"DatePicker Label\"\nonChange={ value => setState({ date: value }) } />\n</Card>\n</div>\nvalue={state.date}\nminDate={new Date(2018, 0, 4)}\nmaxDate={new ...
JavaScript
MIT License
nexxtway/react-rainbow
fix: fix calendar example (#672)
1
fix
null
304,866
11.04.2019 08:36:41
25,200
7a1ae24ce0ecc8e9a913eba057aa9cf4c83395a8
docs(examples): update library README to reflect private spec
[ { "change_type": "MODIFY", "diff": "@@ -6,11 +6,9 @@ This folder contains a [main.go](main.go) file that shows how flux can be used a\nThe main components you need are:\n-- The interpreter;\n-- The scope (aka Prelude);\n-- The builtin library and your additional functions, if you want to define them;\n-- Th...
Go
MIT License
influxdata/flux
docs(examples): update library README to reflect private spec
1
docs
examples
104,818
11.04.2019 09:17:34
18,000
772dce7d447a54360bb8719573475cc45f3f4d32
fix(wizardinline): increase the max-width a little
[ { "change_type": "MODIFY", "diff": "@@ -22,7 +22,7 @@ const StyledWizardWrapper = styled.div`\n.bx--modal-container {\nmin-width: 630px;\n- max-width: 75%;\n+ max-width: 90%;\nmargin-top: 24px;\npadding-top: 32px;\npadding-bottom: 72px;\n", "new_path": "src/components/WizardInline/WizardInline.jsx", ...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(wizardinline): increase the max-width a little
1
fix
wizardinline
815,593
11.04.2019 10:11:01
-32,400
a2e8b4588b69e3b2e3c89e514ff4cdef2d0b17b4
chore: resolve some error handle issue
[ { "change_type": "MODIFY", "diff": "@@ -172,7 +172,6 @@ impl<CI: ChainIndex + 'static> ChainService<CI> {\nOk(())\n}\n- #[allow(clippy::op_ref)]\npub(crate) fn insert_block(&self, block: Arc<Block>) -> Result<(), FailureError> {\nlet mut new_best_block = false;\nlet mut total_difficulty = U256::zero();\n@@ ...
Rust
MIT License
nervosnetwork/ckb
chore: resolve some error handle issue
1
chore
null
815,573
11.04.2019 10:20:29
-28,800
28dbfd25ed8046954d165c94addfb7af6b83a127
fix: Testnet hot fix
[ { "change_type": "MODIFY", "diff": "@@ -514,11 +514,11 @@ dependencies = [\n\"snap 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"stop-handler 0.9.0-pre\",\n\"tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)\",\n- \"tentacle 0.2.0-alpha.1 (git+https://github.com/ne...
Rust
MIT License
nervosnetwork/ckb
fix: Testnet hot fix
1
fix
null
71,123
11.04.2019 10:44:29
25,200
382da6a9d13833561052ca7b1b4594095b2bae76
fix(aws-lambda): fix circular dependency with lambda and codedeploy
[ { "change_type": "MODIFY", "diff": "{\n\"Name\": \"Resource\",\n\"Value\": {\n- \"Ref\": \"Alias325C5727\"\n+ \"Fn::Join\": [\n+ \"\",\n+ [\n+ {\n+ \"Fn::GetAtt\": [\n+ \"Handler886CB40B\",\n+ \"Arn\"\n+ ]\n+ },\n+ \":alias\"\n+ ]\n+ ]\n}\n}\n],\n", "new_path": "packages/@aws-cdk/aws-codedeploy/test/lam...
TypeScript
Apache License 2.0
aws/aws-cdk
fix(aws-lambda): fix circular dependency with lambda and codedeploy (#2236)
1
fix
aws-lambda
103,440
11.04.2019 10:50:46
-7,200
8c41503c180ae7718671e5c077c41f42152c0c2d
feat: add scale property to control modal animation speed
[ { "change_type": "MODIFY", "diff": "@@ -122,21 +122,33 @@ class Modal extends React.Component<Props, State> {\n};\n_showModal = () => {\n+ const {\n+ theme: {\n+ animation: { scale },\n+ },\n+ } = this.props;\n+\nBackHandler.removeEventListener('hardwareBackPress', this._handleBack);\nBackHandler.addEventLi...
TypeScript
MIT License
callstack/react-native-paper
feat: add scale property to control modal animation speed (#942)
1
feat
null
815,601
11.04.2019 10:55:34
-28,800
b42f9d4e3f08ea3a19a0994d6aa305b7a58a2ca9
feat: use hex string represent lock args in config
[ { "change_type": "MODIFY", "diff": "@@ -14,7 +14,7 @@ use crossbeam_channel::{self, select, Receiver, Sender};\nuse failure::Error as FailureError;\nuse faketime::unix_time_as_millis;\nuse fnv::FnvHashSet;\n-use jsonrpc_types::{BlockTemplate, CellbaseTemplate, TransactionTemplate, UncleTemplate};\n+use json...
Rust
MIT License
nervosnetwork/ckb
feat: use hex string represent lock args in config
1
feat
null
573,237
11.04.2019 11:17:55
25,200
5e8b5e2b28e32c79c413d9dec2466fe8f1135332
feat: provide callback to uncaughtException handler
[ { "change_type": "MODIFY", "diff": "@@ -107,15 +107,21 @@ server.get('/', function(req, res, next) {\nreturn next();\n});\n-server.on('uncaughtException', function(req, res, route, err) {\n+server.on('uncaughtException', function(req, res, route, err, callback) {\n// this event will be fired, with the error...
JavaScript
MIT License
restify/node-restify
feat: provide callback to uncaughtException handler (#1766)
1
feat
null
104,874
11.04.2019 11:43:48
-3,600
1b48c96d7f4381cf05d325cb88e83c73a041755c
chore(table): add more comments to the AsyncTable story
[ { "change_type": "MODIFY", "diff": "@@ -99,8 +99,15 @@ class MockApiClient {\n};\n}\n+/**\n+ * Extends the baseTableReducer to perform some additional state management\n+ *\n+ */\nconst reducer = (state, action) => {\nswitch (action.type) {\n+\n+ // Used to set the table's data (and totalItems)\n+ // once a...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
chore(table): add more comments to the AsyncTable story
1
chore
table
603,467
11.04.2019 12:18:09
-3,600
569d1bc57c7fefa775fd131ec7e0c74f77c8250c
feat(local-server): Support for testing HTTPS servers
[ { "change_type": "ADD", "diff": "+-----BEGIN CERTIFICATE-----\n+MIIDFDCCAfwCCQD1O/bbEs7PkjANBgkqhkiG9w0BAQsFADBLMQswCQYDVQQGEwJV\n+UzEMMAoGA1UECAwDRm9vMQwwCgYDVQQHDANCYXIxDDAKBgNVBAoMA0JhejESMBAG\n+A1UEAwwJbG9jYWxob3N0MCAXDTE5MDQxMTA4NDcyMloYDzIxMTkwMzE4MDg0NzIy\n+WjBLMQswCQYDVQQGEwJVUzEMMAoGA1UECAwDRm9vMQw...
TypeScript
Apache License 2.0
serenity-js/serenity-js
feat(local-server): Support for testing HTTPS servers
1
feat
local-server
603,467
11.04.2019 12:19:09
-3,600
082adeb389369086bb025552d171bbf105e94ce3
feat(core): Transform allows for transforming an answer to a question
[ { "change_type": "ADD", "diff": "+import { given } from 'mocha-testdata';\n+import * as sinon from 'sinon';\n+\n+import { Actor, Answerable, Question, Transform } from '../../../src/screenplay';\n+import { Stage } from '../../../src/stage';\n+import { expect } from '../../expect';\n+\n+/** @test {TransformA...
TypeScript
Apache License 2.0
serenity-js/serenity-js
feat(core): Transform allows for transforming an answer to a question
1
feat
core
104,874
11.04.2019 12:19:13
-3,600
f463f2eed64948b4e991f15093190d46b26f28c9
chore(table): some tidying up of AsyncTable story
[ { "change_type": "MODIFY", "diff": "@@ -45,41 +45,45 @@ class MockApiClient {\n}\n}\n+ /**\n+ * Returns true iff ${fieldName} of ${record} contains the substring ${fieldValue} (case-insensitive)\n+ */\n+ static doesRecordMatch = (record, fieldName, fieldValue) => `${record[fieldName].toLowerCase()}`.include...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
chore(table): some tidying up of AsyncTable story
1
chore
table
603,467
11.04.2019 12:32:18
-3,600
15e043ba3b4a208e21df617187cd16f7766b9a88
feat(protractor): Support for testing cookies
[ { "change_type": "MODIFY", "diff": "\"@integration/testing-tools\": \"2.0.1-alpha.47\",\n\"@serenity-js/assertions\": \"2.0.1-alpha.47\",\n\"@serenity-js/core\": \"2.0.1-alpha.47\",\n+ \"@serenity-js/local-server\": \"2.0.1-alpha.47\",\n+ \"@types/express\": \"^4.16.1\",\n\"@types/html-minifier\": \"^3.5.2\...
TypeScript
Apache License 2.0
serenity-js/serenity-js
feat(protractor): Support for testing cookies
1
feat
protractor
815,573
11.04.2019 12:45:50
-28,800
2ebc3fe98ba73da002624061a4edbe9d9790c5cc
chore: Reduce log level
[ { "change_type": "MODIFY", "diff": "@@ -207,7 +207,7 @@ impl Stream for DiscoveryService {\n.peer_store()\n.add_discovered_addr(&peer_id, addr)\n{\n- warn!(target: \"network\", \"add_discovered_addr failed {:?}\", peer_id);\n+ debug!(target: \"network\", \"add_discovered_addr failed {:?}\", peer_id);\n}\n}\...
Rust
MIT License
nervosnetwork/ckb
chore: Reduce log level
1
chore
null
531,793
11.04.2019 12:50:56
-3,600
04f3d6791c6d38586df0de9348a17807b79b2aa3
fix(ui): don't crash on null grid
[ { "change_type": "MODIFY", "diff": "@@ -44,7 +44,7 @@ const AlertGrid = observer(\n// used to call forcePack() which will repack all grid elements\n// (alert groups), this needs to be called if any group size changes\nmasonryRepack = action(() => {\n- if (this.masonryComponentReference.ref !== false) {\n+ i...
TypeScript
Apache License 2.0
prymitive/karma
fix(ui): don't crash on null grid
1
fix
ui
603,467
11.04.2019 12:56:34
-3,600
578b9cf69439fc690935ac22d5c12e9611dd0ab0
chore(ci): Use latest minor release of node 6, instead of some ancient one that Travis picks up by d
[ { "change_type": "MODIFY", "diff": "@@ -12,7 +12,7 @@ notifications:\non_failure: always # options: [always|never|change] default: always\non_start: never # options: [always|never|change] default: always\nnode_js:\n- - '6'\n+ - '6.17'\n- '8'\n- '10'\nbefore_install: scripts/travis/before_install.sh\n", ...
TypeScript
Apache License 2.0
serenity-js/serenity-js
chore(ci): Use latest minor release of node 6, instead of some ancient one that Travis picks up by d
1
chore
ci
127,939
11.04.2019 13:33:14
-10,800
02ff5548a668c38cfea2a000e15be97fccc6fc33
test(design): added test for margin updates
[ { "change_type": "MODIFY", "diff": "@@ -67,7 +67,7 @@ exports[`Banner Closable renders with default vertical layout 1`] = `\n-ms-flex-align: center;\nalign-items: center;\nfont-family: inherit;\n- background-color: #1a3442;\n+ background-color: #142b37;\nborder-radius: 4px;\n}\n@@ -171,7 +171,7 @@ exports[`...
TypeScript
MIT License
coingaming/moon-design
test(design): added test for margin updates
1
test
design
679,913
11.04.2019 13:37:41
-3,600
b5da3b2cd7aad078c3d0af33695515b7b91608b1
feat(webgl): add option to throw error if missing GL extension
[ { "change_type": "MODIFY", "diff": "@@ -40,11 +40,16 @@ export const glCanvas = (opts: Partial<WeblGLCanvasOpts> = {}) => {\n};\n};\n-export const getExtensions = (gl: WebGLRenderingContext, ids: string[]) => {\n+export const getExtensions = (\n+ gl: WebGLRenderingContext,\n+ ids: string[],\n+ required = tr...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(webgl): add option to throw error if missing GL extension
1
feat
webgl
127,946
11.04.2019 13:40:58
-10,800
d3cc4da35a3b5eb51e7ec9ac4b32ecb891c9f538
feat(icons): hamburger menu icon
[ { "change_type": "ADD", "diff": "+<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n+<rect y=\"0.09375\" width=\"16\" height=\"2\" rx=\"1\" fill=\"#8697A2\"/>\n+<rect x=\"4\" y=\"6.09375\" width=\"12\" height=\"2\" rx=\"1\" fill=\"#8697A2\"/>\n+<rect ...
TypeScript
MIT License
coingaming/moon-design
feat(icons): hamburger menu icon
1
feat
icons
71,663
11.04.2019 13:50:43
25,200
8521b6f0f33cb2378aa7f5ece143215560c2469f
fix(decdk): set the timeout in the schema tests to 10 seconds.
[ { "change_type": "MODIFY", "diff": "@@ -9,6 +9,9 @@ const fixturedir = path.join(__dirname, 'fixture');\n// tslint:disable:no-console\n+// JSII often does not complete in the default 5 second Jest timeout\n+jest.setTimeout(10_000);\n+\nlet typesys: reflect.TypeSystem;\nbeforeAll(async () => {\n", "new_p...
TypeScript
Apache License 2.0
aws/aws-cdk
fix(decdk): set the timeout in the schema tests to 10 seconds. (#2250)
1
fix
decdk
679,913
11.04.2019 14:04:59
-3,600
041981156b58ea2577e9bcabce4f198d6fb2d52d
feat(examples): add param tweens & fps counter
[ { "change_type": "MODIFY", "diff": "+import { IDeref } from \"@thi.ng/api\";\nimport { sin } from \"@thi.ng/dsp\";\nimport { start } from \"@thi.ng/hdom\";\nimport { canvasWebGL2 } from \"@thi.ng/hdom-components\";\nimport { lookAt, perspective, transform44 } from \"@thi.ng/matrices\";\n-import { map, repea...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(examples): add param tweens & fps counter
1
feat
examples
104,818
11.04.2019 14:06:23
18,000
57633461167d2bcfa3d4a9e421a0c1105c175a8a
fix(statefultable): last page doesn't advance
[ { "change_type": "MODIFY", "diff": "@@ -32,7 +32,7 @@ const StatefulTable = ({ data: initialData, expandedData, ...other }) => {\nview: initialState,\nactions: callbackActions,\nlightweight,\n- } = merge({}, defaultProps(other), other);\n+ } = merge({}, defaultProps({ data: initialData, ...other }), other);...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(statefultable): last page doesn't advance
1
fix
statefultable
603,467
11.04.2019 14:26:23
-3,600
f7e07d637499c04da74b05ed8a8f51e7ba2ee2df
chore(core): Drop support for Node 6 (EOL)
[ { "change_type": "MODIFY", "diff": "@@ -12,7 +12,6 @@ notifications:\non_failure: always # options: [always|never|change] default: always\non_start: never # options: [always|never|change] default: always\nnode_js:\n- - '6.17'\n- '8'\n- '10'\nbefore_install: scripts/travis/before_install.sh\n", "new_path...
TypeScript
Apache License 2.0
serenity-js/serenity-js
chore(core): Drop support for Node 6 (EOL)
1
chore
core
71,186
11.04.2019 15:00:04
-7,200
f216f962e4db31eb5749ef405cf4f1227a713f40
fix(acm): enabled validation of certificates on the zone name As it is now, only certificates with subdomains are correctly validated Got help from to find and correct the issue
[ { "change_type": "MODIFY", "diff": "@@ -83,7 +83,7 @@ export class DnsValidatedCertificate extends cdk.Construct implements ICertifica\nprotected validate(): string[] {\nconst errors: string[] = [];\n// Ensure the zone name is a parent zone of the certificate domain name\n- if (!this.domainName.endsWith('.'...
TypeScript
Apache License 2.0
aws/aws-cdk
fix(acm): enabled validation of certificates on the zone name (#2133) As it is now, only certificates with subdomains are correctly validated Got help from @njlaw to find and correct the issue
1
fix
acm
679,913
11.04.2019 15:16:51
-3,600
9a2087dee5292d27107c98530faa49a7a33e6257
feat(diff): add DiffMode.ONLY_DISTANCE_LINEAR_ONLY_CHANGES, add tests
[ { "change_type": "MODIFY", "diff": "@@ -5,6 +5,7 @@ export type DiffKeyMap<T> = IObjectOf<T>;\nexport const enum DiffMode {\nONLY_DISTANCE,\nONLY_DISTANCE_LINEAR,\n+ ONLY_DISTANCE_LINEAR_ONLY_CHANGES,\nFULL\n}\n", "new_path": "packages/diff/src/api.ts", "old_path": "packages/diff/src/api.ts" }, ...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(diff): add DiffMode.ONLY_DISTANCE_LINEAR_ONLY_CHANGES, add tests
1
feat
diff
679,913
11.04.2019 15:18:28
-3,600
f2efaa5427f576aa25f57c3d877769a388067a97
perf(hdom): minor update diffTree() re-order diff state checks to prioritize unchanges results
[ { "change_type": "MODIFY", "diff": "@@ -101,6 +101,7 @@ export const diffTree = <T>(\nconst offsets = buildIndex(prevLength + 1);\nfor (i = 2, ii = 6; ii < numEdits; i++, ii += 3) {\nstatus = edits[ii];\n+ if (!status) continue;\nif (status === -1) {\n// element removed / edited?\nval = edits[ii + 2];\n@@ -...
TypeScript
Apache License 2.0
thi-ng/umbrella
perf(hdom): minor update diffTree() - re-order diff state checks to prioritize unchanges results
1
perf
hdom
603,467
11.04.2019 15:29:37
-3,600
0da74d1ff158e83360c622f4813b5129206cef4a
chore(core): Configured Travis to execute builds on Node 8 and 10
[ { "change_type": "MODIFY", "diff": "@@ -12,7 +12,6 @@ notifications:\non_failure: always # options: [always|never|change] default: always\non_start: never # options: [always|never|change] default: always\nnode_js:\n- - '6'\n- '8'\n- '10'\nbefore_install: scripts/travis/before_install.sh\n", "new_path": ...
TypeScript
Apache License 2.0
serenity-js/serenity-js
chore(core): Configured Travis to execute builds on Node 8 and 10
1
chore
core
304,866
11.04.2019 15:29:38
25,200
01ec679ec0db44d28086103db194772fa9c3a39b
chore: fix up after rebase
[ { "change_type": "MODIFY", "diff": "@@ -8,15 +8,11 @@ import (\n_ \"github.com/influxdata/flux/builtin\"\n- \"github.com/influxdata/flux\"\n\"github.com/influxdata/flux/ast\"\n\"github.com/influxdata/flux/cmd/flux/cmd\"\n\"github.com/influxdata/flux/csv\"\n- \"github.com/influxdata/flux/interpreter\"\n\"git...
Go
MIT License
influxdata/flux
chore: fix up after rebase
1
chore
null
791,776
11.04.2019 16:16:15
14,400
a95fd1d0be04a9aabbc53c65ba0efd5883f5d087
docs(readme): add mention of free tier of Foo integration
[ { "change_type": "MODIFY", "diff": "@@ -280,7 +280,7 @@ This section details services that have integrated Lighthouse data. If you're wo\n* **[Fluxguard](https://fluxguard.com/)** - Fluxguard provides website DOM change monitoring orchestrated with Google Puppeteer, and audited by Lighthouse. Fluxguard is a...
JavaScript
Apache License 2.0
googlechrome/lighthouse
docs(readme): add mention of free tier of Foo integration (#8160)
1
docs
readme
217,922
11.04.2019 16:50:45
-7,200
fe2f1a0b735781185ea9ffd28a7887e70bfe4084
feat: new feature: GC supply list generator closes
[ { "change_type": "MODIFY", "diff": "@@ -32,6 +32,10 @@ const routes: Routes = [\npath: 'gathering-location',\nloadChildren: './pages/gathering-location/gathering-location.module#GatheringLocationModule'\n},\n+ {\n+ path: 'gc-supply',\n+ loadChildren: './pages/gc-supply/gc-supply.module#GcSupplyModule'\n+ },...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat: new feature: GC supply list generator closes #596
1
feat
null
791,834
11.04.2019 16:52:23
25,200
8d5ca69a0c1b494d456dd82b39134232c06f2505
misc: fix bad auto-merge
[ { "change_type": "MODIFY", "diff": "@@ -143,7 +143,6 @@ module.exports = [\n}],\n},\n},\n- },\n'dom-size': {\nscore: 1,\nrawValue: 31,\n@@ -157,4 +156,5 @@ module.exports = [\n},\n},\n},\n+ },\n];\n", "new_path": "lighthouse-cli/test/smokehouse/dobetterweb/dbw-expectations.js", "old_path": "lighthou...
JavaScript
Apache License 2.0
googlechrome/lighthouse
misc: fix bad auto-merge (#8201)
1
misc
null
304,907
11.04.2019 16:54:41
-7,200
eb409af9157154b846ab06b6c974052cb57ea6df
fix(examples): change example name to make go vet pass
[ { "change_type": "MODIFY", "diff": "@@ -19,7 +19,7 @@ import (\n\"github.com/influxdata/flux/values\"\n)\n-func ExampleLibrary_fromGenerator() {\n+func Example_fromGenerator() {\nt := `import g \"generate\"\ng.from(start: 1993-02-16T00:00:00Z, stop: 1993-02-16T00:03:00Z, count: 5, fn: (n) => 1)`\n", "ne...
Go
MIT License
influxdata/flux
fix(examples): change example name to make go vet pass (#1151)
1
fix
examples
815,598
11.04.2019 17:13:19
-28,800
6ec071792f0a24f6718ee7820a4f9083c59dd8b3
chore: fix package script
[ { "change_type": "MODIFY", "diff": "@@ -35,7 +35,7 @@ if [ -n \"$TRAVIS_TAG\" -a -n \"$GITHUB_TOKEN\" -a -n \"$REL_PKG\" ]; then\nmkdir \"releases/$PKG_NAME\"\nmv target/release/ckb \"releases/$PKG_NAME\"\ncp README.md CHANGELOG.md COPYING \"releases/$PKG_NAME\"\n- cp -R devtools/init/ \"releases/$PKG_NAME\...
Rust
MIT License
nervosnetwork/ckb
chore: fix package script
1
chore
null
217,922
11.04.2019 17:15:25
-7,200
f03a1f152fa6eafcc8ac737e5e75ab5e4cad0edc
feat(alarms): new button to toggle groups collapse state
[ { "change_type": "MODIFY", "diff": "(click)=\"newCustomAlarm()\">\n<i nz-icon type=\"form\"></i>\n</button>\n+ <button nz-button nzShape=\"circle\" nzType=\"primary\" nz-tooltip nzTitle=\"{{'ALARMS.Toggle_collapse' | translate}}\"\n+ (click)=\"toggleCollapse()\">\n+ <i nz-icon type=\"sliders\"></i>\n+ </but...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(alarms): new button to toggle groups collapse state
1
feat
alarms
217,922
11.04.2019 17:46:57
-7,200
c22c8076a57342335a5a21718bc673d5d2a1bc70
feat(alarms): added a folder icon to sidebar to show folder name
[ { "change_type": "MODIFY", "diff": "@@ -62,7 +62,12 @@ export class AlarmsFacade {\n...alarmsPageDisplay.noGroup,\n...[].concat.apply([], alarmsPageDisplay.groupedAlarms\n.filter(groupedAlarms => groupedAlarms.group.enabled)\n- .map(grouped => grouped.alarms))\n+ .map(grouped => {\n+ return grouped.alarms.m...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(alarms): added a folder icon to sidebar to show folder name
1
feat
alarms
217,922
11.04.2019 17:57:57
-7,200
d8c3903761c12a48c995134e3e9009dbd4b6c48b
chore: small fix on changelog
[ { "change_type": "MODIFY", "diff": "@@ -6,12 +6,6 @@ All notable changes to this project will be documented in this file. See [standa\n## [5.2.5](https://github.com/Supamiu/ffxiv-teamcraft/compare/v5.2.3...v5.2.5) (2019-04-11)\n-### Bug Fixes\n-\n-* **fishing-log:** fixed an issue with spearfishing log not ...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: small fix on changelog
1
chore
null
679,913
11.04.2019 18:24:05
-3,600
68c4b456efa19d2272e23c71cc5d2b469de05ba9
feat(rstream-gestures): add zoomDelta output
[ { "change_type": "MODIFY", "diff": "@@ -13,7 +13,7 @@ Unified mouse, mouse wheel & single-touch event stream abstraction.\nStream emits tuples of:\n```ts\n-[type, {pos, click?, delta?, zoom}]\n+[type, { pos, click?, delta?, zoom, zoomDelta }]\n```\nThe `click` and `delta` values are only present if `type ==...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(rstream-gestures): add zoomDelta output
1
feat
rstream-gestures
791,723
11.04.2019 18:45:19
25,200
48ee485fe9a0da88057d64bc6d201f63270629c4
misc(ci): build report and deploy to now.sh on every commit
[ { "change_type": "ADD", "diff": "+#!/usr/bin/env bash\n+\n+##\n+# @license Copyright 2019 Google Inc. All Rights Reserved.\n+# Licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www...
JavaScript
Apache License 2.0
googlechrome/lighthouse
misc(ci): build report and deploy to now.sh on every commit (#8194)
1
misc
ci
104,818
11.04.2019 19:39:16
18,000
ef936fd0d22e88e6d753ffc95a67a6da854cda03
fix(table): className should apply to paging also don't show if empty
[ { "change_type": "MODIFY", "diff": "@@ -238,6 +238,7 @@ const Table = props => {\nactions,\noptions,\nlightweight,\n+ className,\ni18n,\n...others\n} = merge({}, defaultProps(props), props);\n@@ -278,7 +279,7 @@ const Table = props => {\nview.toolbar.search.value !== '');\nreturn (\n- <div id={id}>\n+ <div ...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(table): className should apply to paging also don't show if empty
1
fix
table
217,922
11.04.2019 19:56:19
-7,200
3c8a447369c89fbc977c49fb7bcc9dedb3c4b850
fix(gc-supply): fixed an issue with wrong import breaking the page
[ { "change_type": "MODIFY", "diff": "@@ -3,10 +3,9 @@ import { combineLatest, concat, Observable, of, Subject } from 'rxjs';\nimport { GearSet } from '../../simulator/model/gear-set';\nimport { AuthFacade } from '../../../+state/auth.facade';\nimport { FormBuilder, FormGroup, Validators } from '@angular/form...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(gc-supply): fixed an issue with wrong import breaking the page
1
fix
gc-supply
815,598
11.04.2019 20:09:05
-28,800
45a5fca20ec431720c008948981e9f25bc4ca2f7
docs: how to get old versions of ckb
[ { "change_type": "MODIFY", "diff": "We will publish binaries for each release via [Github Releases](https://github.com/nervosnetwork/ckb/releases). If your system\nis listed there, you can download the package directory.\n+There is also a repository [ckb-nightly](https://github.com/nervosnetwork/ckb-nightly...
Rust
MIT License
nervosnetwork/ckb
docs: how to get old versions of ckb
1
docs
null
815,598
11.04.2019 20:32:53
-28,800
1a759e28fbd30af77a24ebc7f3d92fe7b8836cf4
chore: unshallow repo before building package [skip ci]
[ { "change_type": "MODIFY", "diff": "@@ -26,6 +26,7 @@ if [ \"$TRAVIS_BRANCH\" = master -o \"$TRAVIS_BRANCH\" = staging -o \"$TRAVIS_BRANCH\"\nfi\nif [ -n \"$TRAVIS_TAG\" -a -n \"$GITHUB_TOKEN\" -a -n \"$REL_PKG\" ]; then\n+ git fetch --unshallow\nmake build\nrm -rf releases\nmkdir releases\n", "new_path...
Rust
MIT License
nervosnetwork/ckb
chore: unshallow repo before building package [skip ci]
1
chore
null
67,494
11.04.2019 20:39:41
-7,200
9130e406396acc10e9841b67e6fb48ea68c32524
feat(router): add navigation guardian
[ { "change_type": "MODIFY", "diff": "import { inject } from '@aurelia/kernel';\nimport { customElement } from '@aurelia/runtime';\n-import { Router } from '@aurelia/router';\n+import { Guardian, Router, GuardTypes } from '@aurelia/router';\nimport { About } from './components/about';\nimport { Authors } from...
TypeScript
MIT License
aurelia/aurelia
feat(router): add navigation guardian
1
feat
router
815,601
11.04.2019 20:59:08
-28,800
3cf197cfd9eb96ab1d55a22a41489caf3268bc01
refactor: remove unused bloom_filter protocol
[ { "change_type": "MODIFY", "diff": "@@ -321,7 +321,7 @@ impl PeersRegistry {\n&self.peers\n}\n- fn peer_indexes_guard(&self) -> &RwLock<FnvHashMap<PeerIndex, PeerId>> {\n+ pub fn peer_indexes_guard(&self) -> &RwLock<FnvHashMap<PeerIndex, PeerId>> {\n&self.peer_id_by_index\n}\n", "new_path": "network/src...
Rust
MIT License
nervosnetwork/ckb
refactor: remove unused bloom_filter protocol
1
refactor
null
76,605
11.04.2019 21:36:43
-7,200
064985e4a61392f9b4121c0bcac5827945fe7082
feat: Add Dense Neural Network class
[ { "change_type": "ADD", "diff": "+/*\n+ * Copyright (c) AXA Shared Services Spain S.A.\n+ *\n+ * Permission is hereby granted, free of charge, to any person obtaining\n+ * a copy of this software and associated documentation files (the\n+ * \"Software\"), to deal in the Software without restriction, includi...
JavaScript
MIT License
axa-group/nlp.js
feat: Add Dense Neural Network class
1
feat
null
76,605
11.04.2019 21:37:44
-7,200
52f6023163639e0eed1c4b9ed529ae49cd9c6488
fix: Add test no theta for LRC
[ { "change_type": "MODIFY", "diff": "@@ -125,6 +125,20 @@ describe('Logistic Regression Classifier', () => {\nexpect(classifications2[1].label).toEqual('one');\nexpect(classifications2[1].value).toBeLessThan(0.05);\n});\n+ test('Should return empty array if no thetha', async () => {\n+ const classifier = get...
JavaScript
MIT License
axa-group/nlp.js
fix: Add test no theta for LRC
1
fix
null
76,605
11.04.2019 21:38:42
-7,200
4f46b51a79cca1ff7e9b7803919f2bb3ee65275d
feat: Now Brain Classifier uses new neural network
[ { "change_type": "MODIFY", "diff": "* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n*/\n-const { NeuralNetwork } = require('brain.js');\n+const NeuralNetwork = require('./neural-network');\nconst Classifier = require('./classifier');\n/**\n- * Classifier using Brain.js Neural Network\n+ *...
JavaScript
MIT License
axa-group/nlp.js
feat: Now Brain Classifier uses new neural network
1
feat
null
76,605
11.04.2019 21:39:21
-7,200
4e4464e3fa49c661cb84a4c71e3d19aa0365b742
feat: Change Binary Relevance NN to use new Neural Network class
[ { "change_type": "MODIFY", "diff": "* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n*/\n-const { NeuralNetwork } = require('brain.js');\n+const NeuralNetwork = require('./neural-network');\nconst Classifier = require('./classifier');\n/**\n- * Classifier using Brain.js Neural Network\n+ *...
JavaScript
MIT License
axa-group/nlp.js
feat: Change Binary Relevance NN to use new Neural Network class
1
feat
null
76,605
11.04.2019 21:39:52
-7,200
53f67c77bfd89942071659cc486f3c5c81c16db6
fix: now console bot needs a lower threshold
[ { "change_type": "MODIFY", "diff": "@@ -25,7 +25,7 @@ const readline = require('readline');\nconst { NlpManager } = require('../../lib');\nconst trainnlp = require('./train-nlp');\n-const threshold = 0.7;\n+const threshold = 0.5;\nconst nlpManager = new NlpManager({ languages: ['en'] });\nfunction say(messa...
JavaScript
MIT License
axa-group/nlp.js
fix: now console bot needs a lower threshold
1
fix
null
76,605
11.04.2019 21:40:17
-7,200
43643088faefb5a914dd553f7b73de3e99c7bf38
feat: Remove brain dependency
[ { "change_type": "MODIFY", "diff": "\"acorn\": {\n\"version\": \"5.7.1\",\n\"resolved\": \"https://registry.npmjs.org/acorn/-/acorn-5.7.1.tgz\",\n- \"integrity\": \"sha512-d+nbxBUGKg7Arpsvbnlq61mc12ek3EY8EQldM3GPAhWJ1UVxC6TDGbIvUMNU6obBX3i1+ptCIzV4vq0gFPEGVQ==\"\n+ \"integrity\": \"sha512-d+nbxBUGKg7Arpsvbn...
JavaScript
MIT License
axa-group/nlp.js
feat: Remove brain dependency
1
feat
null
531,793
11.04.2019 22:22:59
-3,600
765be40c7f0b7267ddc1a5ad151505bef6b3a46d
fix(tests): add missing test coverage for FontFaceObserver timeouts
[ { "change_type": "MODIFY", "diff": "@@ -2,6 +2,8 @@ import React from \"react\";\nimport { shallow } from \"enzyme\";\n+import { advanceBy, clear } from \"jest-date-mock\";\n+\nimport { MockAlert, MockAlertGroup } from \"__mocks__/Alerts.js\";\nimport { AlertStore } from \"Stores/AlertStore\";\nimport { Set...
TypeScript
Apache License 2.0
prymitive/karma
fix(tests): add missing test coverage for FontFaceObserver timeouts
1
fix
tests
76,605
11.04.2019 22:28:51
-7,200
4598729e3d6e9b6871704ec0bd961236e2bc1e5d
Build: Up to version 3.0.0
[ { "change_type": "MODIFY", "diff": "{\n\"name\": \"node-nlp\",\n- \"version\": \"2.5.2\",\n+ \"version\": \"3.0.0\",\n\"description\": \"Library for NLU (Natural Language Understanding) done in Node.js\",\n\"main\": \"lib/index.js\",\n\"scripts\": {\n\"lintfix\": \"eslint --fix lib/**\",\n\"precommit\": \"l...
JavaScript
MIT License
axa-group/nlp.js
Build: Up to version 3.0.0
1
build
null
815,573
11.04.2019 22:31:57
-28,800
980c99c6dd70a3b3433e7d133880ed3440958676
fix: Insert repeat transaction in pool
[ { "change_type": "MODIFY", "diff": "@@ -131,12 +131,12 @@ dependencies = [\n[[package]]\nname = \"bincode\"\n-version = \"1.1.2\"\n+version = \"1.1.3\"\nsource = \"registry+https://github.com/rust-lang/crates.io-index\"\ndependencies = [\n\"autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-inde...
Rust
MIT License
nervosnetwork/ckb
fix: Insert repeat transaction in pool
1
fix
null
815,590
11.04.2019 22:51:48
-28,800
d5fd9881248ec7123f9fc4c3b0389a7312922714
fix: update cfb verifier
[ { "change_type": "MODIFY", "diff": "@@ -52,6 +52,12 @@ pub mod ckb {\nlet vtab = tab.vtable();\nlet vtab_num_bytes = vtab.num_bytes();\n+ let object_inline_num_bytes = vtab.object_inline_num_bytes();\n+ if vtab_num_bytes < flatbuffers::SIZE_VOFFSET + flatbuffers::SIZE_VOFFSET\n+ || object_inline_num_bytes <...
Rust
MIT License
nervosnetwork/ckb
fix: update cfb verifier
1
fix
null
815,745
11.04.2019 23:18:18
-10,800
7d73710dcfb36ca66d50e94d95be6530d69813f7
chore(release): 2.17.0
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"2.17.0\"></a>\n+# [2.17.0](https://github.com/ng-select/ng-select/compare/v2.16.4...v...
TypeScript
MIT License
ng-select/ng-select
chore(release): 2.17.0
1
chore
release
471,619
11.04.2019 23:53:57
-10,800
ce24a6fbb25e3d61686b3b8aa98d5b10187920f3
docs: change UI5 name in component-libraries deep dive
[ { "change_type": "MODIFY", "diff": "@@ -29,7 +29,7 @@ The hardest part of any project is often getting content onto that first blank p\n- [Morningstar](http://designsystem.morningstar.com/components/component-status.html)\nThe Morningstar Design System combines vanilla HTML/CSS with web components in just t...
JavaScript
MIT License
open-wc/open-wc
docs: change UI5 name in component-libraries deep dive
1
docs
null
815,598
12.04.2019 00:21:45
-28,800
65731656f2c785c2b358f5b89412fc440c727219
chore: ckb version tweaks rerun build.rs to get latest version info when any file has changed. include pre version.
[ { "change_type": "MODIFY", "diff": "fn main() {\n- // Don't rebuild even if nothing changed\n- println!(\"cargo:rerun-if-changed=build.rs\");\n// forward git repo hashes we build at\nprintln!(\n\"cargo:rustc-env=COMMIT_DESCRIBE={}\",\n", "new_path": "build.rs", "old_path": "build.rs" }, { "c...
Rust
MIT License
nervosnetwork/ckb
chore: ckb version tweaks (#449) - rerun build.rs to get latest version info when any file has changed. - include pre version.
1
chore
null
815,590
12.04.2019 00:48:00
-28,800
ef164376a3fbfa822a03bcd40381ffe04a21e99a
fix: tx-valid-since rebase
[ { "change_type": "MODIFY", "diff": "@@ -7,7 +7,6 @@ use ckb_core::extras::BlockExt;\nuse ckb_core::service::{Request, DEFAULT_CHANNEL_SIZE, SIGNAL_CHANNEL_SIZE};\nuse ckb_core::transaction::ProposalShortId;\nuse ckb_core::{header::Header, BlockNumber};\n-use ckb_db::batch::Batch;\nuse ckb_notify::NotifyCont...
Rust
MIT License
nervosnetwork/ckb
fix: tx-valid-since rebase
1
fix
null
67,476
12.04.2019 04:54:08
-7,200
4a3d7a2eaba9eb167509257fdad45d2a81c536e0
fix(di): make the decorators compatible with ts strict mode for end users
[ { "change_type": "MODIFY", "diff": "@@ -6,7 +6,7 @@ import { IResourceType } from './resource';\nconst slice = Array.prototype.slice;\n-export type ResolveCallback<T = unknown> = (handler?: IContainer, requestor?: IContainer, resolver?: IResolver) => T;\n+export type ResolveCallback<T = any> = (handler?: IC...
TypeScript
MIT License
aurelia/aurelia
fix(di): make the decorators compatible with ts strict mode for end users
1
fix
di
67,476
12.04.2019 05:01:02
-7,200
64a8d7dbbec88bd89abbc608c2dc601439769143
chore(all): suppress no-any where they can't be solved
[ { "change_type": "MODIFY", "diff": "@@ -4,6 +4,8 @@ import { PLATFORM } from './platform';\nimport { Reporter, Tracer } from './reporter';\nimport { IResourceType } from './resource';\n+// tslint:disable: no-any\n+\nconst slice = Array.prototype.slice;\nexport type ResolveCallback<T = any> = (handler?: ICon...
TypeScript
MIT License
aurelia/aurelia
chore(all): suppress no-any where they can't be solved
1
chore
all
67,476
12.04.2019 05:03:05
-7,200
a07803148767d42c345c2e475e43f02fb295fdf0
chore(kernel): fix lint error
[ { "change_type": "MODIFY", "diff": "@@ -88,7 +88,7 @@ export type ConstructableClass<T, C = IIndexable> = C & {\nexport type InterfaceSymbol<T = any> = (target: Injectable<T>, property: string, index: number) => any;\n-export type InjectArray = ReadonlyArray<InterfaceSymbol<any> | Constructable | string>;\n...
TypeScript
MIT License
aurelia/aurelia
chore(kernel): fix lint error
1
chore
kernel
504,019
12.04.2019 08:43:00
14,400
04aba61e7de6ab26ee9d1d1c54c7a996309c9991
fix(table): Make these types optional: transforms, cellTransforms, formatters, and cellFormatters fix
[ { "change_type": "MODIFY", "diff": "@@ -62,9 +62,9 @@ export interface ISeparator {\nexport interface ICell {\ntitle: String;\ntransforms: Array<Function>;\n- cellTransforms: Array<Function>;\n- formatters: Array<Function>;\n- cellFormatters: Array<Function>;\n+ cellTransforms?: Array<Function>;\n+ formatte...
TypeScript
MIT License
patternfly/patternfly-react
fix(table): Make these types optional: transforms, cellTransforms, formatters, and cellFormatters (#1663) fix #1463
1
fix
table
103,468
12.04.2019 09:31:55
-7,200
9eeb8e246ce98438b1b67cccb16e9e3fa49a2242
fix: list item height and margins fixes
[ { "change_type": "MODIFY", "diff": "@@ -48,7 +48,7 @@ export default class ListIcon extends React.Component<Props> {\nconst styles = StyleSheet.create({\nitem: {\n- margin: 8,\n+ marginRight: 16,\nheight: 40,\nwidth: 40,\nalignItems: 'center',\n", "new_path": "src/components/List/ListIcon.js", "old_...
TypeScript
MIT License
callstack/react-native-paper
fix: list item height and margins fixes #914
1
fix
null
127,946
12.04.2019 11:22:15
-10,800
9d4f85aad53a8e37cb51bce68d65ce9510392982
feat(link): secondary link
[ { "change_type": "MODIFY", "diff": "@@ -15,6 +15,14 @@ Links are used to navigate users through the user-interface via anchors or embed\n<Link href=\"#\">I'm a link</Link>\n```\n+## Secondary\n+\n+```jsx react-live\n+<Link href=\"#\" secondary>\n+ I'm a Secondary link\n+</Link>\n+```\n+\n## Elements\n### Bu...
TypeScript
MIT License
coingaming/moon-design
feat(link): secondary link
1
feat
link
815,593
12.04.2019 11:55:08
-32,400
586b89c1a7a21d8aba185a328053ef08777bd5c9
chore: remove some unused `Send` and `static` trait bounds
[ { "change_type": "MODIFY", "diff": "@@ -451,7 +451,7 @@ pub struct NetworkService {\np2p_service: Service<EventHandler>,\nnetwork_state: Arc<NetworkState>,\n// Background services\n- bg_services: Vec<Box<dyn Future<Item = (), Error = ()> + Send + 'static>>,\n+ bg_services: Vec<Box<dyn Future<Item = (), Erro...
Rust
MIT License
nervosnetwork/ckb
chore: remove some unused `Send` and `static` trait bounds
1
chore
null
815,593
12.04.2019 12:10:14
-32,400
d6ca06e71bdc30af197f6b82fe32c908d8001cbe
chore: remove unused ChainIndex file
[ { "change_type": "DELETE", "diff": "-use crate::store::{ChainKVStore, ChainStore, StoreBatch};\n-use crate::{COLUMN_BLOCK_BODY, COLUMN_INDEX, COLUMN_META, COLUMN_TRANSACTION_ADDR};\n-use bincode::deserialize;\n-use ckb_core::block::Block;\n-use ckb_core::extras::{BlockExt, TransactionAddress};\n-use ckb_cor...
Rust
MIT License
nervosnetwork/ckb
chore: remove unused ChainIndex file
1
chore
null
815,573
12.04.2019 12:47:27
-28,800
53c9ecac5bc150f2744831d852a9c1e14db26d94
fix: Repeat process orphan block
[ { "change_type": "MODIFY", "diff": "@@ -54,6 +54,12 @@ impl OrphanBlockPool {\npub fn is_empty(&self) -> bool {\nself.len() == 0\n}\n+\n+ pub fn contains(&self, block: &Block) -> bool {\n+ self.blocks\n+ .read()\n+ .contains_key(block.header().parent_hash())\n+ }\n}\n#[cfg(test)]\n", "new_path": "sync/s...
Rust
MIT License
nervosnetwork/ckb
fix: Repeat process orphan block
1
fix
null
815,598
12.04.2019 14:22:31
-28,800
cbee1d4f8d57b2258e97b00fe436f5c4e01c151a
chore: update Dockerfile [skip ci]
[ { "change_type": "MODIFY", "diff": "+README.md\n+ckb.toml\n+ckb-miner.toml\ntarget/\n+data/\n+specs/\n+docs/\n+docker/\n", "new_path": ".dockerignore", "old_path": ".dockerignore" }, { "change_type": "MODIFY", "diff": "@@ -36,7 +36,10 @@ The contribution workflow is described in [CONTRIB...
Rust
MIT License
nervosnetwork/ckb
chore: update Dockerfile [skip ci]
1
chore
null
304,891
12.04.2019 14:53:43
25,200
c4d9954969db3be7469732d5524419247af68146
ci: use go1.12 for builds And use --no-install-recommends flag to apt-get install, and clear out apt lists cache at the end to reduce image size, like various official Docker images do.
[ { "change_type": "MODIFY", "diff": "-# This file describes an image that is capabale of building Flux.\n+# This file describes an image that is capable of building Flux.\n-FROM golang:1.11.4\n+FROM golang:1.12\n-RUN apt-get update && apt-get install -y ruby ragel=6.9-1.1+b1\n+RUN apt-get update && apt-get i...
Go
MIT License
influxdata/flux
ci: use go1.12 for builds And use --no-install-recommends flag to apt-get install, and clear out apt lists cache at the end to reduce image size, like various official Docker images do.
1
ci
null
815,577
12.04.2019 15:02:02
-28,800
db84513bb10aef2843526f94bd0410c00714e053
chore: upgrade p2p dependence
[ { "change_type": "MODIFY", "diff": "@@ -517,11 +517,11 @@ dependencies = [\n\"snap 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"stop-handler 0.9.0-pre\",\n\"tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)\",\n- \"tentacle 0.2.0-alpha.1 (git+https://github.com/ne...
Rust
MIT License
nervosnetwork/ckb
chore: upgrade p2p dependence
1
chore
null
815,598
12.04.2019 15:13:13
-28,800
900e53d2b43b8e35ab93bf8c6b3a3e111efce691
chore: deploy github releases as prerelease [skip ci]
[ { "change_type": "MODIFY", "diff": "@@ -42,6 +42,7 @@ deploy:\napi_key: \"$GITHUB_TOKEN\"\nfile: \"releases/ckb_${TRAVIS_TAG}_${REL_PKG}\"\nskip_cleanup: true\n+ prerelease: true\non:\ntags: true\ncondition: '\"$GITHUB_TOKEN\" != \"\" && \"$REL_PKG\" != \"\"'\n", "new_path": ".travis.yml", "old_path...
Rust
MIT License
nervosnetwork/ckb
chore: deploy github releases as prerelease [skip ci]
1
chore
null
127,939
12.04.2019 16:16:42
-10,800
fac483d09e73f387802880cdbca53a35dc85ef12
chore(user-portal): fix margin and padding for different element
[ { "change_type": "MODIFY", "diff": "@@ -8,6 +8,7 @@ export const OptionsBlock = styled.div({\npadding: spacing(),\nwidth: '100%',\nposition: 'relative',\n+ marginTop: spacing(),\n});\nexport const MessageBlock = styled.div({\n", "new_path": "portals/user-portal/src/app/cashier/components/amount-options/...
TypeScript
MIT License
coingaming/moon-design
chore(user-portal): fix margin and padding for different element
1
chore
user-portal
815,573
12.04.2019 16:26:26
-28,800
a12a5fd4b5600775f6f4a011ad6c362866337673
fix: Sqlite can not start
[ { "change_type": "MODIFY", "diff": "@@ -37,7 +37,6 @@ pub type PooledConnection = r2d2::PooledConnection<SqliteConnectionManager>;\nlazy_static! {\nstatic ref OPEN_FLAGS: OpenFlags = OpenFlags::SQLITE_OPEN_READ_WRITE\n| OpenFlags::SQLITE_OPEN_CREATE\n- | OpenFlags::SQLITE_OPEN_SHARED_CACHE\n| OpenFlags::SQL...
Rust
MIT License
nervosnetwork/ckb
fix: Sqlite can not start
1
fix
null
791,723
12.04.2019 16:28:41
25,200
2553a24d88c6698d44c0bf61fb31362cc2753dcd
report: extract init() function from report-template
[ { "change_type": "MODIFY", "diff": "@@ -36,7 +36,7 @@ limitations under the License.\n</script>\n<script>window.__LIGHTHOUSE_JSON__ = %%LIGHTHOUSE_JSON%%;</script>\n<script>\n- window.addEventListener('DOMContentLoaded', _ => {\n+ function __initLighthouseReport__() {\nconst dom = new DOM(document);\nconst ...
JavaScript
Apache License 2.0
googlechrome/lighthouse
report: extract init() function from report-template (#8228)
1
report
null
791,704
12.04.2019 17:07:57
25,200
6f68c49d1bdaebaa9068d3a6cfd21a16043ca2ce
report(redesign): new gauges, score scale, category headers, variables
[ { "change_type": "MODIFY", "diff": "\"message\": \"Passed audits\",\n\"description\": \"Section heading shown above a list of audits that are passing. 'Passed' here refers to a passing grade. This section is collapsed by default, as the user should be focusing on the failed audits instead. Users can click t...
JavaScript
Apache License 2.0
googlechrome/lighthouse
report(redesign): new gauges, score scale, category headers, variables (#8121)
1
report
redesign
127,939
12.04.2019 17:16:19
-10,800
6cafc510a34b753ffa3e3262354b8f3e724109f4
feat(deposit): payment list component
[ { "change_type": "ADD", "diff": "+import styled from '@emotion/styled';\n+import { spacing } from '@heathmont/sportsbet-utils';\n+\n+export const PaymentListBlock = styled.div({\n+ display: 'flex',\n+ flexDirection: 'row',\n+ overflow: 'auto',\n+ flexFlow: 'row nowrap',\n+ scrollSnapType: 'x mandatory',\n+ ...
TypeScript
MIT License
coingaming/moon-design
feat(deposit): payment list component
1
feat
deposit
791,690
12.04.2019 18:34:39
18,000
9823a5a7c6fcd69db3fa8693bf343cc13828a5aa
core: always run axe gatherer last
[ { "change_type": "MODIFY", "diff": "@@ -1081,9 +1081,6 @@ Object {\nObject {\n\"path\": \"chrome-console-messages\",\n},\n- Object {\n- \"path\": \"accessibility\",\n- },\nObject {\n\"path\": \"anchor-elements\",\n},\n@@ -1132,6 +1129,9 @@ Object {\nObject {\n\"path\": \"seo/tap-targets\",\n},\n+ Object {\n...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core: always run axe gatherer last (#8216)
1
core
null
531,793
12.04.2019 21:03:59
-3,600
2f243b8e166db79bcc175a1c43f8f46adae1229e
fix(ui): refactor browser window resize handler bricks.js already handles resize but it needs fixed width on elements to work properly
[ { "change_type": "MODIFY", "diff": "\"react-tippy\": \"1.2.3\",\n\"react-transition-group\": \"2.9.0\",\n\"react-truncate\": \"2.4.0\",\n- \"screen-orientation\": \"1.0.3\",\n\"whatwg-fetch\": \"3.0.0\"\n},\n\"scripts\": {\n", "new_path": "ui/package.json", "old_path": "ui/package.json" }, { ...
TypeScript
Apache License 2.0
prymitive/karma
fix(ui): refactor browser window resize handler bricks.js already handles resize but it needs fixed width on elements to work properly
1
fix
ui
815,593
12.04.2019 21:06:06
-32,400
7662ee0f0811f8d6e2a007000b898eafb5ffc004
chore: re-enable some clippy hint
[ { "change_type": "MODIFY", "diff": "@@ -12,8 +12,7 @@ use ckb_shared::cell_set::CellSetDiff;\nuse ckb_shared::chain_state::ChainState;\nuse ckb_shared::error::SharedError;\nuse ckb_shared::shared::Shared;\n-use ckb_shared::store::ChainStore;\n-use ckb_shared::store::StoreBatch;\n+use ckb_shared::store::{Cha...
Rust
MIT License
nervosnetwork/ckb
chore: re-enable some clippy hint
1
chore
null
815,598
12.04.2019 22:41:37
-28,800
4c3d2830d7b98323a80cc0c08648b5bfcf77d88c
docs: fix docker image name Use the full name `nervos/ckb`.
[ { "change_type": "MODIFY", "diff": "Start latest CKB release with default configuration:\n```bash\n-docker run -it ckb:latest run\n+docker run -it nervos/ckb:latest run\n```\n+See other\n+[tags](https://cloud.docker.com/u/nervos/repository/docker/nervos/ckb/tags)\n+listed in DockerHub.\n+\n+- Tag `latest` i...
Rust
MIT License
nervosnetwork/ckb
docs: fix docker image name Use the full name `nervos/ckb`.
1
docs
null
531,793
13.04.2019 00:43:38
-3,600
5836d72513d0be5ee9e3ec0e219bdf7b6c6a2dbc
fix(ui): fix grid animations Fade on mount wasn't working because it was placed at the wrong level. Animate group moves around the grid.
[ { "change_type": "MODIFY", "diff": ".components-animation-fade-appear-active,\n.components-animation-fade-enter-active {\nopacity: 1;\n- transition: opacity 0.15s ease-in;\n+ transition: all 0.3s ease-in;\n}\n.components-animation-fade-exit {\n}\n.components-animation-fade-exit-active {\nopacity: 0.01;\n- t...
TypeScript
Apache License 2.0
prymitive/karma
fix(ui): fix grid animations Fade on mount wasn't working because it was placed at the wrong level. Animate group moves around the grid.
1
fix
ui
67,494
13.04.2019 01:21:54
-7,200
0c7eaca626017b30a9a2d4c7d622541e239bc22d
feat(router): clean up guardian & move parameters next to component & refactor viewport defaults
[ { "change_type": "MODIFY", "diff": "float: right;\ntext-align: right;\n}\n+\n+ .login {\n+ border: 1px solid #777;\n+ background-color: #ff000055;\n+ padding: 25px;\n+ margin: 0;\n+ position: absolute;\n+ left: 50%;\n+ transform: translate(-50%, 0%);\n+ }\n</style>\n</head>\n", "new_path": "packages/__t...
TypeScript
MIT License
aurelia/aurelia
feat(router): clean up guardian & move parameters next to component & refactor viewport defaults
1
feat
router
67,494
13.04.2019 01:48:32
-7,200
e1a23afd3465267a16f929a7a673b768f59f78c4
feat(router): add configuration
[ { "change_type": "ADD", "diff": "+import { DI, IContainer, IRegistry } from '@aurelia/kernel';\n+\n+import { NavCustomElement } from './resources/nav';\n+import { ViewportCustomElement } from './resources/viewport';\n+\n+export {\n+ ViewportCustomElement,\n+ NavCustomElement,\n+};\n+\n+export const Viewport...
TypeScript
MIT License
aurelia/aurelia
feat(router): add configuration
1
feat
router
67,494
13.04.2019 02:52:21
-7,200
46ba5c73220cd6ec38364857fdf0387c810c11d5
feat(router): add IRouter
[ { "change_type": "MODIFY", "diff": "@@ -2,6 +2,17 @@ import { DI, IContainer, IRegistry } from '@aurelia/kernel';\nimport { NavCustomElement } from './resources/nav';\nimport { ViewportCustomElement } from './resources/viewport';\n+import { Router } from './router';\n+\n+export const RouterRegistration = Ro...
TypeScript
MIT License
aurelia/aurelia
feat(router): add IRouter
1
feat
router
679,913
13.04.2019 03:06:13
-3,600
200e3c5741c6dbf7e0ff99cb3e726c85b7dabd84
refactor(webgl): update TextureOpts
[ { "change_type": "MODIFY", "diff": "@@ -549,10 +549,10 @@ export interface TextureOpts {\nimage: ArrayBufferView | TexImageSource;\ntarget: GLenum;\ntype: GLenum;\n- filter: GLenum | GLenum[];\n- wrap: GLenum | GLenum[];\n- lod: GLenum[];\n- minMaxLevel: GLenum[];\n+ filter: GLenum | [GLenum, GLenum?];\n+ w...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(webgl): update TextureOpts
1
refactor
webgl
679,913
13.04.2019 03:07:33
-3,600
619e9efa6842939c6179268881b720f28d07186e
feat(strings): add hstr() (hollerith)
[ { "change_type": "ADD", "diff": "+import { Stringer } from \"./api\";\n+\n+/**\n+ * Formats given value `x` as Fortran style Hollerith string.\n+ *\n+ * ```\n+ * hstr(\"abc\") // \"3Habc\"\n+ * hstr(123.45) // \"6H123.45\"\n+ * hstr(\"\") // \"0H\"\n+ * hstr(null) // \"\"\n+ * ```\n+ *\n+ * https://en.wikip...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(strings): add hstr() (hollerith)
1
feat
strings
679,913
13.04.2019 03:33:59
-3,600
43426e5a4f17cd3ccb7237ecf5ad84b6e9f4706e
feat(iges): add new entities, options, extract addEntity, update enums switch to const enums where possible add common addEntity helper to simplify others add EntityOptions to allow specifying color & pattern
[ { "change_type": "MODIFY", "diff": "@@ -13,7 +13,7 @@ export enum Unit {\nUIN // microinches\n}\n-export enum Type {\n+export const enum Type {\nINT,\nFLOAT,\nSTR,\n@@ -22,14 +22,14 @@ export enum Type {\nPOINTER\n}\n-export enum SpecVersion {\n+export const enum SpecVersion {\nIGES50 = 8,\nIGES51 = 9,\nIGE...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(iges): add new entities, options, extract addEntity, update enums - switch to const enums where possible - add common addEntity helper to simplify others - add EntityOptions to allow specifying color & pattern
1
feat
iges
67,476
13.04.2019 03:52:47
-7,200
838b325eb1aede59f39f159caffb5dbad511c07e
perf(runtime): move collection observer initializers to observer constructors
[ { "change_type": "MODIFY", "diff": "@@ -355,6 +355,8 @@ for (const method of methods) {\ndef(observe[method], 'observing', { value: true, writable: false, configurable: false, enumerable: false });\n}\n+let enableArrayObservationCalled = false;\n+\nexport function enableArrayObservation(): void {\nfor (cons...
TypeScript
MIT License
aurelia/aurelia
perf(runtime): move collection observer initializers to observer constructors
1
perf
runtime
815,609
13.04.2019 09:26:34
-28,800
75d0bc734680f1745d1aa3e292d17257bd7e8876
refactor: don't have to build rocksdb when use all jsonrpc types
[ { "change_type": "MODIFY", "diff": "@@ -648,6 +648,7 @@ dependencies = [\n\"failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"faketime 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)\",\n+ \"jsonr...
Rust
MIT License
nervosnetwork/ckb
refactor: don't have to build rocksdb when use all jsonrpc types
1
refactor
null
722,013
13.04.2019 10:41:02
18,000
1725d089bd6e1a351723fab7e68924a66ec80f06
ci(release): hide email in a travis variable
[ { "change_type": "MODIFY", "diff": "@@ -65,7 +65,7 @@ jobs:\nscript:\n- yarn compile\n- git config --global user.name \"Vue Styleguidist Bot\"\n- - git config --global user.email \"cluedude@hotmail.com\"\n+ - git config --global user.email \"${BOT_EMAIL}\"\n- git remote set-url origin \"https://${GH_TOKEN}@...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
ci(release): hide email in a travis variable
1
ci
release
722,013
13.04.2019 10:45:51
18,000
0c4f4591271f3803e227df1a4a8027e70f0da6ed
ci: hide email from mergeback too
[ { "change_type": "MODIFY", "diff": "@@ -78,7 +78,7 @@ jobs:\ninstall: skip # bundle install is not required\nscript:\n- git config --global user.name \"Vue Styleguidist Bot\"\n- - git config --global user.email \"cluedude@hotmail.com\"\n+ - git config --global user.email \"${BOT_EMAIL}\"\n- git remote add g...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
ci: hide email from mergeback too
1
ci
null
217,922
13.04.2019 11:56:24
-7,200
056afa162a0778bb4027a41b40655cb22854dced
feat(gathering-location): added a new button to add alarm directly to a group
[ { "change_type": "MODIFY", "diff": "<div class=\"results\" *ngIf=\"results$ | async as results; else noResults\">\n<div *ngFor=\"let node of results\" [class.compact-node]=\"compactDisplay\">\n<nz-card [nzCover]=\"compactDisplay?null:map\"\n- [nzActions]=\"(canCreateAlarm(alarms$ | async, node) && (node.tim...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(gathering-location): added a new button to add alarm directly to a group
1
feat
gathering-location
217,922
13.04.2019 11:58:01
-7,200
a8416996870d2dfab7d9f3deb7b58fbb1d5e6d1f
fix(icon): better res icon for community rotations menu
[ { "change_type": "MODIFY", "diff": "-<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n-<!-- Created with Inkscape (http://www.inkscape.org/) -->\n-\n-<svg\n- xmlns:dc=\"http://purl.org/dc/elements/1.1/\"\n- xmlns:cc=\"http://creativecommons.org/ns#\"\n- xmlns:rdf=\"http://www.w3.org/1999/02/22-...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(icon): better res icon for community rotations menu
1
fix
icon