mirror of
https://github.com/tonikelope/megabasterd.git
synced 2025-04-29 22:24:32 +02:00
7.61
This commit is contained in:
parent
2120f621c4
commit
49ee626665
2
pom.xml
2
pom.xml
@ -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>
|
||||
|
@ -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;
|
||||
|
@ -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++;
|
||||
|
||||
|
@ -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 |
Loading…
x
Reference in New Issue
Block a user