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

45 lines
2.7 KiB
C#
Raw Normal View History

2018-07-06 16:29:40 +02:00
using System;
using System.IO;
2018-07-03 12:12:23 +02:00
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";
2018-07-06 18:56:45 +02:00
public static readonly string urlCreateBat = "https://raw.githubusercontent.com/fyr77/ZUGABE/master/download-resources/create.bat";
2018-07-06 02:04:14 +02:00
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 16:29:40 +02:00
public static bool isSecondGuide = false;
public static bool isQcmaConfigFound = false;
public static readonly string ProgramFilesx86 = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFilesX86);
public static readonly string ProgramFiles = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles);
public static string longAID = null;
public static string shortAID = null;
public static readonly string path7z = tempDir + "7za.exe";
public static readonly string pathPsvimg = tempDir + "psvimgtools.zip";
public static readonly string pathPkg = tempDir + "pkg2zip.zip";
public static readonly string pathEnc = tempDir + "h-encore.zip";
public static readonly string pathEntry = tempDir + "entryPoint.pkg";
public static readonly string pathQcma = tempDir + "qcma.zip";
public static readonly string pathQcmaExtracted = tempDir + "Qcma\\";
public static readonly string pathBackupReg = tempDir + "backup.reg";
public static readonly string pathImportReg = tempDir + "qcma.reg";
public static readonly string pathQcmaRes = tempDir + "QcmaRes\\";
public static bool isRegModified = false;
2018-07-03 12:12:23 +02:00
}
}