mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-31 11:44:36 +00:00
112 lines
4.6 KiB
Java
112 lines
4.6 KiB
Java
/*
|
|
* Copyright (C) 2010-2016 JPEXS, All rights reserved.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 3.0 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library.
|
|
*/
|
|
package com.jpexs.decompiler.flash;
|
|
|
|
import java.io.IOException;
|
|
import java.io.UnsupportedEncodingException;
|
|
import java.net.URLEncoder;
|
|
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 revision = "";
|
|
|
|
public static int version_major = 4;
|
|
|
|
public static int version_minor = 0;
|
|
|
|
public static int version_release = 0;
|
|
|
|
public static int version_build = 0;
|
|
|
|
public static boolean nightly = false;
|
|
|
|
public static String applicationVerName;
|
|
|
|
public static String shortApplicationVerName;
|
|
|
|
public static final String PROJECT_PAGE = "https://www.free-decompiler.com/flash";
|
|
|
|
/**
|
|
* URL for checking new updates
|
|
*/
|
|
public static String updateCheckUrl = "https://www.free-decompiler.com/flash/update/check/?currentVersion=<version>¤tRevision=<revision>¤tVersionMajor=<version.major>¤tVersionMinor=<version.minor>¤tVersionRelease=<version.release>¤tVersionBuild=<version.build>¤tNightly=<nightly>";
|
|
|
|
/**
|
|
* URL for doing update
|
|
*/
|
|
public static String updateUrl = "https://www.free-decompiler.com/flash/update/update/?currentVersion=<version>¤tRevision=<revision>¤tVersionMajor=<version.major>¤tVersionMinor=<version.minor>¤tVersionRelease=<version.release>¤tVersionBuild=<version.build>¤tNightly=<nightly>";
|
|
|
|
static {
|
|
loadProperties();
|
|
}
|
|
|
|
private static void loadProperties() {
|
|
Properties prop = new Properties();
|
|
try {
|
|
prop.load(ApplicationInfo.class.getResourceAsStream("/project.properties"));
|
|
version = prop.getProperty("version");
|
|
revision = prop.getProperty("build");
|
|
version_major = Integer.parseInt(prop.getProperty("version.major"));
|
|
version_minor = Integer.parseInt(prop.getProperty("version.minor"));
|
|
version_release = Integer.parseInt(prop.getProperty("version.release"));
|
|
version_build = Integer.parseInt(prop.getProperty("version.build"));
|
|
nightly = prop.getProperty("nightly").equals("true");
|
|
if (nightly) {
|
|
version = version + " nightly build " + version_build;
|
|
}
|
|
} catch (IOException | NullPointerException | NumberFormatException ex) {
|
|
// ignore
|
|
version = "unknown";
|
|
}
|
|
try {
|
|
updateCheckUrl = updateCheckUrl
|
|
.replace("<revision>", URLEncoder.encode(revision, "UTF-8"))
|
|
.replace("<version>", URLEncoder.encode(version, "UTF-8"))
|
|
.replace("<version.major>", "" + version_major)
|
|
.replace("<version.minor>", "" + version_minor)
|
|
.replace("<version.release>", "" + version_release)
|
|
.replace("<version.build>", "" + version_build)
|
|
.replace("<nightly>", nightly ? "1" : "0");
|
|
updateUrl = updateUrl
|
|
.replace("<revision>", URLEncoder.encode(revision, "UTF-8"))
|
|
.replace("<version>", URLEncoder.encode(version, "UTF-8"))
|
|
.replace("<version.major>", "" + version_major)
|
|
.replace("<version.minor>", "" + version_minor)
|
|
.replace("<version.release>", "" + version_release)
|
|
.replace("<version.build>", "" + version_build)
|
|
.replace("<nightly>", nightly ? "1" : "0");
|
|
} catch (UnsupportedEncodingException e) {
|
|
|
|
}
|
|
applicationVerName = APPLICATION_NAME + " v." + version;
|
|
shortApplicationVerName = SHORT_APPLICATION_NAME + " v." + version;
|
|
}
|
|
}
|