yermak / AudioBookConverter

Improved AudioBookConverter based on freeipodsoftware release (mp3 to m4b converter)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Prompt to download new version, even though it is installed

jimbo1jimbo opened this issue · comments

I have downloaded and installed AudioBookConverter-All-Users-6.2.10.msi (not via Steam)

Even though I have the latest version, when I start the program, I get a prompt to download the new version.

Is there a workaround to stop the check?

Same happens here.
I think this is a case-sensitivity issue. It is comparing the contents of https://raw.githubusercontent.com/yermak/AudioBookConverter/version/windows.txt which is

AudiobookConverter-6.2.10 but the program version is actually

AudioBookConverter-6.2.10

Yep.

Code from AudiobookConverter.java, lines 174-5

String version = readStringFromURL("https://raw.githubusercontent.com/yermak/AudioBookConverter/version/" + platform + ".txt");
if (!Version.getVersionString().equals(StringUtils.trim(version))) {

and from Version.java

    public static String getVersionString() {
        return "AudioBookConverter-#{APP_VERSION}#";
    }

This is not a bug :)