This commit is contained in:
tonikelope 2023-01-04 22:14:06 +01:00
parent 2120f621c4
commit 49ee626665
5 changed files with 11 additions and 3 deletions

View File

@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.tonikelope</groupId>
<artifactId>MegaBasterd</artifactId>
<version>7.60</version>
<version>7.61</version>
<packaging>jar</packaging>
<dependencies>
<dependency>

View File

@ -67,7 +67,7 @@ import javax.swing.UIManager;
*/
public final class MainPanel {
public static final String VERSION = "7.60";
public static final String VERSION = "7.61";
public static final boolean FORCE_SMART_PROXY = false; //TRUE FOR DEBUGING SMART PROXY
public static final int THROTTLE_SLICE_SIZE = 16 * 1024;
public static final int DEFAULT_BYTE_BUFFER_SIZE = 16 * 1024;

View File

@ -538,7 +538,7 @@ public class MegaAPI implements Serializable {
}
} while (empty_response || mega_error != 0 || (http_error == 509 && MainPanel.isUse_smart_proxy() && !MainPanel.isUse_proxy()));
} while (http_error == 500 || empty_response || mega_error != 0 || (http_error == 509 && MainPanel.isUse_smart_proxy() && !MainPanel.isUse_proxy()));
_seqno++;

View File

@ -2025,6 +2025,14 @@ public class SettingsDialog extends javax.swing.JDialog {
String pass = (String) model.getValueAt(i, 1);
int j = i;
MiscTools.GUIRun(() -> {
status.setText(LabelTranslatorSingleton.getInstance().translate("Checking your MEGA accounts, please wait... ") + email + " (" + String.valueOf(j + 1) + "/" + String.valueOf(model_row_count) + ")");
});
if (!email.isEmpty() && !pass.isEmpty()) {
new_valid_mega_accounts.add(email);

Binary file not shown.

Before

Width:  |  Height:  |  Size: 181 KiB

After

Width:  |  Height:  |  Size: 178 KiB