-
Notifications
You must be signed in to change notification settings - Fork 345
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0db7c14
commit bbabe7a
Showing
9 changed files
with
74 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
Version 2.0.0-RC15 | ||
- updated Fetch Migrator | ||
|
||
Version 2.0.0-RC14 | ||
- Bug fixes to database sanitize methods | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
fetchmigrator/src/main/java/com/tonyodev/fetchmigrator/fetch1/DownloadTransferPair.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package com.tonyodev.fetchmigrator.fetch1 | ||
|
||
import com.tonyodev.fetch2.Download | ||
|
||
data class DownloadTransferPair(val newDownload: Download, val oldID: Long) |
20 changes: 10 additions & 10 deletions
20
fetchmigrator/src/main/java/com/tonyodev/fetchmigrator/fetch1/ErrorUtils.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
package com.tonyodev.fetchmigrator.fetch1 | ||
|
||
internal object ErrorUtils { | ||
val FILE_NOT_CREATED = -102 | ||
val CONNECTION_TIMED_OUT = -104 | ||
val UNKNOWN_HOST = -105 | ||
val HTTP_NOT_FOUND = -106 | ||
val WRITE_PERMISSION_DENIED = -107 | ||
val N0_STORAGE_SPACE = -108 | ||
val SERVER_ERROR = -110 | ||
val FILE_NOT_FOUND = -111 | ||
val REQUEST_ALREADY_EXIST = -113 | ||
val ENQUEUE_ERROR = -117 | ||
const val FILE_NOT_CREATED = -102 | ||
const val CONNECTION_TIMED_OUT = -104 | ||
const val UNKNOWN_HOST = -105 | ||
const val HTTP_NOT_FOUND = -106 | ||
const val WRITE_PERMISSION_DENIED = -107 | ||
const val N0_STORAGE_SPACE = -108 | ||
const val SERVER_ERROR = -110 | ||
const val FILE_NOT_FOUND = -111 | ||
const val REQUEST_ALREADY_EXIST = -113 | ||
const val ENQUEUE_ERROR = -117 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters