mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-31 11:44:36 +00:00
120 lines
4.0 KiB
Java
120 lines
4.0 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 libraryVersion = "";
|
|
|
|
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 GIT_HUB_PROJECT = "jindrapetrik/jpexs-decompiler";
|
|
|
|
public static final String PROJECT_PAGE = "https://github.com/" + GIT_HUB_PROJECT;
|
|
|
|
/**
|
|
* URL for checking new updates
|
|
*/
|
|
public static final String GITHUB_RELEASES_LATEST_URL = "https://api.github.com/repos/" + GIT_HUB_PROJECT + "/releases/latest";
|
|
|
|
/**
|
|
* URL for checking new updates
|
|
*/
|
|
public static final String GITHUB_RELEASES_URL = "https://api.github.com/repos/" + GIT_HUB_PROJECT + "/releases";
|
|
|
|
/**
|
|
* URL for doing update
|
|
*/
|
|
public static String UPDATE_URL = PROJECT_PAGE;
|
|
|
|
static {
|
|
loadProperties();
|
|
loadLibraryVersion();
|
|
}
|
|
|
|
private static void loadLibraryVersion() {
|
|
Properties prop = new Properties();
|
|
try {
|
|
prop.load(SWF.class.getResourceAsStream("/project.properties"));
|
|
String version = prop.getProperty("version");
|
|
int version_build = Integer.parseInt(prop.getProperty("version.build"));
|
|
boolean nightly = prop.getProperty("nightly").equals("true");
|
|
if (nightly) {
|
|
version = version + " nightly build " + version_build;
|
|
}
|
|
|
|
libraryVersion = version;
|
|
} catch (IOException | NullPointerException | NumberFormatException ex) {
|
|
// ignore
|
|
libraryVersion = "unknown";
|
|
}
|
|
}
|
|
|
|
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";
|
|
}
|
|
applicationVerName = APPLICATION_NAME + " v." + version;
|
|
shortApplicationVerName = SHORT_APPLICATION_NAME + " v." + version;
|
|
}
|
|
}
|