Skip to content
This repository has been archived by the owner on Nov 20, 2023. It is now read-only.

Commit

Permalink
Freeze datadex and spritedex repos
Browse files Browse the repository at this point in the history
Freezes the builds of pkuData and pkuSprite used for this version of pkuManager. Specifically the builds made on September 26, 2022.
  • Loading branch information
ozaner committed Feb 10, 2023
1 parent 14c0403 commit cf44f7c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
4 changes: 4 additions & 0 deletions pkuManager.Data/DataDexManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,8 @@ public class DataDexManager : DexManager
{
//Base URL of the https://github.com/project-pku/pkuData repo
protected override string ONLINE_BASE_URL => "https://raw.githubusercontent.com/project-pku/pkuData";

public DataDexManager() : base() { }
public DataDexManager(string hash) : base(hash) { }
public DataDexManager(DirectoryInfo directory) : base(directory) { }
}
4 changes: 4 additions & 0 deletions pkuManager.Data/SpriteDexManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,8 @@ public class SpriteDexManager : DexManager
{
//Base URL of the https://github.com/project-pku/pkuSprite repo
protected override string ONLINE_BASE_URL => "https://raw.githubusercontent.com/project-pku/pkuSprite";

public SpriteDexManager() : base() { }
public SpriteDexManager(string hash) : base(hash) { }
public SpriteDexManager(DirectoryInfo directory) : base(directory) { }
}
5 changes: 3 additions & 2 deletions pkuManager.WinForms/Registry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ namespace pkuManager.WinForms;

public static class Registry
{
public static readonly DataDexManager DDM = new();
public static readonly SpriteDexManager SDM = new();
//pkuData & pkuSprite builds as of September 26, 2022.
public static readonly DataDexManager DDM = new("e138b5dc0a024391992b6cdb667e308011365e63");
public static readonly SpriteDexManager SDM = new("a51d6b0f270c1a4cc0e2781690854d37730f5e66");

public readonly struct FormatInfo
{
Expand Down

0 comments on commit cf44f7c

Please sign in to comment.