antosdk-apps/GitGraph
2023-01-01 01:54:04 +01:00
..
api typo: Rename the GitGraph package 2022-07-04 21:23:39 +02:00
build Update major applications to support AntOS v2.0.x 2023-01-01 01:54:04 +01:00
build.json update libantosdk 2022-07-04 21:47:25 +02:00
LibGitGraph.ts GitGraph: Fetch changes on a commit based on current commit and its left most parent commit 2022-07-06 18:30:59 +02:00
main.css update style 2022-07-04 23:14:28 +02:00
main.ts GitGraph: support open git repo with openwith dialog 2022-07-05 22:45:28 +02:00
package.json Update major applications to support AntOS v2.0.x 2023-01-01 01:54:04 +01:00
README.md Update major applications to support AntOS v2.0.x 2023-01-01 01:54:04 +01:00
scheme.html Update major applications to support AntOS v2.0.x 2023-01-01 01:54:04 +01: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".asFileHandle();

Change logs:

  • v0.1.5-b: Adapt to new AntOS UI API
  • v0.1.4-b: Fetch changes on a commit based on current commit and its left most parent commit
  • v0.1.3-b: Support open Git repo with open with dialog
  • v0.1.2-b: fix init bug
  • v0.1.1-b: add class to container element
  • v0.1.0-b: Initial version