|
@@ -316,7 +316,6 @@ EditorAssetLibraryItemDescription::EditorAssetLibraryItemDescription() {
|
|
void EditorAssetLibraryItemDownload::_http_download_completed(int p_status, int p_code, const PoolStringArray &headers, const PoolByteArray &p_data) {
|
|
void EditorAssetLibraryItemDownload::_http_download_completed(int p_status, int p_code, const PoolStringArray &headers, const PoolByteArray &p_data) {
|
|
|
|
|
|
String error_text;
|
|
String error_text;
|
|
- print_line("COMPLETED: " + itos(p_status) + " code: " + itos(p_code) + " data size: " + itos(p_data.size()));
|
|
|
|
|
|
|
|
switch (p_status) {
|
|
switch (p_status) {
|
|
|
|
|
|
@@ -371,7 +370,6 @@ void EditorAssetLibraryItemDownload::_http_download_completed(int p_status, int
|
|
progress->set_max(download->get_body_size());
|
|
progress->set_max(download->get_body_size());
|
|
progress->set_value(download->get_downloaded_bytes());
|
|
progress->set_value(download->get_downloaded_bytes());
|
|
|
|
|
|
- print_line("max: " + itos(download->get_body_size()) + " bytes: " + itos(download->get_downloaded_bytes()));
|
|
|
|
install->set_disabled(false);
|
|
install->set_disabled(false);
|
|
|
|
|
|
progress->set_value(download->get_downloaded_bytes());
|
|
progress->set_value(download->get_downloaded_bytes());
|
|
@@ -747,8 +745,6 @@ void EditorAssetLibrary::_image_request_completed(int p_status, int p_code, cons
|
|
|
|
|
|
if (p_status == HTTPRequest::RESULT_SUCCESS) {
|
|
if (p_status == HTTPRequest::RESULT_SUCCESS) {
|
|
|
|
|
|
- print_line("GOT IMAGE YAY!");
|
|
|
|
-
|
|
|
|
if (p_code != HTTPClient::RESPONSE_NOT_MODIFIED) {
|
|
if (p_code != HTTPClient::RESPONSE_NOT_MODIFIED) {
|
|
for (int i = 0; i < headers.size(); i++) {
|
|
for (int i = 0; i < headers.size(); i++) {
|
|
if (headers[i].findn("ETag:") == 0) { // Save etag
|
|
if (headers[i].findn("ETag:") == 0) { // Save etag
|
|
@@ -811,7 +807,6 @@ void EditorAssetLibrary::_update_image_queue() {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- print_line("REQUEST ICON FOR: " + itos(E->get().asset_id));
|
|
|
|
Error err = E->get().request->request(E->get().image_url, headers);
|
|
Error err = E->get().request->request(E->get().image_url, headers);
|
|
if (err != OK) {
|
|
if (err != OK) {
|
|
to_delete.push_back(E->key());
|
|
to_delete.push_back(E->key());
|
|
@@ -855,7 +850,6 @@ void EditorAssetLibrary::_request_image(ObjectID p_for, String p_image_url, Imag
|
|
|
|
|
|
void EditorAssetLibrary::_repository_changed(int p_repository_id) {
|
|
void EditorAssetLibrary::_repository_changed(int p_repository_id) {
|
|
host = repository->get_item_metadata(p_repository_id);
|
|
host = repository->get_item_metadata(p_repository_id);
|
|
- print_line(".." + host);
|
|
|
|
if (templates_only) {
|
|
if (templates_only) {
|
|
_api_request("configure", REQUESTING_CONFIG, "?type=project");
|
|
_api_request("configure", REQUESTING_CONFIG, "?type=project");
|
|
} else {
|
|
} else {
|
|
@@ -1066,8 +1060,6 @@ void EditorAssetLibrary::_http_request_completed(int p_status, int p_code, const
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
|
|
|
|
- print_line("response: " + itos(p_status) + " code: " + itos(p_code));
|
|
|
|
-
|
|
|
|
Dictionary d;
|
|
Dictionary d;
|
|
{
|
|
{
|
|
Variant js;
|
|
Variant js;
|
|
@@ -1077,8 +1069,6 @@ void EditorAssetLibrary::_http_request_completed(int p_status, int p_code, const
|
|
d = js;
|
|
d = js;
|
|
}
|
|
}
|
|
|
|
|
|
- print_line(Variant(d).get_construct_string());
|
|
|
|
-
|
|
|
|
RequestType requested = requesting;
|
|
RequestType requested = requesting;
|
|
requesting = REQUESTING_NONE;
|
|
requesting = REQUESTING_NONE;
|
|
|
|
|