-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Complete overhaul, Muledump Replica: Vault Peeker and more COMPLETE OVERHAUL - Completely changed the UI. - Re-Wrote most of the Code. - Improved Account-Handling. ACCOUNTS - Added a new Filter & Grouping Option. - Mass-toggle the "Daily Login" or "Show in Vault Peeker" option. Vault Peeker is limited to 50 accounts. - Improved performance a lot. MODULES - Simple collection of all important tools. IMPORT & EXPORT - Added a custom Importer for text-based formats. - Added a custom Exporter, to export your accounts as needed. - Improved UI - Improved Performance VAULT PEEKER MODULE - Basically a Muledump replica with less functionality. Please give me feedback on what to change / add. DAILY LOGIN SERVICE - Re-done most of it from scratch. - Run manually with a "refresh all token" option via the menu. - Get accountname if it's empty. - Added the game-updater. - Improved performance. - Improved reliability. - Improved statistics data collection. - Improved logging. NOTIFICATION CENTER | former known as Tasktray-tool. - Improved UI. - Fixed all known bugs. STATISTICS MODULE - Smaller UI improvements. - Added support for the Kensei-class. PING CHECKER MODULE - Ping-Speed improved. - Smaller UI improvements. - Added support for the Kensei-class. MISCELLANEOUS - New Logo & Icon! - Added an option to change the snackbar position.
- Loading branch information
Showing
1,092 changed files
with
127,532 additions
and
29,627 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
_Releases/ | ||
bin/ | ||
StringToBase64/ | ||
StringToBase64/ | ||
EAMBackup/ |
Binary file not shown.
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,51 @@ | ||
{ | ||
"Version": 1, | ||
"ProjectMap": { | ||
"420c5644-cb8d-4bad-a678-6cfb1a8acd92": { | ||
"ProjectGuid": "420c5644-cb8d-4bad-a678-6cfb1a8acd92", | ||
"DisplayName": "EAM Vault Peeker", | ||
"ColorIndex": 0 | ||
}, | ||
"4daa2462-ce82-491d-a823-b839036566d5": { | ||
"ProjectGuid": "4daa2462-ce82-491d-a823-b839036566d5", | ||
"DisplayName": "ExaltAccountManager", | ||
"ColorIndex": 1 | ||
}, | ||
"786f8d8b-1c1b-43e7-be17-50872f7720e6": { | ||
"ProjectGuid": "786f8d8b-1c1b-43e7-be17-50872f7720e6", | ||
"DisplayName": "StringToBase64", | ||
"ColorIndex": 2 | ||
}, | ||
"63c8eba3-8dcd-46bd-98d0-58f3190c5b6f": { | ||
"ProjectGuid": "63c8eba3-8dcd-46bd-98d0-58f3190c5b6f", | ||
"DisplayName": "MK_EAM_Lib", | ||
"ColorIndex": 3 | ||
}, | ||
"6a00bf6f-5b9b-4e77-a3c9-96cc57700d5a": { | ||
"ProjectGuid": "6a00bf6f-5b9b-4e77-a3c9-96cc57700d5a", | ||
"DisplayName": "EAM PingChecker", | ||
"ColorIndex": 4 | ||
}, | ||
"a2fe74e1-b743-11d0-ae1a-00a0c90fffc3": { | ||
"ProjectGuid": "a2fe74e1-b743-11d0-ae1a-00a0c90fffc3", | ||
"DisplayName": "Sonstige Dateien", | ||
"ColorIndex": -1 | ||
}, | ||
"b429bd15-3c98-4150-9f09-9a521a112997": { | ||
"ProjectGuid": "b429bd15-3c98-4150-9f09-9a521a112997", | ||
"DisplayName": "EAM Statistics", | ||
"ColorIndex": 5 | ||
}, | ||
"762c7732-b9df-4ed4-b166-ed8ab0134d1d": { | ||
"ProjectGuid": "762c7732-b9df-4ed4-b166-ed8ab0134d1d", | ||
"DisplayName": "EAM Daily Login Service", | ||
"ColorIndex": 6 | ||
}, | ||
"39f18f98-f955-4b55-b7bc-1d8402e279bb": { | ||
"ProjectGuid": "39f18f98-f955-4b55-b7bc-1d8402e279bb", | ||
"DisplayName": "EAM Tasktray Tool", | ||
"ColorIndex": 7 | ||
} | ||
}, | ||
"NextColorIndex": 8 | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,12 @@ | ||
using System.Drawing; | ||
|
||
namespace EAM_Vault_Peeker | ||
{ | ||
public static class ColorScheme | ||
{ | ||
public static Color GetColorDef(bool useDarkmode) => useDarkmode ? Color.FromArgb(32, 32, 32) : Color.FromArgb(255, 255, 255); | ||
public static Color GetColorSecond(bool useDarkmode) => useDarkmode ? Color.FromArgb(23, 23, 23) : Color.FromArgb(250, 250, 250); | ||
public static Color GetColorThird(bool useDarkmode) => useDarkmode ? Color.FromArgb(0, 0, 0) : Color.FromArgb(230, 230, 230); | ||
public static Color GetColorFont(bool useDarkmode) => useDarkmode ? Color.White : Color.Black; | ||
} | ||
} |
Oops, something went wrong.