Fix bug : -o option not handled in acsmdownloader

This commit is contained in:
Grégory Soutadé 2021-07-08 12:59:56 +02:00
parent 429fe34e8e
commit 7adc6a0fc1
2 changed files with 4 additions and 2 deletions

View File

@ -40,7 +40,7 @@
#define ACS_SERVER "http://adeactivate.adobe.com/adept"
#endif
#define LIBGOUROU_VERSION "0.1"
#define LIBGOUROU_VERSION "0.1.1"
namespace gourou
{

View File

@ -82,7 +82,9 @@ public:
else
filename += ".epub";
}
else
filename = outputFile;
if (outputDir)
{
QDir dir(outputDir);