-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- compiler - doc - tests - visualizer - runtime/go
- Loading branch information
Showing
5 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
Submodule compiler
updated
6 files
Submodule doc
updated
24 files
+1 −0 | .github/push_artifacts | |
+43 −0 | .github/workflows/main.yml | |
+0 −1 | .gitignore | |
+4 −1 | .gitmodules | |
+0 −36 | .travis.yml | |
+5 −0 | Gemfile | |
+7 −9 | Makefile | |
+5 −5 | ci.adoc | |
+11 −4 | developers.adoc | |
+1 −1 | developers_intro.adoc | |
+1 −1 | docinfo-footer.html | |
+1 −0 | docson | |
+2 −2 | dot/ci_overview.dot | |
+3 −0 | index.adoc | |
+1 −1 | kst.adoc | |
+1 −1 | ksy_style_guide.adoc | |
+5 −5 | lang_cpp_stl.adoc | |
+4 −4 | lang_java.adoc | |
+4 −4 | lang_php.adoc | |
+9 −10 | lang_python.adoc | |
+0 −1 | push_artifacts | |
+833 −0 | serialization.adoc | |
+1 −0 | tmpl/navbar.html | |
+127 −40 | user_guide.adoc |
Submodule go
updated
6 files
+20 −12 | .github/workflows/go.yml | |
+1 −1 | LICENSE | |
+1 −1 | README.md | |
+5 −0 | docker-golangci-lint | |
+1 −1 | go.mod | |
+30 −1 | go.sum |
Submodule tests
updated
3 files
+2 −2 | formats_err/meta_imports_rel2.ksy | |
+2 −2 | formats_err/meta_imports_rel_unknown.ksy | |
+3 −3 | formats_err/type_unknown_many.ksy |
Submodule visualizer
updated
16 files
+3 −3 | .github/workflows/docker-image.yml | |
+4 −0 | .rubocop.yml | |
+7 −6 | Dockerfile | |
+0 −0 | README-dockerhub.md | |
+8 −3 | bin/ksdump | |
+4 −1 | bin/ksv | |
+2 −1 | kaitai-struct-visualizer.gemspec | |
+23 −35 | lib/kaitai/console_ansi.rb | |
+25 −18 | lib/kaitai/console_windows.rb | |
+2 −2 | lib/kaitai/struct/visualizer/ksy_compiler.rb | |
+10 −1 | lib/kaitai/struct/visualizer/node.rb | |
+2 −2 | lib/kaitai/struct/visualizer/tree.rb | |
+2 −2 | lib/kaitai/tui.rb | |
+18 −0 | spec/formats_err/attr_bad_if2.ksy | |
+12 −0 | spec/formats_err/attr_bad_key.ksy | |
+3 −3 | spec/ksy_compiler_spec.rb |