mirror of
https://github.com/godotengine/godot-git-plugin.git
synced 2026-01-03 10:09:43 +03:00
Add updated windows binaries with recent revision
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -10,4 +10,3 @@ func _ready():
|
||||
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
||||
#func _process(delta):
|
||||
# pass
|
||||
#new
|
||||
|
||||
@@ -9,8 +9,6 @@ void GitAPI::_register_methods() {
|
||||
register_method("_process", &GitAPI::_process);
|
||||
|
||||
register_method("_commit", &GitAPI::_commit);
|
||||
register_method("_get_commit_dock_panel_container", &GitAPI::_get_commit_dock_panel_container);
|
||||
register_method("_get_initialization_settings_panel_container", &GitAPI::_get_initialization_settings_panel_container);
|
||||
register_method("_get_is_vcs_intialized", &GitAPI::_get_is_vcs_intialized);
|
||||
register_method("_get_modified_files_data", &GitAPI::_get_modified_files_data);
|
||||
register_method("_get_file_diff", &GitAPI::_get_file_diff);
|
||||
@@ -22,11 +20,6 @@ void GitAPI::_register_methods() {
|
||||
register_method("_unstage_file", &GitAPI::_unstage_file);
|
||||
}
|
||||
|
||||
Control *GitAPI::_get_commit_dock_panel_container() {
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void GitAPI::_commit(const String p_msg) {
|
||||
|
||||
git_signature *default_sign;
|
||||
@@ -172,15 +165,6 @@ void GitAPI::create_initial_commit() {
|
||||
git_signature_free(sig);
|
||||
}
|
||||
|
||||
Control *GitAPI::_get_initialization_settings_panel_container() {
|
||||
|
||||
init_settings_panel_container = memnew(PanelContainer);
|
||||
init_settings_button = memnew(Button);
|
||||
init_settings_panel_container->add_child(init_settings_button);
|
||||
|
||||
return Variant(init_settings_panel_container);
|
||||
}
|
||||
|
||||
bool GitAPI::_get_is_vcs_intialized() {
|
||||
|
||||
return is_initialized;
|
||||
|
||||
@@ -30,8 +30,6 @@ class GitAPI : public EditorVCSInterface {
|
||||
git_repository *repo;
|
||||
|
||||
void _commit(const String p_msg);
|
||||
Control *_get_commit_dock_panel_container();
|
||||
Control *_get_initialization_settings_panel_container();
|
||||
bool _get_is_vcs_intialized();
|
||||
Dictionary _get_modified_files_data();
|
||||
Array _get_file_diff(const String file_path);
|
||||
|
||||
Reference in New Issue
Block a user