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
07.04.2019 21:25:37
-3,600
8e19948126833289c122bd60a560eedfb4508236
refactor(webgl): update shader output var handling, update presets emit #define macros for GLES100 syntax remove `version` from ShaderOpts (always auto-injected, based on GL context)
[ { "change_type": "MODIFY", "diff": "@@ -280,6 +280,8 @@ export interface ShaderSnippet {\nsrc: string;\n}\n+export const DEFAULT_OUTPUT: ShaderOutputSpecs = { fragColor: [GLSL.vec4, 0] };\n+\nexport interface ShaderSpec {\n/**\n* Vertex shader GLSL source code.\n@@ -402,7 +404,6 @@ export interface ShaderOp...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(webgl): update shader output var handling, update presets - emit #define macros for GLES100 syntax - remove `version` from ShaderOpts (always auto-injected, based on GL context)
1
refactor
webgl
67,476
07.04.2019 21:53:33
-7,200
e76924947af075dfcdcf0c41c55909d07d21291c
fix(lifecycle): fix some flags and hook callback slip-ups
[ { "change_type": "MODIFY", "diff": "@@ -697,7 +697,7 @@ export class Lifecycle implements ILifecycle {\nlet next: IController | undefined;\nthis.boundHead = this.boundTail = Lifecycle.marker;\nwhile (current != void 0) {\n- current.bound(flags);\n+ current.unbound(flags);\nnext = current.nextUnbound;\ncurre...
TypeScript
MIT License
aurelia/aurelia
fix(lifecycle): fix some flags and hook callback slip-ups
1
fix
lifecycle
67,476
07.04.2019 21:53:58
-7,200
cfff2d7c859db847bf9f349633e9b0c5e40575cb
chore(if): reorder imports
[ { "change_type": "MODIFY", "diff": "@@ -23,6 +23,12 @@ import {\nIViewFactory,\nPriority,\n} from '../../lifecycle';\n+import {\n+ ContinuationTask,\n+ ILifecycleTask,\n+ LifecycleTask,\n+ PromiseTask\n+} from '../../lifecycle-task';\nimport {\nIObserversLookup,\n} from '../../observation';\n@@ -32,12 +38,6...
TypeScript
MIT License
aurelia/aurelia
chore(if): reorder imports
1
chore
if
67,476
07.04.2019 22:46:57
-7,200
5f4f5a655dd2e2b445f74e2fea0499e49aa11c7b
feat(kernel): expose general-purpose nextId/resetId functions
[ { "change_type": "MODIFY", "diff": "@@ -106,3 +106,29 @@ export function toArray<T = unknown>(input: ArrayLike<T>): T[] {\n}\nreturn arr;\n}\n+\n+const ids: Record<string, number> = {};\n+\n+/**\n+ * Retrieve the next ID in a sequence for a given string, starting with `1`.\n+ *\n+ * Used by Aurelia to assig...
TypeScript
MIT License
aurelia/aurelia
feat(kernel): expose general-purpose nextId/resetId functions
1
feat
kernel
67,476
07.04.2019 22:47:19
-7,200
8502236f273d2a31f349646ad411f00136326ff4
fix(debug): add fromTick to stringifyLifecycleFlags
[ { "change_type": "MODIFY", "diff": "@@ -536,6 +536,7 @@ export function stringifyLifecycleFlags(flags: LifecycleFlags): string {\nif (flags & LifecycleFlags.updateSourceExpression) { flagNames.push('updateSourceExpression'); }\nif (flags & LifecycleFlags.fromAsyncFlush) { flagNames.push('fromAsyncFlush'); }...
TypeScript
MIT License
aurelia/aurelia
fix(debug): add fromTick to stringifyLifecycleFlags
1
fix
debug
67,476
07.04.2019 22:48:20
-7,200
d27356319064ae109c5871bff957cb29150d03b3
fix(if): correct a lifecycle bug
[ { "change_type": "MODIFY", "diff": "@@ -126,12 +126,6 @@ export class If<T extends INode = INode> {\nthis.task = new ContinuationTask(this.task, this.swap, this, this.value, flags);\n}\n- if (this.task.done) {\n- this.task = this.bindView(flags);\n- } else {\n- this.task = new ContinuationTask(this.task, th...
TypeScript
MIT License
aurelia/aurelia
fix(if): correct a lifecycle bug
1
fix
if
67,476
07.04.2019 22:49:52
-7,200
b96cc99b252f7d1ffba597fb3f0c738653d28aad
perf(controller): abort attach/detach sooner
[ { "change_type": "MODIFY", "diff": "import {\n+ IContainer,\nIIndexable,\nIServiceLocator,\nPLATFORM,\nWritable,\n- IContainer,\n- Class,\n} from '@aurelia/kernel';\nimport {\n@@ -390,6 +389,10 @@ export class Controller<\n}\npublic attach(flags: LifecycleFlags): void {\n+ if ((this.state & State.isAttached...
TypeScript
MIT License
aurelia/aurelia
perf(controller): abort attach/detach sooner
1
perf
controller
67,476
07.04.2019 22:50:49
-7,200
e9ed2ac7874ec65e8432a2ae4368d60bbea61a35
refactor(all): use nextId for controller and all resources
[ { "change_type": "MODIFY", "diff": "@@ -3,6 +3,7 @@ import {\nIContainer,\nInjectArray,\nIRegistry,\n+ nextId,\nPLATFORM,\nRegistration,\n} from '@aurelia/kernel';\n@@ -73,6 +74,8 @@ export class Compose<T extends INode = Node> {\nhooks: Object.freeze(new HooksDefinition(Compose.prototype)),\n});\n+ public ...
TypeScript
MIT License
aurelia/aurelia
refactor(all): use nextId for controller and all resources
1
refactor
all
679,913
07.04.2019 23:25:58
-3,600
3d365276d69b08bedb1514123baaaf00530f0a84
fix(webgl): gl2 texStorage2D() levels
[ { "change_type": "MODIFY", "diff": "@@ -81,7 +81,7 @@ export class Texture implements ITexture {\n} else if (opts.width && opts.height) {\ngl.texStorage2D(\ntarget,\n- 0,\n+ 1,\ninternalFormat,\nopts.width,\nopts.height\n", "new_path": "packages/webgl/src/texture.ts", "old_path": "packages/webgl/src...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(webgl): gl2 texStorage2D() levels
1
fix
webgl
447,451
08.04.2019 00:24:47
14,400
677eebcd822164095ca6abc68598879bdf2de758
fix: open modal when press enter or space keys
[ { "change_type": "MODIFY", "diff": "@@ -6,7 +6,8 @@ import Input from '../Input';\nimport Modal from './../Modal';\nimport Calendar from './../Calendar';\nimport formatDate from './helpers/format-date';\n-import withReduxForm from './../../libs/hocs/withReduxForm';\n+import withReduxForm from '../../libs/ho...
JavaScript
MIT License
nexxtway/react-rainbow
fix: open modal when press enter or space keys (#664)
1
fix
null
815,605
08.04.2019 01:20:06
0
053c58b4dda380d781b622d28951547030dc055b
feat: Update embedded script The embedded secp256k1_blake2b_sighash_all script is compiled from
[ { "change_type": "RENAME", "diff": "Binary files a/spec/chainspecs/testnet/cells/secp256k1_blake2b_lock and b/spec/chainspecs/testnet/cells/secp256k1_blake2b_sighash_all differ\n", "new_path": "spec/chainspecs/testnet/cells/secp256k1_blake2b_sighash_all", "old_path": "spec/chainspecs/testnet/cells/s...
Rust
MIT License
nervosnetwork/ckb
feat: Update embedded script The embedded secp256k1_blake2b_sighash_all script is compiled from https://github.com/nervosnetwork/ckb-system-scripts/blob/384da8adc0564a228f54ae4122adda12d966f9bc/c/secp256k1_blake2b_sighash_all.c
1
feat
null
67,476
08.04.2019 01:57:31
-7,200
9621a8a48fdf29e26442c4f35a3907a4eb61ee1e
refactor(if): do not use RAF queue for updates
[ { "change_type": "MODIFY", "diff": "@@ -61,8 +61,10 @@ export class If<T extends INode = INode> {\nreturn this._value;\n}\npublic set value(newValue: boolean) {\n- if (this._value !== newValue) {\n- this.valueChanged(newValue, this._value, LifecycleFlags.none);\n+ const oldValue = this._value;\n+ if (oldVal...
TypeScript
MIT License
aurelia/aurelia
refactor(if): do not use RAF queue for updates
1
refactor
if
67,476
08.04.2019 02:09:50
-7,200
b11370003ea43b1166c76f8b7e9a5004e7420262
fix(controller): detach custom element controllers
[ { "change_type": "MODIFY", "diff": "@@ -757,6 +757,8 @@ export class Controller<\n(this.bindingContext as BindingContext<T, C>).detaching(flags);\n}\n+ this.detachControllers(flags);\n+\nif (this.hooks.hasDetached) {\nthis.lifecycle.enqueueRAF(this.detached, this, Priority.attach, true);\n}\n", "new_pat...
TypeScript
MIT License
aurelia/aurelia
fix(controller): detach custom element controllers
1
fix
controller
76,605
08.04.2019 08:00:25
-7,200
3adf7f7254137d75bfca9caddb86858aa4046d50
feat: adding edit mode to NLU
[ { "change_type": "MODIFY", "diff": "@@ -41,6 +41,7 @@ class BaseNLU {\n: this.settings.keepStopwords;\nthis.docs = [];\nthis.features = {};\n+ this.isEditing = false;\n}\n/**\n@@ -87,10 +88,23 @@ class BaseNLU {\nthrow new Error('Intent must be an string');\n}\nconst tokens = this.tokenizeAndStem(utterance)...
JavaScript
MIT License
axa-group/nlp.js
feat: adding edit mode to NLU
1
feat
null
76,605
08.04.2019 08:01:08
-7,200
a2d63f7f134c457cd299504bb601bfc2c2e2444d
feat: training Bayes NLU only if has been modified
[ { "change_type": "MODIFY", "diff": "@@ -60,6 +60,10 @@ class BayesNLU extends BaseNLU {\n* Train the classifier\n*/\nasync train() {\n+ const mustTrain = this.isEditing ? this.endEdit() : true;\n+ if (!mustTrain) {\n+ return false;\n+ }\nthis.classifier.clear();\nthis.docs.forEach(doc => {\nthis.classifier....
JavaScript
MIT License
axa-group/nlp.js
feat: training Bayes NLU only if has been modified
1
feat
null
76,605
08.04.2019 08:02:20
-7,200
1e6026c49da02fda5d7f3f9ae40fbeaf2b10a75c
feat: Training Binary Relevance Neural Network NLU only when needed
[ { "change_type": "MODIFY", "diff": "@@ -60,6 +60,10 @@ class BinaryNeuralNetworkNLU extends BaseNLU {\n* Train the classifier\n*/\nasync train() {\n+ const mustTrain = this.isEditing ? this.endEdit() : true;\n+ if (!mustTrain) {\n+ return false;\n+ }\nthis.classifier.clear();\nconst input = [];\nthis.docs.f...
JavaScript
MIT License
axa-group/nlp.js
feat: Training Binary Relevance Neural Network NLU only when needed
1
feat
null
76,605
08.04.2019 08:04:51
-7,200
1c6f752a7ff93c6a6d7e2dde4380085ef27428aa
feat: Training Brain NLU only when needed
[ { "change_type": "MODIFY", "diff": "@@ -59,6 +59,10 @@ class BrainNLU extends BaseNLU {\n* Train the classifier\n*/\nasync train() {\n+ const mustTrain = this.isEditing ? this.endEdit() : true;\n+ if (!mustTrain) {\n+ return false;\n+ }\nthis.classifier.clear();\nconst input = [];\nthis.docs.forEach(doc => ...
JavaScript
MIT License
axa-group/nlp.js
feat: Training Brain NLU only when needed
1
feat
null
76,605
08.04.2019 08:05:27
-7,200
b3ee8d29acb1a8eff3db6a40b9c815d84503d538
feat: Adding begin edit mode to Domain Manager
[ { "change_type": "MODIFY", "diff": "@@ -197,6 +197,10 @@ class DomainManager {\n};\n}\n+ /**\n+ * Exports object properties.\n+ * @returns {Object} Object properties.\n+ */\ntoObj() {\nconst result = {};\nresult.settings = this.settings;\n@@ -215,6 +219,10 @@ class DomainManager {\nreturn result;\n}\n+ /**\...
JavaScript
MIT License
axa-group/nlp.js
feat: Adding begin edit mode to Domain Manager
1
feat
null
76,605
08.04.2019 08:05:57
-7,200
3c5bc896cc8d04665915be50e673b4d76430eea3
feat: Training LRC NLU only when needed
[ { "change_type": "MODIFY", "diff": "@@ -61,6 +61,10 @@ class LogisticRegressionNLU extends BaseNLU {\n* Train the classifier\n*/\nasync train() {\n+ const mustTrain = this.isEditing ? this.endEdit() : true;\n+ if (!mustTrain) {\n+ return false;\n+ }\nthis.classifier.clear();\nthis.docs.forEach(doc => {\nthi...
JavaScript
MIT License
axa-group/nlp.js
feat: Training LRC NLU only when needed
1
feat
null
76,605
08.04.2019 08:06:32
-7,200
8b55c08c8ea92db2f1f7c1e3379878aa9406a2bc
feat: Starting NLU Manager work
[ { "change_type": "MODIFY", "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, incl...
JavaScript
MIT License
axa-group/nlp.js
feat: Starting NLU Manager work
1
feat
null
217,922
08.04.2019 08:47:22
-7,200
0a4823f248e2fdbec3aa7a16b9dc13aa5644f396
chore: small fix for gig head size labels
[ { "change_type": "MODIFY", "diff": "\"Fish_eyes_duration\": \"Your fish eyes needs to have this duration to get the fish\",\n\"GIG_HEAD\": {\n\"Small\": \"Small Gig Head\",\n- \"Medium\": \"Medium Gig Head\",\n+ \"Normal\": \"Normal Gig Head\",\n\"Large\": \"Large Gig Head\"\n}\n},\n", "new_path": "apps...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: small fix for gig head size labels
1
chore
null
217,922
08.04.2019 09:15:31
-7,200
ae1ca5c81c4dd7b38a91ce8fb8fb42e4b90c4656
fix(list): fixed an issue with lists not being detached from the team properly in some cases
[ { "change_type": "MODIFY", "diff": "{{'Remove_ephemeral' | translate}}\n</li>\n<ng-container *ngIf=\"!publicDisplay\">\n- <li nz-submenu *ngIf=\"teams$ | async as teams\">\n+ <ng-container *ngIf=\"teams$ | async as teams\">\n+ <li nz-submenu *ngIf=\"_list.teamId === undefined\">\n<span title>{{'TEAMS.Assign...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(list): fixed an issue with lists not being detached from the team properly in some cases
1
fix
list
217,922
08.04.2019 10:10:09
-7,200
28ae761758ea40bb7c280d9f393131d6efb34728
chore: small fix for FSH log tracker as anonymous
[ { "change_type": "MODIFY", "diff": "@@ -75,8 +75,14 @@ export class AuthEffects {\n@Effect()\nfetchUserOnAnonymous$ = this.actions$.pipe(\nofType(AuthActionTypes.LoggedInAsAnonymous),\n- switchMap((action: Authenticated) => this.userService.get(action.uid)),\n- catchError(() => of(new TeamcraftUser())),\n+ ...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: small fix for FSH log tracker as anonymous
1
chore
null
815,590
08.04.2019 10:17:11
-28,800
620d1ab6247e92c7fcfccb02d1066d61577421a0
fix: ignore immature tx error in relay
[ { "change_type": "MODIFY", "diff": "@@ -71,7 +71,8 @@ impl<'a, CI: ChainIndex> TransactionProcess<'a, CI> {\n}\nErr(PoolError::InvalidTx(TransactionError::UnknownInput))\n| Err(PoolError::InvalidTx(TransactionError::Conflict))\n- | Err(PoolError::Duplicate) => {\n+ | Err(PoolError::Duplicate)\n+ | Err(PoolE...
Rust
MIT License
nervosnetwork/ckb
fix: ignore immature tx error in relay
1
fix
null
815,598
08.04.2019 10:23:04
-28,800
6c5ac8ac3294ce8c88efbbaab5cda09bb89dc329
chore: CHANGELOG for v0.8.0
[ { "change_type": "MODIFY", "diff": "@@ -2,6 +2,78 @@ All notable changes to this project will be documented in this file.\nSee [Conventional Commits](https://conventionalcommits.org) for commit guidelines.\n+# [v0.8.0](https://github.com/nervosnetwork/ckb/compare/v0.7.0...v0.8.0) (2019-04-08)\n+\n+### Featu...
Rust
MIT License
nervosnetwork/ckb
chore: CHANGELOG for v0.8.0
1
chore
null
471,462
08.04.2019 10:35:48
14,400
7513e8a9c07058fa14bf0f6d75331b4645ea1591
docs: add Component Libraries deep dive to faq
[ { "change_type": "MODIFY", "diff": "@@ -90,7 +90,7 @@ module.exports = {\n{\ntitle: 'Deep dives',\ncollapsable: true,\n- children: ['rerender', 'unit-testing-custom-events', 'unit-testing-init-error'],\n+ children: ['component-libraries', 'rerender', 'unit-testing-custom-events', 'unit-testing-init-error'],...
JavaScript
MIT License
open-wc/open-wc
docs: add Component Libraries deep dive to faq
1
docs
null
815,598
08.04.2019 10:43:17
-28,800
068c2fd584c93f17809fb36e4fc9e26baf695f86
chore: include dir test in ci Dir test is excluded from the workspace in . This commit will check fmt and clippy in the test directory so we can discover errors earlier.
[ { "change_type": "MODIFY", "diff": "@@ -13,6 +13,7 @@ doc-deps:\ncheck:\ncargo check ${VERBOSE} --all\n+ cd test && cargo check ${VERBOSE} --all\nbuild:\ncargo build ${VERBOSE} --release\n@@ -25,9 +26,11 @@ prod-test:\nfmt:\ncargo fmt ${VERBOSE} --all -- --check\n+ cd test && cargo fmt ${VERBOSE} --all -- -...
Rust
MIT License
nervosnetwork/ckb
chore: include dir test in ci Dir test is excluded from the workspace in c0992b15894a301ec040cb442745ace39db4ae1a . This commit will check fmt and clippy in the test directory so we can discover errors earlier.
1
chore
null
815,598
08.04.2019 10:48:13
-28,800
2fb9ac6201f1e0ae12a24d0588519c2efdc8062a
chore: regenerate flatbuffers verifier
[ { "change_type": "MODIFY", "diff": "@@ -1598,15 +1598,6 @@ pub mod ckb {\n}\n}\n- if Self::VT_CELLBASE_ID as usize + flatbuffers::SIZE_VOFFSET\n- <= vtab_num_bytes\n- {\n- let voffset = vtab.get(Self::VT_CELLBASE_ID) as usize;\n- if voffset > 0 && object_inline_num_bytes - voffset < 32 {\n- return Err(Error...
Rust
MIT License
nervosnetwork/ckb
chore: regenerate flatbuffers verifier
1
chore
null
76,605
08.04.2019 10:55:37
-7,200
2ed94f86ee7c6aaddc06181d91400d31cb4fb055
feat: Adding training and get classifications to NLU manager
[ { "change_type": "MODIFY", "diff": "@@ -167,6 +167,78 @@ class NluManager {\nconst domain = this.getIntentDomain(locale, intent);\nmanager.remove(domain, utterance, intent);\n}\n+\n+ /**\n+ * Begin Edit Mode.\n+ */\n+ beginEdit() {\n+ Object.keys(this.domainManagers).forEach(locale => {\n+ this.domainManage...
JavaScript
MIT License
axa-group/nlp.js
feat: Adding training and get classifications to NLU manager
1
feat
null
815,590
08.04.2019 11:02:48
-28,800
b7bdd4056c03bf3489e829a9ab042e5375f2940a
fix: get peer index failed panic
[ { "change_type": "MODIFY", "diff": "@@ -244,9 +244,7 @@ impl ServiceProtocol for CKBHandler {\nnetwork.modify_peer(&peer_id, |peer| {\npeer.last_message_time = Some(now);\n});\n- let peer_index = network\n- .get_peer_index(&peer_id)\n- .expect(\"get peer index failed\");\n+ if let Some(peer_index) = network...
Rust
MIT License
nervosnetwork/ckb
fix: get peer index failed panic
1
fix
null
815,598
08.04.2019 11:21:38
-28,800
334fe76be5667a23aef253fa62a130185715bade
test: loading bundled config files
[ { "change_type": "MODIFY", "diff": "@@ -204,7 +204,7 @@ mod tests {\nfn mkdir() -> tempfile::TempDir {\ntempfile::Builder::new()\n- .prefix(\"ckb_resoruce_test\")\n+ .prefix(\"ckb_resource_test\")\n.tempdir()\n.unwrap()\n}\n", "new_path": "resource/src/lib.rs", "old_path": "resource/src/lib.rs" },...
Rust
MIT License
nervosnetwork/ckb
test: loading bundled config files
1
test
null
304,866
08.04.2019 11:26:09
25,200
2c05ccaf1c1a25b5c6c91ffe470c0b477c3ae88c
refactor(control): add per-query mem quota to Config
[ { "change_type": "MODIFY", "diff": "@@ -55,6 +55,7 @@ type Config struct {\n// TODO(jsternberg): Integrate the concurrency and memory bytes quotas.\nConcurrencyQuota int\nMemoryBytesQuota int64\n+ MemoryBytesQuotaPerQuery int64\nLogger *zap.Logger\n// MetricLabelKeys is a list of labels to add to the metric...
Go
MIT License
influxdata/flux
refactor(control): add per-query mem quota to Config (#1136)
1
refactor
control
815,601
08.04.2019 11:30:56
-28,800
c39a7621714d6464af2458686df6c24d3deb4885
refactor: merkle_root build
[ { "change_type": "MODIFY", "diff": "@@ -64,6 +64,38 @@ impl Block {\nids.into_iter().collect()\n}\n+\n+ pub fn cal_witnesses_root(&self) -> H256 {\n+ // The witness hash of cellbase transaction is assumed to be zero 0x0000....0000\n+ let mut witnesses = vec![H256::zero()];\n+ witnesses.extend(\n+ self.commi...
Rust
MIT License
nervosnetwork/ckb
refactor: merkle_root build
1
refactor
null
791,704
08.04.2019 11:40:29
25,200
fcd8115382551c3e73fd52fea3e756202f75019a
tests(smokehouse): set Content-Type for webp images served by static-server.js
[ { "change_type": "MODIFY", "diff": "@@ -75,6 +75,8 @@ function requestHandler(request, response) {\nheaders['Content-Type'] = 'image/gif';\n} else if (filePath.endsWith('.jpg') || filePath.endsWith('.jpeg')) {\nheaders['Content-Type'] = 'image/jpeg';\n+ } else if (filePath.endsWith('.webp')) {\n+ headers['C...
JavaScript
Apache License 2.0
googlechrome/lighthouse
tests(smokehouse): set Content-Type for webp images served by static-server.js (#8015)
1
tests
smokehouse
469,438
08.04.2019 11:44:29
25,200
6a9c721558002458fbdf39a11c575784060864cb
fix: release not uploading artifacts
[ { "change_type": "MODIFY", "diff": "\"@semantic-release/commit-analyzer\",\n\"@semantic-release/release-notes-generator\",\n\"@semantic-release/changelog\",\n- [\n\"@semantic-release/github\",\n- {\n- \"assets\": [\n- {\n- \"path\": \"build/markdown/spec.md\",\n- \"label\": \"Github Markdown distribution\"\...
JavaScript
Apache License 2.0
open-rpc/spec
fix: release not uploading artifacts
1
fix
null
815,590
08.04.2019 11:45:56
-28,800
f75da936b7233dc1b270bb0c477aa2eadd113c31
fix: peer_store no such table error
[ { "change_type": "MODIFY", "diff": "@@ -35,13 +35,10 @@ pub type ConnectionPool = Pool<SqliteConnectionManager>;\npub type PooledConnection = r2d2::PooledConnection<SqliteConnectionManager>;\nlazy_static! {\n- static ref MEMORY_OPEN_FLAGS: OpenFlags = OpenFlags::SQLITE_OPEN_READ_WRITE\n+ static ref OPEN_FLA...
Rust
MIT License
nervosnetwork/ckb
fix: peer_store no such table error
1
fix
null
469,438
08.04.2019 12:03:53
25,200
3275d6a34c7644e46fb1f71463eed12a92e5b68c
fix(release): artifact uploading
[ { "change_type": "MODIFY", "diff": "\"@semantic-release/commit-analyzer\",\n\"@semantic-release/release-notes-generator\",\n\"@semantic-release/changelog\",\n- \"@semantic-release/github\",\n- [\"@semantic-release/git\", {\n- \"assets\": [\"CHANGELOG.md\", \"build/markdown/spec.md\"],\n- \"message\": \"chor...
JavaScript
Apache License 2.0
open-rpc/spec
fix(release): artifact uploading
1
fix
release
469,438
08.04.2019 12:08:36
25,200
8050a744516c381ecb8a4036386e750bf3102206
fix: release plugins
[ { "change_type": "MODIFY", "diff": "\"@semantic-release/release-notes-generator\",\n\"@semantic-release/changelog\",\n[\"@semantic-release/github\", {\n- \"assets\": [{\"path\": \"dist/asset.min.css\", \"label\": \"Markdown distribution\"}]\n+ \"assets\": [{\"path\": \"build/markdown/spec.md\", \"label\": \...
JavaScript
Apache License 2.0
open-rpc/spec
fix: release plugins
1
fix
null
469,438
08.04.2019 12:18:30
25,200
7ba538d1ba8be32b2ec5749519b937ba710dd7f9
fix(release): try again
[ { "change_type": "MODIFY", "diff": "\"@semantic-release/commit-analyzer\",\n\"@semantic-release/release-notes-generator\",\n\"@semantic-release/changelog\",\n- [\"@semantic-release/github\", {\n- \"assets\": [{\"path\": \"build/markdown/spec.md\", \"label\": \"Markdown distribution\"}]\n- }],\n- [\"@semanti...
JavaScript
Apache License 2.0
open-rpc/spec
fix(release): try again
1
fix
release
104,818
08.04.2019 12:43:10
18,000
ae7587d37f3039cbfa959a56eec65fbe4769faab
fix(wizardinline): need to export inline wizard for reuse
[ { "change_type": "MODIFY", "diff": "@@ -3,6 +3,7 @@ export Table from './components/Table';\nexport AddCard from './components/AddCard';\nexport BaseModal from './components/BaseModal';\nexport WizardModal from './components/WizardModal';\n+export WizardInline from './components/WizardInline/WizardInline';\...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(wizardinline): need to export inline wizard for reuse
1
fix
wizardinline
217,922
08.04.2019 12:54:15
-7,200
8c39a7df9075a6ec6c5bbb4c8934e481b5c3a631
feat(auth): creating an account from an anonymous access now transfers lists and user data
[ { "change_type": "MODIFY", "diff": "@@ -12,6 +12,7 @@ export enum AuthActionTypes {\nUserFetched = '[Auth] User fetched',\nUpdateUser = '[Auth] Update User',\n+ RegisterUser = '[Auth] Register User',\nLoginAsAnonymous = '[Auth] Login as Anonymous',\nLoggedInAsAnonymous = '[Auth] Logged in as Anonymous',\n@@...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(auth): creating an account from an anonymous access now transfers lists and user data
1
feat
auth
469,438
08.04.2019 12:58:48
25,200
141d4e3c6f0b0b9964d89e2e336415c874bf7e6c
fix: release version templated
[ { "change_type": "MODIFY", "diff": "@@ -4,16 +4,26 @@ const {promisify} = require(\"util\");\nconst downloadReleases = require('@etclabscore/dl-github-releases');\nconst fs = require(\"fs\");\nconst fsx = require(\"fs-extra\");\n+var toc = require('markdown-toc');\nconst mkdir = promisify(fs.mkdir);\n+const...
JavaScript
Apache License 2.0
open-rpc/spec
fix: release version templated
1
fix
null
104,818
08.04.2019 13:06:05
18,000
b8195d3977c12351935087ab46ff9f41e052c776
fix(package): storybook rtl should be in dev deps
[ { "change_type": "MODIFY", "diff": "\"react-dnd-html5-backend\": \"2.5.1\",\n\"react-dnd-test-backend\": \"^7.2.0\",\n\"react-transition-group\": \"^2.6.0\",\n- \"storybook-addon-rtl\": \"^0.2.2\",\n\"styled-components\": \"^4.1.3\"\n},\n\"peerDependencies\": {\n\"rollup-plugin-uglify\": \"^6.0.1\",\n\"sass...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(package): storybook rtl should be in dev deps
1
fix
package
104,818
08.04.2019 13:36:26
18,000
4ebc83420898389b13f432e195dec07961f3374b
fix(wizardinline): index should export StatefulWizardInline
[ { "change_type": "MODIFY", "diff": "@@ -12,6 +12,7 @@ const StyledDivWizardHeader = styled.div`\nconst StyledDivHeading = styled.div`\nmin-width: 200px;\n+ padding-right: 3rem;\n`;\nclass WizardHeader extends Component {\n@@ -24,8 +25,6 @@ class WizardHeader extends Component {\nPropTypes.shape({\nid: PropT...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(wizardinline): index should export StatefulWizardInline
1
fix
wizardinline
217,922
08.04.2019 13:42:04
-7,200
373e49561675d6a9240997392473a27efa13190a
chore: small fix for predator amount on log tracker
[ { "change_type": "MODIFY", "diff": "@@ -234,7 +234,7 @@ export class FishingLogTrackerComponent extends TrackerComponent {\nreturn {\nid: itemId,\nicon: this.lazyData.icons[itemId],\n- predatorAmount: predator.predatorAmount\n+ amount: predator.predatorAmount\n};\n});\n}\n", "new_path": "apps/client/src...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: small fix for predator amount on log tracker
1
chore
null
217,922
08.04.2019 13:54:10
-7,200
8aebb8641f75389528cedc0572353bbfa832aa90
feat(core): added a link to the wiki inside the header bar
[ { "change_type": "MODIFY", "diff": "<nz-option *ngFor=\"let locale of availableLanguages\" [nzLabel]=\"locale | uppercase\"\n[nzValue]=\"locale\"></nz-option>\n</nz-select>\n+ <a href=\"https://wiki.ffxivteamcraft.com\" target=\"_blank\" class=\"wiki-link\"\n+ nz-tooltip [nzTitle]=\"'WIKI.Title' | translate...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(core): added a link to the wiki inside the header bar
1
feat
core
217,922
08.04.2019 14:15:08
-7,200
eec70c663425653d89be2867653f8735c616b378
chore: added a toggle on fish eyes duration format
[ { "change_type": "MODIFY", "diff": "{{display[tab].done}}/{{display[tab].total}}\n</ng-template>\n<div fxLayout=\"row\" fxLayoutGap=\"10px\">\n- <ul nz-menu nzMode=\"inline\" [nzTheme]=\"'light'\" *ngIf=\"tabsDisplay$ | async as tabsDisplay\" class=\"log-container\">\n+ <ul nz-menu nzMode=\"inline\" [nzThem...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: added a toggle on fish eyes duration format
1
chore
null
730,412
08.04.2019 14:18:48
0
e59ad51292e3651b4727a4bb6a19cc27db30d0ce
chore(release): 0.1.445
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"0.1.445\"></a>\n+## [0.1.445](https://github.com/webex/react-ciscospark/compare/v0.1....
JavaScript
MIT License
webex/react-widgets
chore(release): 0.1.445
1
chore
release
807,849
08.04.2019 14:20:57
25,200
462e72a5be61441e276ff6c34e498d2cf318c584
chore(release): v3.13.2
[ { "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+## [3.13.2](https://github.com/lerna/lerna/compare/v3.13.1...v3.13.2) (2019-04-08)\n+\n+\n+### Bug Fixes\n+\n+* **lif...
JavaScript
MIT License
lerna/lerna
chore(release): v3.13.2
1
chore
release
67,507
08.04.2019 14:21:34
-7,200
997c1af87e89d51d006c7d6184261fb0c24eb9e0
chore: more typescript pinning
[ { "change_type": "MODIFY", "diff": "\"http-server\": \"latest\",\n\"minimatch\": \"latest\",\n\"rimraf\": \"latest\",\n- \"typescript\": \"latest\"\n+ \"typescript\": \"~3.3.4000\"\n}\n}\n", "new_path": "examples/jit-aurelia-cli-ts/package.json", "old_path": "examples/jit-aurelia-cli-ts/package.json...
TypeScript
MIT License
aurelia/aurelia
chore: more typescript pinning
1
chore
null
791,776
08.04.2019 14:38:43
14,400
553a7c17f877fcfe36cbf9ca04f43f7763b3aa65
docs(readme): Foo integration
[ { "change_type": "MODIFY", "diff": "@@ -280,6 +280,8 @@ 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): Foo integration (#8035)
1
docs
readme
127,946
08.04.2019 14:59:01
-10,800
7e79e95a196bdeba5dd22a71d35224afd617521d
fix(tokens): fix neutral 70 color
[ { "change_type": "MODIFY", "diff": "@@ -86,7 +86,7 @@ exports[`Tooltip alignment right-aligned 1`] = `\n.emotion-1,\n.emotion-1::after {\n- color: #142c37;\n+ color: #142b37;\n}\n.emotion-1::after {\n@@ -189,7 +189,7 @@ exports[`Tooltip renders as active when defined 1`] = `\n.emotion-1,\n.emotion-1::after ...
TypeScript
MIT License
coingaming/moon-design
fix(tokens): fix neutral 70 color
1
fix
tokens
217,922
08.04.2019 15:02:20
-7,200
9e0c1a11d18a647857232a02aeb7b82af79423a8
chore: removed 3 days time limit for timers
[ { "change_type": "MODIFY", "diff": "@@ -230,19 +230,19 @@ export class AlarmsFacade {\nreturn timeBeforeA < timeBeforeB ? -1 : 1;\n});\nif (alarm.weathers) {\n- try {\n+ // try {\nthis.nextSpawnCache[`${alarm.itemId}-${alarm.zoneId}`] = {\nspawn: this.findWeatherSpawnCombination(alarm, sortedSpawns, time.ge...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: removed 3 days time limit for timers
1
chore
null
791,834
08.04.2019 15:05:23
25,200
d0ed3158675af27d9e199b2f7fbf41975865cddb
misc: remove unused typedef
[ { "change_type": "MODIFY", "diff": "@@ -99,18 +99,6 @@ declare global {\n/** A brief description of the purpose of the display group. */\ndescription?: string;\n}\n-\n- /**\n- * A description of configuration used for gathering.\n- */\n- export interface RuntimeConfig {\n- environment: {\n- name: 'Device Em...
JavaScript
Apache License 2.0
googlechrome/lighthouse
misc: remove unused typedef (#8075)
1
misc
null
469,438
08.04.2019 15:36:04
25,200
ff4bcc8aca324fd3dd54db4dee1536ea5e5172af
fix: versioned latest url
[ { "change_type": "MODIFY", "diff": "@@ -10,6 +10,7 @@ const unlink = promisify(fs.unlink);\nconst readdir = promisify(fs.readdir);\nconst fsx = require(\"fs-extra\");\nconst buildMarkdown = require(\"./build.markdown.sh\");\n+const specVersion = require(\"./get-version.js\");\nconst leaveZipped = false;\nco...
JavaScript
Apache License 2.0
open-rpc/spec
fix: versioned latest url
1
fix
null
730,429
08.04.2019 15:39:16
14,400
c94f865a2c7cf37bfc076a1f866fa978385a480e
feat(widget-meet): remove old spark logo
[ { "change_type": "MODIFY", "diff": "@@ -6,15 +6,12 @@ import {\nrenderComponent\n} from 'recompose';\n-import SparkLogo from '@ciscospark/react-component-spark-logo';\n-\nimport messages from '../messages';\nimport styles from '../styles.css';\nfunction NoWebRTCSupport({intl}) {\nreturn (\n<div className={c...
JavaScript
MIT License
webex/react-widgets
feat(widget-meet): remove old spark logo
1
feat
widget-meet
273,683
08.04.2019 15:53:11
-7,200
fcfcf3696d6ea3257024d47c3b3c397557921be2
fix(g-image): alt attribute for noscript image
[ { "change_type": "MODIFY", "diff": "@@ -82,7 +82,7 @@ export default {\ninnerHTML: `` +\n`<img src=\"${props.src.src}\" class=\"${stringifyClass(noscriptClassNames)}\"` +\n(attrs.width ? ` width=\"${attrs.width}\"`: '') +\n- (props.alt ? ` alt=\"${props.alt}\"` : '') +\n+ (attrs.alt ? ` alt=\"${attrs.alt}\"...
JavaScript
MIT License
gridsome/gridsome
fix(g-image): alt attribute for noscript image (#353)
1
fix
g-image
815,598
08.04.2019 15:56:48
-28,800
67e34347826106884412f2117432334327552571
chore(deps): use flatbuffers crate instead of git repo Keep consistent with P2P.
[ { "change_type": "MODIFY", "diff": "@@ -561,8 +561,8 @@ dependencies = [\n\"ckb-merkle-tree 0.8.0-pre\",\n\"ckb-util 0.8.0-pre\",\n\"failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)\",\n- \"flatbuffers 0.5.0 (git+https://github.com/google/flatbuffers?rev=4f10da8d99c1a7bc8c9c7d06d2092a68...
Rust
MIT License
nervosnetwork/ckb
chore(deps): use flatbuffers crate instead of git repo Keep consistent with P2P.
1
chore
deps
815,593
08.04.2019 15:59:15
-32,400
f5b8a0127d379b847421fae86331eab646d89743
chore: private field
[ { "change_type": "MODIFY", "diff": "@@ -51,7 +51,7 @@ impl CellProvider for CellSetDiff {\n#[derive(Default, Debug, PartialEq, Eq, Clone, Serialize, Deserialize)]\npub struct CellSet {\n- pub inner: FnvHashMap<H256, TransactionMeta>,\n+ inner: FnvHashMap<H256, TransactionMeta>,\n}\nimpl CellSet {\n", "n...
Rust
MIT License
nervosnetwork/ckb
chore: private field
1
chore
null
791,760
08.04.2019 16:08:43
25,200
aca78af86b2c509b9894b94a8bf6ef14776bb7f9
clients(lr): gather network timing numbers from headers
[ { "change_type": "MODIFY", "diff": "@@ -41,6 +41,11 @@ class NetworkRequests extends Audit {\nundefined : (time - earliestStartTime) * 1000;\nconst results = records.map(record => {\n+ const endTimeDeltaMs = record.lrStatistics && record.lrStatistics.endTimeDeltaMs;\n+ const TCPMs = record.lrStatistics && r...
JavaScript
Apache License 2.0
googlechrome/lighthouse
clients(lr): gather network timing numbers from headers (#7888)
1
clients
lr
815,590
08.04.2019 16:09:12
-28,800
d78b17151ba4fe306bd0d3bb32f82a2f700ff4c9
fix: regenerate protocol
[ { "change_type": "MODIFY", "diff": "@@ -52,12 +52,6 @@ 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: regenerate protocol
1
fix
null
791,704
08.04.2019 16:09:39
25,200
c410ce63b1ef29d8fc68ca692233e1e35009c798
tests(smokehouse): set Content-Type for json served by static-server.js
[ { "change_type": "MODIFY", "diff": "@@ -77,6 +77,8 @@ function requestHandler(request, response) {\nheaders['Content-Type'] = 'image/jpeg';\n} else if (filePath.endsWith('.webp')) {\nheaders['Content-Type'] = 'image/webp';\n+ } else if (filePath.endsWith('.json')) {\n+ headers['Content-Type'] = 'application...
JavaScript
Apache License 2.0
googlechrome/lighthouse
tests(smokehouse): set Content-Type for json served by static-server.js (#8078)
1
tests
smokehouse
815,593
08.04.2019 16:18:12
-32,400
7901f50d49f1a9199e43979a33c2108790814277
chore: remove unused COLUMN_BLOCK_TRANSACTION_IDS column
[ { "change_type": "MODIFY", "diff": "@@ -33,5 +33,4 @@ pub const COLUMN_META: Col = Some(4);\npub const COLUMN_TRANSACTION_ADDR: Col = Some(5);\npub const COLUMN_EXT: Col = Some(7);\npub const COLUMN_BLOCK_TRANSACTION_ADDRESSES: Col = Some(9);\n-pub const COLUMN_BLOCK_TRANSACTION_IDS: Col = Some(10);\npub co...
Rust
MIT License
nervosnetwork/ckb
chore: remove unused COLUMN_BLOCK_TRANSACTION_IDS column
1
chore
null
104,818
08.04.2019 16:48:56
18,000
e0335c17c0c3f6cab38ded4810616ec5734815c1
test(pagination): add testcases
[ { "change_type": "MODIFY", "diff": "@@ -24,4 +24,30 @@ describe('SimplePagination', () => {\n// Because the page number is the same as maxPage we shouldn't have any clickable or tabbable buttons\nexpect(tabbableButtons).toHaveLength(2);\n});\n+ test('next and prev', () => {\n+ const mockPage = jest.fn();\n+...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
test(pagination): add testcases
1
test
pagination
730,429
08.04.2019 17:26:24
14,400
b8a64001ce1bce6c0c1af6b6e8a634e903dbb9d9
docs: add SCRIPTS.md
[ { "change_type": "ADD", "diff": "+# Scripts\n+\n+## Serve\n+\n+### `npm run serve:package`\n+\n+Starts a webpack dev server with the [config](./scripts/webpack/webpack.dev.babel.js) for the given widget.\n+\n+### `npm run serve:samples`\n+\n+Serves the [samples](./samples) folder, an easy to use component d...
JavaScript
MIT License
webex/react-widgets
docs: add SCRIPTS.md
1
docs
null
815,593
08.04.2019 17:59:51
-32,400
d7d658ead520d6494d60243d92a7eb543cbe712c
feat: add DBIterator
[ { "change_type": "MODIFY", "diff": "@@ -103,6 +103,15 @@ impl KeyValueDB for RocksDB {\n.map(|v| v.and_then(|vi| vi.get(range.start..range.end).map(|slice| slice.to_vec())))\n.map_err(Into::into)\n}\n+\n+ fn iter(&self, col: Col, key: &[u8]) -> Option<DBIterator> {\n+ self.cf_handle(col).expect(\"invalid co...
Rust
MIT License
nervosnetwork/ckb
feat: add DBIterator
1
feat
null
217,922
08.04.2019 18:07:36
-7,200
c7c208d6543ed0a01cd61e756a18adb504d447f1
feat(gathering-location): added hookset to fish data display
[ { "change_type": "MODIFY", "diff": "@@ -142,7 +142,9 @@ export class GatheredByExtractor extends AbstractExtractor<GatheredBy> {\n// As uptimes are always in minutes, gotta convert to minutes here too.\nnode.uptime *= 60;\n}\n-\n+ if (spot.hookset) {\n+ node.hookset = spot.hookset.split(' ')[0].toLowerCase(...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(gathering-location): added hookset to fish data display
1
feat
gathering-location
469,438
08.04.2019 19:11:06
0
c4bbedea5c64773cc7d825a3e558e2688378601d
chore(release): 1.1.4 [skip ci] ## [1.1.4](https://github.com/open-rpc/spec/compare/1.1.3...1.1.4) (2019-04-08) ### Bug Fixes * gitignore build properly ([b2eb08d](https://github.com/open-rpc/spec/commit/b2eb08d)) * release plugins ([8050a74](https://github.com/open-rpc/spec/commit/8050a74)) * remove build folder ([b02fe72](https://github.com/open-rpc/spec/commit/b02fe72)) Commit generated by .releaserc
[ { "change_type": "MODIFY", "diff": "+## [1.1.4](https://github.com/open-rpc/spec/compare/1.1.3...1.1.4) (2019-04-08)\n+\n+\n+### Bug Fixes\n+\n+* gitignore build properly ([b2eb08d](https://github.com/open-rpc/spec/commit/b2eb08d))\n+* release plugins ([8050a74](https://github.com/open-rpc/spec/commit/8050a...
JavaScript
Apache License 2.0
open-rpc/spec
chore(release): 1.1.4 [skip ci] ## [1.1.4](https://github.com/open-rpc/spec/compare/1.1.3...1.1.4) (2019-04-08) ### Bug Fixes * gitignore build properly ([b2eb08d](https://github.com/open-rpc/spec/commit/b2eb08d)) * release plugins ([8050a74](https://github.com/open-rpc/spec/commit/8050a74)) * remove build folder ([b02fe72](https://github.com/open-rpc/spec/commit/b02fe72)) Commit generated by .releaserc
1
chore
release
469,438
08.04.2019 19:19:24
0
30db936ab55dcb1e5a559b1c435d4f83b3deba22
chore(release): 1.1.5 [skip ci] ## [1.1.5](https://github.com/open-rpc/spec/compare/1.1.4...1.1.5) (2019-04-08) ### Bug Fixes * **release:** try again ([7ba538d](https://github.com/open-rpc/spec/commit/7ba538d))
[ { "change_type": "MODIFY", "diff": "+## [1.1.5](https://github.com/open-rpc/spec/compare/1.1.4...1.1.5) (2019-04-08)\n+\n+\n+### Bug Fixes\n+\n+* **release:** try again ([7ba538d](https://github.com/open-rpc/spec/commit/7ba538d))\n+\n## [1.1.4](https://github.com/open-rpc/spec/compare/1.1.3...1.1.4) (2019-0...
JavaScript
Apache License 2.0
open-rpc/spec
chore(release): 1.1.5 [skip ci] ## [1.1.5](https://github.com/open-rpc/spec/compare/1.1.4...1.1.5) (2019-04-08) ### Bug Fixes * **release:** try again ([7ba538d](https://github.com/open-rpc/spec/commit/7ba538d))
1
chore
release
815,598
08.04.2019 19:39:51
-28,800
196e8e269dba10b79fba0f5dfc2a749ce77dda57
chore: add make task to run integration test
[ { "change_type": "MODIFY", "diff": "@@ -5,6 +5,14 @@ VERBOSE := $(if ${CI},--verbose,)\ntest:\ncargo test ${VERBOSE} --all -- --nocapture\n+integration:\n+ cargo build ${VERBOSE}\n+ cd test && cargo run ../target/debug/ckb\n+\n+integration-release:\n+ cargo build ${VERBOSE} --release\n+ cd test && cargo run...
Rust
MIT License
nervosnetwork/ckb
chore: add make task to run integration test
1
chore
null
815,598
08.04.2019 19:58:03
-28,800
3c9559f2dd38e05cf45130ad6f55cb3abfc46103
chore: make bors-changelog.py python3 compatible
[ { "change_type": "MODIFY", "diff": "@@ -5,16 +5,23 @@ import sys\nimport subprocess\nfrom collections import namedtuple, OrderedDict\n+\n+def _str(s):\n+ if sys.version_info >= (3, 0):\n+ return s.decode('utf-8')\n+ return s\n+\n+\nif len(sys.argv) > 1:\nsince = sys.argv[1]\nelse:\n- tag_rev = subprocess.ch...
Rust
MIT License
nervosnetwork/ckb
chore: make bors-changelog.py python3 compatible
1
chore
null
217,922
08.04.2019 20:15:07
-7,200
bdb9d0240e593122356e2ac0ab928e690f326ad2
fix(fishing-log): fixed bad imports causing random loading issues
[ { "change_type": "MODIFY", "diff": "-import { Component } from '@angular/core';\n+import { Component, OnInit } from '@angular/core';\nimport { AuthFacade } from '../../../+state/auth.facade';\nimport { GarlandToolsService } from '../../../core/api/garland-tools.service';\nimport { TranslateService } from '@...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(fishing-log): fixed bad imports causing random loading issues
1
fix
fishing-log
679,913
08.04.2019 20:57:51
-3,600
4a1a5b9ba4b40622e4b501b5efc98f67c4e5b41a
feat(webgl): add texture gens, add opt uv support for lambert shader
[ { "change_type": "MODIFY", "diff": "},\n\"dependencies\": {\n\"@thi.ng/api\": \"^6.0.1\",\n+ \"@thi.ng/associative\": \"^2.1.2\",\n+ \"@thi.ng/binary\": \"^1.0.5\",\n\"@thi.ng/checks\": \"^2.1.5\",\n\"@thi.ng/dgraph\": \"^1.1.4\",\n+ \"@thi.ng/errors\": \"^1.0.5\",\n\"@thi.ng/matrices\": \"^0.3.0\",\n+ \"@t...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(webgl): add texture gens, add opt uv support for lambert shader
1
feat
webgl
217,922
08.04.2019 21:17:52
-7,200
614261e801adcbcecb8c4a7ece445b258177a180
feat(community-rotations): added simulation result and macro copy button
[ { "change_type": "MODIFY", "diff": "<app-rotation-panel *ngFor=\"let rotation of rotations; trackBy: trackByRotation\" [rotation]=\"rotation\"\n[publicDisplay]=\"true\"></app-rotation-panel>\n<nz-pagination [nzPageIndex]=\"page$ | async\" (nzPageIndexChange)=\"page$.next($event)\" [nzTotal]=\"totalLength\"\...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(community-rotations): added simulation result and macro copy button
1
feat
community-rotations
447,451
08.04.2019 21:22:48
14,400
2ffc41ff2d11b68dfa239923edd76b348633c126
fix: add counter manager to Modal
[ { "change_type": "ADD", "diff": "+import CounterManager from '../counterManager';\n+\n+describe('CounterManager', () => {\n+ it('should set counter to 3', () => {\n+ CounterManager.increment();\n+ CounterManager.increment();\n+ CounterManager.increment();\n+ expect(CounterManager.counter).toBe(3);\n+ expect...
JavaScript
MIT License
nexxtway/react-rainbow
fix: add counter manager to Modal (#667)
1
fix
null
531,793
08.04.2019 21:52:14
-3,600
fcd321631356215c8638cb6803c5e55be4eaee58
fix(ui): ensure that filter input labels are truncated if too long Tooltip component creates a div element which is currently missing mw-100 (and others) so it can be bigger than the wrapping label span
[ { "change_type": "MODIFY", "diff": "@@ -85,7 +85,10 @@ const FilterInputLabel = observer(\n<FontAwesomeIcon icon={faExclamationCircle} />\n</span>\n)}\n- <TooltipWrapper title=\"Click to edit this filter\" className=\"my-auto\">\n+ <TooltipWrapper\n+ title=\"Click to edit this filter\"\n+ className=\"my-aut...
TypeScript
Apache License 2.0
prymitive/karma
fix(ui): ensure that filter input labels are truncated if too long Tooltip component creates a div element which is currently missing mw-100 (and others) so it can be bigger than the wrapping label span
1
fix
ui
815,598
08.04.2019 22:10:34
-28,800
2a1b8ef9919b98f2c04956806750a0df4ad4b1c2
chore: ensure cfbc version
[ { "change_type": "MODIFY", "diff": "@@ -60,14 +60,17 @@ gen: ${GEN_FILES}\ngen-clean:\nrm -f ${GEN_FILES}\n+check-cfbc-version:\n+ test \"$$($(CFBC) --version)\" = 0.1.9\n+\n%_generated.rs: %.fbs\n$(FLATC) -r -o $(shell dirname $@) $<\n-%_generated_verifier.rs: %.fbs\n+%_generated_verifier.rs: %.fbs check-c...
Rust
MIT License
nervosnetwork/ckb
chore: ensure cfbc version
1
chore
null
217,922
08.04.2019 22:35:06
-7,200
cca383fbec4ed01e9bfb80b9a21a71f7e59d8683
fix(desktop): fixed missing community rotation icon on desktop app
[ { "change_type": "MODIFY", "diff": "routerLink=\"/community-rotations\">\n<span nz-tooltip nzPlacement=\"right\"\n[nzTitle]=\"collapsedSidebar ? ('SIMULATOR.COMMUNITY_ROTATIONS.Title' | translate) : null\">\n- <img class=\"man-attacked-by-tetris-block anticon\" src=\"/assets/icons/thing.svg\"/>\n+ <img clas...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(desktop): fixed missing community rotation icon on desktop app
1
fix
desktop
471,526
08.04.2019 22:36:56
-7,200
604c4de5c66ee6e4ce5a66c0ce67bf914eabe33f
fix(polyfills-loader): typo in readme
[ { "change_type": "MODIFY", "diff": "@@ -10,7 +10,7 @@ The [official web component polyfills](https://github.com/webcomponents/webcompo\nThis loader seeks to solve this issue, it only loads the required web component polyfills. Additionally, the loader uses dynamic imports so that it integrates properly with...
JavaScript
MIT License
open-wc/open-wc
fix(polyfills-loader): typo in readme
1
fix
polyfills-loader
471,527
08.04.2019 23:25:10
-7,200
33d8457c92215e4cb6f1d2d95cad0adb86c6081d
fix(create): update own package versions
[ { "change_type": "MODIFY", "diff": "\"watch:build\": \"rimraf dist && rollup --watch -c rollup.config.js & http-server dist -o -c-1\"\n},\n\"devDependencies\": {\n- \"@open-wc/building-rollup\": \"^0.2.1\",\n+ \"@open-wc/building-rollup\": \"^0.3.0\",\n\"http-server\": \"^0.11.1\",\n\"rimraf\": \"^2.6.3\",\...
JavaScript
MIT License
open-wc/open-wc
fix(create): update own package versions
1
fix
create
71,371
09.04.2019 00:27:25
-7,200
5d526243a1f75b79f708b9e4e6af1d0471189bed
build: fix app-delivery integ test
[ { "change_type": "MODIFY", "diff": "@@ -17,7 +17,7 @@ const source = new cpactions.GitHubSourceAction({\nactionName: 'GitHub',\nowner: 'awslabs',\nrepo: 'aws-cdk',\n- oauthToken: cdk.Secret.plainText('DummyToken'),\n+ oauthToken: cdk.SecretValue.plainText('DummyToken'),\npollForSourceChanges: true,\noutputA...
TypeScript
Apache License 2.0
aws/aws-cdk
build: fix app-delivery integ test (#2190)
1
build
null
679,913
09.04.2019 01:23:14
-3,600
29791fd406c8042f2c32318401208e35fd9d96b7
feat(webgl): add cube modelspec factory
[ { "change_type": "ADD", "diff": "+import { ModelSpec } from \"../api\";\n+\n+export interface CubeOpts {\n+ size: number;\n+ normal: boolean;\n+ uv: boolean;\n+}\n+\n+// prettier-ignore\n+export const cube = (opts?: Partial<CubeOpts>) => {\n+ opts = { size: 1, normal: true, uv: true, ...opts};\n+ const s = ...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(webgl): add cube modelspec factory
1
feat
webgl
679,913
09.04.2019 01:24:19
-3,600
582b57a3c1a42ecc7a02ff93b78a5f29875f37bb
feat(webgl): add gpgpu skeleton
[ { "change_type": "MODIFY", "diff": "@@ -599,6 +599,28 @@ export interface WeblGLCanvasOpts {\next: string[];\n}\n+export interface GPGPUOpts {\n+ size: number;\n+ inputs?: number;\n+ outputs?: number;\n+ gl?: WebGLRenderingContext;\n+ version?: 1 | 2;\n+}\n+\n+export interface GPGPUJobConfig {\n+ shader: Sh...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(webgl): add gpgpu skeleton
1
feat
webgl
679,913
09.04.2019 01:24:54
-3,600
ad43a1c25139e6b01a4d8c881db72be1f4557eb4
feat(webgl): add cubemap support & cubeMap() factory fn
[ { "change_type": "MODIFY", "diff": "+import { withoutKeysObj } from \"@thi.ng/associative\";\nimport { isArray } from \"@thi.ng/checks\";\nimport { ITexture, TextureOpts } from \"./api\";\nimport { isGL2Context } from \"./utils\";\n@@ -23,13 +24,14 @@ export class Texture implements ITexture {\nconfigure(op...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(webgl): add cubemap support & cubeMap() factory fn
1
feat
webgl
679,913
09.04.2019 01:27:02
-3,600
05f505982968d83d85c069e11ed8bcf2e5048758
feat(webgl): update GLSL_HEADER & LAMBERT shader preset
[ { "change_type": "MODIFY", "diff": "@@ -123,5 +123,4 @@ precision mediump float;\n#ifndef HALF_PI\n#define HALF_PI 1.570796326794896\n#endif\n-${VERSION_CHECK(300, \"\", \"#define texture texture2D\")}\n`;\n", "new_path": "packages/webgl/src/glsl/syntax.ts", "old_path": "packages/webgl/src/glsl/synt...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(webgl): update GLSL_HEADER & LAMBERT shader preset
1
feat
webgl
679,913
09.04.2019 01:28:05
-3,600
5173fda087d72e43779977c8ed52376c0a133655
feat(associative): add withoutKeys*(), ensureSet/Map fns
[ { "change_type": "MODIFY", "diff": "@@ -18,3 +18,4 @@ export * from \"./select-keys\";\nexport * from \"./sorted-map\";\nexport * from \"./sorted-set\";\nexport * from \"./union\";\n+export * from \"./without-keys\";\n", "new_path": "packages/associative/src/index.ts", "old_path": "packages/associat...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(associative): add withoutKeys*(), ensureSet/Map fns
1
feat
associative
679,913
09.04.2019 01:28:54
-3,600
137680c5fd6db69bfd24d909ac6d72e3f3e4efe2
build: add /assets sync to upload-examples script
[ { "change_type": "MODIFY", "diff": "@@ -17,6 +17,9 @@ for m in $modules; do\necho \"------------------------------\"\necho \"uploading $m...\"\necho \"------------------------------\"\n+ if [ -e $m/out/assets ]; then\n+ aws s3 sync $m/out/assets $dest/assets $opts\n+ fi\nassets=$(find $m/out/ -name '*.png')...
TypeScript
Apache License 2.0
thi-ng/umbrella
build: add /assets sync to upload-examples script
1
build
null
815,605
09.04.2019 04:58:16
0
ba0f88f5699528122344fff5fefd9887a941d0ae
fix: Fix test
[ { "change_type": "MODIFY", "diff": "@@ -262,7 +262,7 @@ pub mod test {\nlet data_hash = tx.outputs()[0].data_hash();\nassert_eq!(\nformat!(\"{:x}\", data_hash),\n- \"fe1cf5a297023a3c5282ecd9b0ca88d6736424d75fbe4dcf47a7c8b303e4d339\"\n+ \"8bddddc3ae2e09c13106634d012525aa32fc47736456dba11514d352845e561d\"\n);...
Rust
MIT License
nervosnetwork/ckb
fix: Fix test
1
fix
null
67,476
09.04.2019 06:01:30
-7,200
fa96940aeb230b78df889f8cfc36f6ea3590f1d6
chore(test): fix the test generator and re-generate the jit-html tests
[ { "change_type": "MODIFY", "diff": "// tslint:disable:quotemark member-access no-all-duplicated-branches\nimport { Profiler } from \"@aurelia/kernel\";\nimport { Aurelia, CustomElementResource } from \"@aurelia/runtime\";\n-import { expect } from \"chai\";\n-import { getVisibleText, TestContext, writeProfil...
TypeScript
MIT License
aurelia/aurelia
chore(test): fix the test generator and re-generate the jit-html tests
1
chore
test
67,476
09.04.2019 06:26:34
-7,200
c24ed0ac93c80711961156d7672a15f34806c7bc
test(expression-parser): use the new assertion util
[ { "change_type": "MODIFY", "diff": "@@ -24,7 +24,9 @@ import {\nTaggedTemplate,\nTemplate,\nUnary,\n- ValueConverter\n+ ValueConverter,\n+ IsLeftHandSide,\n+ IsAssign\n} from '@aurelia/runtime';\nimport { expect } from 'chai';\nimport {\n@@ -39,7 +41,11 @@ import {\nlatin1IdentifierStartChars,\notherBMPIden...
TypeScript
MIT License
aurelia/aurelia
test(expression-parser): use the new assertion util
1
test
expression-parser
217,922
09.04.2019 07:40:37
-7,200
b0e4afa4e4fc1f2086343bfdc38627bb603612c2
fix(desktop): fixed missing icons on desktop app closes
[ { "change_type": "MODIFY", "diff": "<div fxLayout=\"row\" fxLayoutGap=\"5px\" fxLayoutAlign=\"flex-start center\">\n<img *ngIf=\"node.folklore !== undefined\" src=\"{{node.folklore.icon | icon}}\" nz-tooltip\n[nzTitle]=\"node.folklore.id | itemName | i18n\" alt=\"\" class=\"folklore\">\n- <img *ngIf=\"node....
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(desktop): fixed missing icons on desktop app closes #836
1
fix
desktop
217,922
09.04.2019 07:56:26
-7,200
74ce69f4167defc357939399a6c159d80bbf6d8e
fix(log-tracker): fixed an issue with map not changing properly when switching fishing hole
[ { "change_type": "MODIFY", "diff": "import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';\nimport { MapData } from '../map-data';\n-import { Observable } from 'rxjs';\n+import { Observable, ReplaySubject } from 'rxjs';\nimport { MapService } from '../map.service';\nimport { Vector2...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(log-tracker): fixed an issue with map not changing properly when switching fishing hole
1
fix
log-tracker
217,922
09.04.2019 08:00:21
-7,200
d1ce8b8f9ba456e45f2833d2d8e8ff24712eb230
fix(alarms): better display for long timers
[ { "change_type": "MODIFY", "diff": "@@ -7,7 +7,8 @@ import { TranslateService } from '@ngx-translate/core';\n})\nexport class TimerPipe implements PipeTransform {\n- constructor(private translate: TranslateService){}\n+ constructor(private translate: TranslateService) {\n+ }\ntransform(duration: number): st...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(alarms): better display for long timers
1
fix
alarms
217,922
09.04.2019 08:07:54
-7,200
55806933d44d0f28e564d52c63cffb73dd1c7c6d
fix(core): fixed wrong imports issue causing some pages and features to break randomly
[ { "change_type": "MODIFY", "diff": "@@ -28,15 +28,14 @@ import { IpcService } from '../core/electron/ipc.service';\nimport { CharacterLinkPopupComponent } from '../core/auth/character-link-popup/character-link-popup.component';\nimport { NzModalService } from 'ng-zorro-antd';\nimport { TranslateService } fr...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(core): fixed wrong imports issue causing some pages and features to break randomly
1
fix
core
815,605
09.04.2019 08:28:58
0
c581ea3dfc1f40f2396dcee9e8517ba4526f057c
feat: Remove version from Script NOTE: This is a breaking change
[ { "change_type": "MODIFY", "diff": "@@ -13,7 +13,6 @@ pub const ALWAYS_SUCCESS_HASH: H256 = h256!(\"0x1\");\n// implement proper From trait\n#[derive(Clone, Default, Serialize, Deserialize, PartialEq, Eq, Hash)]\npub struct Script {\n- pub version: u8,\npub args: Vec<Vec<u8>>,\n// Binary hash here can be us...
Rust
MIT License
nervosnetwork/ckb
feat: Remove version from Script NOTE: This is a breaking change
1
feat
null
104,818
09.04.2019 09:21:01
18,000
1606988373f2bf303758c8bdbe8654266afdb36a
fix(tilecatalog): need to export the statefultilecatalog
[ { "change_type": "MODIFY", "diff": "@@ -12,6 +12,7 @@ export EmptyTable from './components/Table/EmptyTable/EmptyTable';\nexport TableSkeletonWithHeaders from './components/Table/TableSkeletonWithHeaders/TableSkeletonWithHeaders';\nexport StatefulTable from './components/Table/StatefulTable';\nexport TileCa...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(tilecatalog): need to export the statefultilecatalog
1
fix
tilecatalog
815,598
09.04.2019 10:28:19
-28,800
f8b818914d75da7d213999355c98b1d2cf7f3360
test: loading exported config files
[ { "change_type": "MODIFY", "diff": "@@ -192,6 +192,7 @@ fn touch(path: PathBuf) -> Result<PathBuf, ExitCode> {\n#[cfg(test)]\nmod tests {\nuse super::*;\n+ use ckb_resource::TemplateContext;\nfn mkdir() -> tempfile::TempDir {\ntempfile::Builder::new()\n@@ -208,6 +209,15 @@ mod tests {\n.unwrap_or_else(|err|...
Rust
MIT License
nervosnetwork/ckb
test: loading exported config files
1
test
null
679,913
09.04.2019 10:32:14
-3,600
d57cb5bedaab3603939b245f8cb3ed979f8834d5
feat(examples): add cubemap demo
[ { "change_type": "ADD", "diff": "+.cache\n+out\n+node_modules\n+yarn.lock\n+*.js\n", "new_path": "examples/webgl-cubemap/.gitignore", "old_path": null }, { "change_type": "ADD", "diff": "Binary files /dev/null and b/examples/webgl-cubemap/assets/langholmen2/negx.jpg differ\n", "new_p...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(examples): add cubemap demo
1
feat
examples
815,598
09.04.2019 10:37:23
-28,800
b11ae831e57fdcf2c2f653bd820e26721d8df1e0
feat: export config files atomically. Write to temp file first, then move to the target location.
[ { "change_type": "MODIFY", "diff": "@@ -10,8 +10,6 @@ include = [\"/specs\", \"/ckb.toml\", \"/ckb-miner.toml\"]\n[dependencies]\nphf = \"0.7.21\"\nincludedir = \"0.5.0\"\n-\n-[dev-dependencies]\ntempfile = \"3.0\"\n[build-dependencies]\n", "new_path": "resource/Cargo.toml", "old_path": "resource/Ca...
Rust
MIT License
nervosnetwork/ckb
feat: export config files atomically. Write to temp file first, then move to the target location.
1
feat
null
503,965
09.04.2019 10:41:31
14,400
67190ab06537ec9f59db1c0774f49f87366ab1dc
feat(docs): fix regression to hot reload core changes
[ { "change_type": "MODIFY", "diff": "\"prettier\": \"prettier --write 'storybook/**/*.js' 'packages/**/*.js' 'scripts/**/*.js'\",\n\"start\": \"yarn start:pf3\",\n\"start:pf3\": \"concurrently 'yarn storybook' 'yarn storybook:openurl'\",\n- \"start:pf4\": \"lerna run develop --scope=@patternfly/react-docs --...
TypeScript
MIT License
patternfly/patternfly-react
feat(docs): fix regression to hot reload core changes (#1727)
1
feat
docs