mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-02 08:44:19 +00:00
65 lines
2.3 KiB
Java
65 lines
2.3 KiB
Java
/*
|
|
* Copyright (C) 2010-2014 PEXS
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package com.jpexs.decompiler.flash;
|
|
|
|
import java.io.IOException;
|
|
import java.util.Properties;
|
|
|
|
/**
|
|
*
|
|
* @author JPEXS
|
|
*/
|
|
public class ApplicationInfo {
|
|
|
|
public static final String APPLICATION_NAME = "JPEXS Free Flash Decompiler";
|
|
public static final String SHORT_APPLICATION_NAME = "FFDec";
|
|
public static final String VENDOR = "JPEXS";
|
|
public static String version = "";
|
|
public static String build = "";
|
|
public static String nightly = "";
|
|
public static String applicationVerName;
|
|
public static String shortApplicationVerName;
|
|
public static final String PROJECT_PAGE = "http://www.free-decompiler.com/flash";
|
|
public static String updatePageStub = "http://www.free-decompiler.com/flash/update.html?currentVersion=";
|
|
public static String updatePage;
|
|
|
|
static {
|
|
loadProperties();
|
|
}
|
|
|
|
private static void loadProperties() {
|
|
Properties prop = new Properties();
|
|
try {
|
|
prop.load(ApplicationInfo.class.getResourceAsStream("/project.properties"));
|
|
version = prop.getProperty("version");
|
|
build = prop.getProperty("build");
|
|
nightly = prop.getProperty("nightly");
|
|
if (nightly.equals("true")) {
|
|
version = version + " nightly build " + build;
|
|
}
|
|
} catch (IOException | NullPointerException ex) {
|
|
//ignore
|
|
version = "unknown";
|
|
}
|
|
|
|
applicationVerName = APPLICATION_NAME + " v." + version;
|
|
updatePage = updatePageStub + version;
|
|
shortApplicationVerName = SHORT_APPLICATION_NAME + " v." + version;
|
|
}
|
|
|
|
}
|