This repository has been archived on 2025-07-18. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
ZUGABE/h-encore-auto/ref.cs

36 lines
1.7 KiB
C#
Raw Normal View History

2018-07-03 12:12:23 +02:00
using System.IO;
namespace h_encore_auto
{
public class Ref
{
public static readonly string urlCma = "http://cma.henkaku.xyz/?aid=";
public static readonly string urlPsvimg = "https://github.com/yifanlu/psvimgtools/releases/download/v0.1/psvimgtools-0.1-win32.zip";
public static readonly string urlPkg = "https://github.com/mmozeiko/pkg2zip/releases/download/v1.8/pkg2zip_32bit.zip";
public static readonly string urlEnc = "https://github.com/TheOfficialFloW/h-encore/releases/download/v1.0/h-encore.zip";
public static readonly string urlEntry = "http://ares.dl.playstation.net/cdn/JP0741/PCSG90096_00/xGMrXOkORxWRyqzLMihZPqsXAbAXLzvAdJFqtPJLAZTgOcqJobxQAhLNbgiFydVlcmVOrpZKklOYxizQCRpiLfjeROuWivGXfwgkq.pkg";
public static readonly string url7zr = "https://www.7-zip.org/a/7zr.exe";
public static readonly string url7za = "https://www.7-zip.org/a/7z1805-extra.7z";
2018-07-06 02:04:14 +02:00
public static readonly string urlQcma = "https://raw.githubusercontent.com/fyr77/ZUGABE/master/download-resources/Qcma.zip";
public static readonly string urlReg = "https://raw.githubusercontent.com/fyr77/ZUGABE/master/download-resources/qcma.reg";
public static readonly string pathCurrPic = "img/1.png";
2018-07-03 12:12:23 +02:00
public static readonly string tempDir = Path.GetTempPath() + @"encore_temp\";
2018-07-06 00:17:40 +02:00
public static readonly string[] trims = new string[] {
"movie\\",
"image\\bg\\",
"image\\ev\\",
"image\\icon\\",
"image\\stitle\\",
"image\\tachie\\",
"sound\\bgm\\",
"sound\\se\\",
"sound\\sec\\",
"sound\\voice\\",
"text\\01\\"
};
2018-07-03 12:12:23 +02:00
}
}