bump vers
This commit is contained in:
parent
053383e9e7
commit
056e465ec2
2 changed files with 5 additions and 3 deletions
|
@ -414,12 +414,14 @@ public class AudibleGUI implements BookListener, ConnectionListener {
|
|||
msg = "You have " + conv.size() + " book(s) to convert to MP3\n";
|
||||
msg += "Would you like to start these job(s) now?";
|
||||
|
||||
boolean ok = MessageBoxFactory.showGeneralYesNo(null, "Start jobs?", msg);
|
||||
LOG.info(msg+" autoConvert="+prefs.autoConvert);
|
||||
|
||||
boolean ok = prefs.autoConvert;
|
||||
if (!ok) ok = MessageBoxFactory.showGeneralYesNo(null, "Start jobs?", msg);
|
||||
if (ok) {
|
||||
audible.convertQueue.addAll(conv);
|
||||
audible.downloadQueue.addAll(dl);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ package org.openaudible.desktop.swt.manager;
|
|||
public interface Version {
|
||||
|
||||
final String appName = "OpenAudible";
|
||||
final String appVersion = "0.9.3";
|
||||
final String appVersion = "0.9.4";
|
||||
final boolean appDebug = false;
|
||||
final String appLink = "http://openaudible.org";
|
||||
final String versionLink = "http://openaudible.org/swt_version.json";
|
||||
|
|
Loading…
Reference in a new issue