From bbbb06b2d318fe4556ac214eb40bd4fd7e195ffc Mon Sep 17 00:00:00 2001 From: CsvUpdater Date: Fri, 26 Apr 2024 03:28:48 +0000 Subject: [PATCH] Update stylesheet, add sdk version reading code --- libary.php | 15 +++++++++++++++ style.css | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/libary.php b/libary.php index 2ca54a5..d944704 100755 --- a/libary.php +++ b/libary.php @@ -3,6 +3,17 @@ include("header.php"); ?> attributes()->sdk_version)) { + return $xml->attributes()->sdk_version; + } + else if(isset($xml->attributes()->runtime_version)) { + return $xml->attributes()->runtime_version; + } + return "(Unknown)"; + } + function getSdkType(SimpleXMLElement $xml) { if(isset($xml->app_xml_format)) @@ -47,11 +58,14 @@ include("header.php"); $languageList = $xml->name->children(); $featureList = $xml->feature_list->children(); $SDKType = getSdkType($xml); + $SDKVer = getSdkVersion($xml); $zrifinfo = getZRIF($game); $zrifPendingInfo = getPendingZRIF($game); $pkgSony = getPKG($game); $simulatorZip = "decrypted-files/".$game.".zip"; + $androidCompatibile = (($SDKVer !== "2.00.00") && ($SDKType == "PSM")); + $verXML = simplexml_load_file('gameinfo/' . $game . "/version.xml", 'SimpleXMLElement', LIBXML_NOENT); $latestVersion = (string)($verXML->appVersion); $pkgReborn = "/pkg/".$game."_00/".$latestVersion."/".$game."_00.pkg"; @@ -93,6 +107,7 @@ include("header.php");
  • Supported locale:

  • Genres:

  • Type:

  • +
  • SDK Version:

  • diff --git a/style.css b/style.css index 871ca83..e8c7efb 100755 --- a/style.css +++ b/style.css @@ -366,7 +366,7 @@ */ html,body,head { - font-family: "Comic Sans MS", "Comic Sans", cursive; + font-family: "Comic Sans MS", "Comic Sans", "Arial"; position: absolute; width: 100%; margin: 0;