Kryton

Results 10 issues of Kryton

### Prerequisites * [x] Plugin is in the latest version * [X] Issue was not reported yet * [x] Stack trace (if provided) contains `mobi.hsz.idea.gitignore` package name ### Description I...

Hi. when you respond to a button callback with ``` { "response_type": "ephemeral", "replace_original": true, "text": "Recieved the Test Callback." } ``` it sends the following message ``` { "type":"message",...

Hi. I've had issues building the C++ client, due to the makefile. the line: hsclient_LDFLAGS= -static -L../libhsclient/.libs -lhsclient seems to cause the make to look for the libs in .libs/.libs...

bug_report

Hi. is it possible to add a license.md to this project? if you unsure of which to use, the Apache ASL-2.0 or BSD-2 ones is quite good/permissive, but naturally it's...

git log --all --numstat --date=short --pretty=format:"--%h--%ad--%aN" --no-renames produces a file ` -aa208775--2017-10-26--araut 2 0 src/main/java/com/xxx/yyy/repository/z1.java 23 0 src/main/java/com/xxx/yy/rest/z2.java 30 0 src/main/java/com/xxx/yy/service/z3.java 47 0 src/main/resources/swagger.yml 37 0 src/test/java/com/xxx/yy/rest/z4.java --c1ffc53b--2017-10-26--Prasad xxx `...

enhancement

simple typo fix

helps debug abi/decoding issues, as well as demonstrates how to build with 'C' api.

certain json parsers (serde_json in rust) convert no-field empty structs as null, instead of '{}'. This patch allows for both ways to seen as valid. (for example) ["get_status_request_v0",null] as well...

src/abieos.cpp isn't included in static library. so my simple C program can't compile/link. ``` #include #include "../src/abieos.h" int main() { fprintf(stdout,"hello\n"); abieos_context *context = abieos_create(); abieos_destroy(context); } ``` my 'fix'...

``` diff --git a/src/filesystem.cpp b/src/filesystem.cpp index 1b8df20..e643097 100644 --- a/src/filesystem.cpp +++ b/src/filesystem.cpp @@ -257,7 +257,7 @@ namespace fc { } if( ec ) { FC_THROW( "Copy from ${srcfile} to ${dstfile}...