-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Config.json IP corrected to avoid vague connection error - Config.json Properly implemented relative paths (replacing basic / implementation) - Config.json added DumpDirectory to the Grim section (used by DumpUpdater and SPR Generator) - Config.json implemented DumpUpdater SPR sections - Configuration\ConfigMan.cs GetByteArray and UpdateByteArray methods implemented to support use of Modified XOR Keys - Configuration\ConfigMan.cs GetDirectory logic reimplement to properly implement relative path usage - DB\DBEvent.cs database event arguments implemented to support upgrading DBHelper reporting through events - DB\DBHelper.cs missing table backup during export properly implemented - DB\DBHelper.cs missing table drop/restore during export properly implemented - DB\DBHelper.cs execute logic corrected and now supports open/closing connection and returning active DbDataReader - GUI/DumpUpdater.cs implemented - GUI/SPRGenerator.cs implemented - GUI/XOREditor.cs implemented - GUI/Main.cs altered to support DumpUpdater/SPRGenerator and XOREditor - GUI/MessageListBox.cs new constructer implemented to alter the message box to be a notice - Structures/Settings.cs updated to support new utilities and DBHelper updates - Structures/SprInfo.cs implemented to support SPR Generator - Tabs/Manager.cs updated to allowing clearing the Hasher tab like the other tab styles - Tabs/Styles/Data.cs check_locations method implemented to check misplaces files in a dump directory before a build to avoid vague errors - Tabs/Styles/Data.cs TS_File_New_Click event logic updated to check locations before indexing - Tabs/Styles/Data.cs insert_files logic improved to utilize update to DataCore so that single files/multiple files are processed accordingly (fixes backup crash loop when inserting many files) - Tabs/Styles/Hasher.cs Clear() logic implemented - Tabs/Styles/RDB.cs database related logic updated (now RDBTab hooks events from the DBHelper
- Loading branch information
iSmokeDrow
committed
Jan 15, 2021
1 parent
fead36e
commit 6341f88
Showing
28 changed files
with
2,425 additions
and
2,523 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Grimoire.DB | ||
{ | ||
public class DBError : EventArgs | ||
{ | ||
public DBError(string message) => Message = message; | ||
|
||
public string Message; | ||
} | ||
|
||
public class DBProgressMax : EventArgs | ||
{ | ||
public DBProgressMax(int maximum) => Maximum = maximum; | ||
|
||
public DBProgressMax(int maximum, string message) | ||
{ | ||
Maximum = maximum; | ||
Message = message; | ||
} | ||
|
||
public int Maximum; | ||
public string Message; | ||
} | ||
|
||
public class DBProgressValue : EventArgs | ||
{ | ||
public DBProgressValue(int value) => Value = value; | ||
|
||
public DBProgressValue(int value, string message) | ||
{ | ||
Value = value; | ||
Message = message; | ||
} | ||
|
||
public int Value; | ||
public string Message; | ||
} | ||
|
||
public class DBMessage : EventArgs | ||
{ | ||
public DBMessage(string message) => Message = message; | ||
|
||
public string Message; | ||
} | ||
} |
Oops, something went wrong.