mirror of
https://github.com/tonikelope/megabasterd.git
synced 2025-06-12 21:37:37 +02:00
1.50
-Fix
This commit is contained in:
@ -483,14 +483,14 @@ public final class CryptTools {
|
||||
}
|
||||
|
||||
} else {
|
||||
throw new Exception(httppost.getURI().getAuthority() + " ELC server ERROR -> " + new String(out.toByteArray()));
|
||||
throw new Exception(httppost.getURI().getAuthority() + " ELC SERVER ERROR " + new String(out.toByteArray()));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
} catch (Exception ex) {
|
||||
Logger.getLogger(MiscTools.class.getName()).log(Level.SEVERE, null, ex);
|
||||
JOptionPane.showMessageDialog(main_panel.getView(), ex.getMessage(), "ELC decryption Error", JOptionPane.ERROR_MESSAGE);
|
||||
JOptionPane.showMessageDialog(main_panel.getView(), ex.getMessage(), "ELC ERROR", JOptionPane.ERROR_MESSAGE);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1110,9 +1110,12 @@ public final class Download implements Transference, Runnable, SecureNotifiable
|
||||
|
||||
getView().stop("Stopping download safely, please wait...");
|
||||
|
||||
for (ChunkDownloader downloader : _chunkworkers) {
|
||||
synchronized (this) {
|
||||
|
||||
downloader.secureNotify();
|
||||
for (ChunkDownloader downloader : _chunkworkers) {
|
||||
|
||||
downloader.secureNotify();
|
||||
}
|
||||
}
|
||||
|
||||
secureNotify();
|
||||
|
@ -59,7 +59,7 @@ import static megabasterd.Transference.MAX_TRANSFERENCE_SPEED_DEFAULT;
|
||||
*/
|
||||
public final class MainPanel {
|
||||
|
||||
public static final String VERSION = "1.49";
|
||||
public static final String VERSION = "1.50";
|
||||
public static final int THROTTLE_SLICE_SIZE = 16 * 1024;
|
||||
public static final int STREAMER_PORT = 1337;
|
||||
public static final int WATCHDOG_PORT = 1338;
|
||||
|
@ -408,7 +408,6 @@ public final class SettingsDialog extends javax.swing.JDialog {
|
||||
|
||||
swingReflectionInvoke("setEnabled", remove_elc_account_button, (elc_model.getRowCount() > 0));
|
||||
|
||||
System.out.println("asasasf");
|
||||
}
|
||||
|
||||
_remember_master_pass = true;
|
||||
|
@ -983,9 +983,12 @@ public final class Upload implements Transference, Runnable, SecureNotifiable {
|
||||
|
||||
getView().stop("Stopping upload safely, please wait...");
|
||||
|
||||
for (ChunkUploader uploader : _chunkworkers) {
|
||||
synchronized (this) {
|
||||
|
||||
uploader.secureNotify();
|
||||
for (ChunkUploader uploader : _chunkworkers) {
|
||||
|
||||
uploader.secureNotify();
|
||||
}
|
||||
}
|
||||
|
||||
secureNotify();
|
||||
|
Reference in New Issue
Block a user