Warn that drive size can't be checked with DMG images
This commit is contained in:
parent
e538047399
commit
3b8b7cd43d
2 changed files with 10 additions and 3 deletions
|
@ -7,10 +7,10 @@ import android.view.View
|
||||||
import android.view.ViewGroup
|
import android.view.ViewGroup
|
||||||
import eu.depau.etchdroid.R
|
import eu.depau.etchdroid.R
|
||||||
import eu.depau.etchdroid.StateKeeper
|
import eu.depau.etchdroid.StateKeeper
|
||||||
import eu.depau.etchdroid.services.UsbAPIWriteService
|
|
||||||
import eu.depau.etchdroid.kotlin_exts.*
|
|
||||||
import eu.depau.etchdroid.enums.FlashMethod
|
import eu.depau.etchdroid.enums.FlashMethod
|
||||||
import eu.depau.etchdroid.enums.WizardStep
|
import eu.depau.etchdroid.enums.WizardStep
|
||||||
|
import eu.depau.etchdroid.kotlin_exts.*
|
||||||
|
import eu.depau.etchdroid.services.UsbAPIWriteService
|
||||||
import kotlinx.android.synthetic.main.fragment_confirminfo.view.*
|
import kotlinx.android.synthetic.main.fragment_confirminfo.view.*
|
||||||
import java.io.IOException
|
import java.io.IOException
|
||||||
|
|
||||||
|
@ -73,7 +73,13 @@ class ConfirmInfoFragment : WizardFragment() {
|
||||||
if (imgSize!! > devSize)
|
if (imgSize!! > devSize)
|
||||||
view.confirm_extra_info.text = getString(R.string.image_bigger_than_usb)
|
view.confirm_extra_info.text = getString(R.string.image_bigger_than_usb)
|
||||||
else {
|
else {
|
||||||
view.confirm_extra_info.text = getString(R.string.tap_next_to_write)
|
var text =
|
||||||
|
if (StateKeeper.flashMethod == FlashMethod.FLASH_DMG_API)
|
||||||
|
getString(R.string.no_image_size_check_dmg) + "\n"
|
||||||
|
else
|
||||||
|
""
|
||||||
|
text += getString(R.string.tap_next_to_write)
|
||||||
|
view.confirm_extra_info.text = text
|
||||||
canContinue = true
|
canContinue = true
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -71,4 +71,5 @@
|
||||||
<string name="fs_label">Label</string>
|
<string name="fs_label">Label</string>
|
||||||
<string name="fs_type">Type</string>
|
<string name="fs_type">Type</string>
|
||||||
<string name="part_size">Size</string>
|
<string name="part_size">Size</string>
|
||||||
|
<string name="no_image_size_check_dmg">Image size checks can\'t be performed on DMG images. Make sure the USB drive is large enough before flashing.</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
|
Loading…
Reference in a new issue