Giter VIP home page Giter VIP logo

gitui79.js's Introduction

gitui79.js

Usage

<div id="gitui79"></div>

<script>
var gitUi79 = new GitUi79(
    document.getElementById('gitui79'),
    function(cmdAry, callback){
        // サーバーでgitコマンドを実行するAPIを用意してください。
        // callback には、 gitコマンドが出力した文字列を返してください。
        var stdout = '';
        $.ajax({
            url: '/path/to/endpoint',
            data: cmdAry,
            success: function(data){
                stdout += data;
            },
            error: function(data){
                stdout += data; // エラー出力も stdout に混ぜて送る
            },
            complete: function(){
                callback(0, stdout);
            }
        });
        return;
    },
    {
        "committer": {
            "name": "Committer Name",
            "email": "[email protected]",
        },
        "lang": "ja",
    }
);
// console.log(remoteFinder);
gitUi79.init(function(){
    console.log('ready.');
});
</script>

更新履歴 - Change log

gitui79 v0.3.5 (2024年2月18日)

  • 差分表示に関する改善。

gitui79 v0.3.4 (2023年11月13日)

  • ダークモード用のスタイルをバンドルした。

gitui79 v0.3.3 (2023年7月14日)

  • 新規ブランチ作成のUIを変更した。
  • 新しい差分をコミットできない場合がある問題を修正した。

gitui79 v0.3.2 (2023年5月1日)

  • px2style を更新した。

gitui79 v0.3.1 (2023年4月22日)

  • status画面でファイル毎の差分表示がされない不具合の修正。
  • log画面で、「このバージョン適用前に戻る」機能を追加した。
  • log画面で、コミット中のファイルの差分を表示するようになった。
  • log画面で、「次の50件」をクリックして続きがない場合に起きるエラーを修正した。
  • 古いバージョンの git環境で、削除されたファイルをコミットできない不具合を修正した。
  • options.lang を追加した。
  • スタイリングとUIの改善。

gitui79 v0.3.0 (2022年6月5日)

  • ファイルのステータス表示で、ソースの差分が見やすくなった。
  • ダークモードへの対応を強化した。

gitui79 v0.2.2 (2021年5月25日)

  • リモートでブランチが削除されたことが反映されない問題を修正。

gitui79 v0.2.1 (2021年4月28日)

  • コミットがないときに、コミットログを表示しようとすると、画面のロードが完了しない不具合を修正した。
  • ステータス画面とブランチ画面の表示前に git fetch を要求するようになった。
  • その他の細かい修正。

gitui79 v0.2.0 (2021年3月31日)

  • コミット画面とステータス画面を統合した。
  • ステータス画面で、コミットされていない変更内容を確認できるようになった。
  • ステータス画面で、コミットされていない変更内容を取り消しできるようになった。
  • コミットログ画面を追加した。
  • オプション committer を追加した。
  • プッシュ画面、プル画面、ブランチ画面を追加した。
  • その他いくつかのUI改善と不具合の修正。

gitui79 v0.1.0 (2019年8月15日)

  • 初回リリース

License

MIT License

Author

gitui79.js's People

Contributors

tomk79 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.