antosdk-apps/GitGraph
2022-07-04 23:10:08 +02:00
..
api typo: Rename the GitGraph package 2022-07-04 21:23:39 +02:00
build change style 2022-07-04 23:10:08 +02:00
build.json update libantosdk 2022-07-04 21:47:25 +02:00
LibGitGraph.ts fix: graph init bugs when changing git repository 2022-07-04 23:01:35 +02:00
main.css change style 2022-07-04 23:10:08 +02:00
main.ts typo: Rename the GitGraph package 2022-07-04 21:23:39 +02:00
package.json fix: graph init bugs when changing git repository 2022-07-04 23:01:35 +02:00
README.md fix: graph init bugs when changing git repository 2022-07-04 23:01:35 +02:00
scheme.html typo: Rename the GitGraph package 2022-07-04 21:23:39 +02:00

LibGitGraph

Git grapth visualization API for AntOS application.

The visualization can be easily integrated to an AntOS application, example:

const graph = new API.LibGitGraph({
    target: this.find("git-graph")
});
graph.on_open_diff = (files) => {
    console.log(files);
}
graph.base_dir = "home://workspace/repo-git";

Change logs:

  • v0.1.2-b: fix init bug
  • v0.1.1-b: add class to container element
  • v0.1.0-b: Initial version