mirror of
https://github.com/tonikelope/megabasterd.git
synced 2025-05-05 09:04:32 +02:00
7.26
https://github.com/tonikelope/megabasterd/issues/231 Upgrade com.fasterxml.jackson.core:jackson-databind to version 2.9.10.4
This commit is contained in:
parent
0116596eee
commit
aba81ad602
4
pom.xml
4
pom.xml
@ -3,7 +3,7 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>com.tonikelope</groupId>
|
<groupId>com.tonikelope</groupId>
|
||||||
<artifactId>MegaBasterd</artifactId>
|
<artifactId>MegaBasterd</artifactId>
|
||||||
<version>7.25</version>
|
<version>7.26</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
@ -37,7 +37,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.fasterxml.jackson.core</groupId>
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||||||
<artifactId>jackson-databind</artifactId>
|
<artifactId>jackson-databind</artifactId>
|
||||||
<version>2.9.10.3</version>
|
<version>2.9.10.4</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<properties>
|
<properties>
|
||||||
|
@ -169,6 +169,10 @@ public class ChunkWriterManager implements Runnable, SecureSingleThreadNotifiabl
|
|||||||
while (chunk_file.exists() && chunk_file.canRead()) {
|
while (chunk_file.exists() && chunk_file.canRead()) {
|
||||||
|
|
||||||
if (!download_finished && _download.getProgress() == _file_size) {
|
if (!download_finished && _download.getProgress() == _file_size) {
|
||||||
|
|
||||||
|
_download.getMain_panel().getDownload_manager().getTransference_running_list().remove(_download);
|
||||||
|
_download.getMain_panel().getDownload_manager().secureNotify();
|
||||||
|
|
||||||
_download.getView().printStatusNormal("Download finished. Joining file chunks, please wait...");
|
_download.getView().printStatusNormal("Download finished. Joining file chunks, please wait...");
|
||||||
_download.getView().getPause_button().setVisible(false);
|
_download.getView().getPause_button().setVisible(false);
|
||||||
_download.getMain_panel().getGlobal_dl_speed().detachTransference(_download);
|
_download.getMain_panel().getGlobal_dl_speed().detachTransference(_download);
|
||||||
|
@ -60,7 +60,7 @@ import javax.swing.UIManager;
|
|||||||
*/
|
*/
|
||||||
public final class MainPanel {
|
public final class MainPanel {
|
||||||
|
|
||||||
public static final String VERSION = "7.25";
|
public static final String VERSION = "7.26";
|
||||||
public static final boolean FORCE_SMART_PROXY = false; //TRUE FOR DEBUGING SMART PROXY
|
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 THROTTLE_SLICE_SIZE = 16 * 1024;
|
||||||
public static final int DEFAULT_BYTE_BUFFER_SIZE = 16 * 1024;
|
public static final int DEFAULT_BYTE_BUFFER_SIZE = 16 * 1024;
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 214 KiB After Width: | Height: | Size: 207 KiB |
Loading…
x
Reference in New Issue
Block a user