-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from marco-calautti/v3.1-preparation
Preparation for new version v3.1
- Loading branch information
Showing
15 changed files
with
36 additions
and
47 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
--------------------------------------------- | ||
Delta Patcher 3.0.2 | ||
--------------------------------------------- | ||
(C) 2010+ Phoenix <[email protected]> | ||
|
||
----------------------------------------------- | ||
Delta Patcher | ||
----------------------------------------------- | ||
<https:/github.com/marco-calautti/DeltaPatcher> | ||
|
||
------------------------- | ||
1. What is this? | ||
|
@@ -14,15 +13,15 @@ Delta Patcher is a GUI software that is able to create and apply xdelta patches. | |
2. Changelog | ||
------------------------- | ||
|
||
3.0.2: | ||
v3.1: | ||
- Added support for dark mode on Windows 10 or higher. On older versions of Windows, this feature is just disabled. | ||
- Delta Patcher no longer supports Windows XP, and now requires Windows 7 or higher to run. | ||
- The Windows binary is now 64 bits only. | ||
|
||
3.0.1: | ||
v3.0.1: | ||
- Fixed memory leak when applying patches without a description | ||
|
||
3.0.0: | ||
v3.0.0: | ||
- Modernized the build system using cmake. | ||
- xdelta has now finally been embedded as a library rather than an exe that needs to be extracted on the fly. | ||
This should finally avoid false positives from some antiviruses. In this process, xdelta has then also been updated to the latest stable version (3.0.11) which now supports secondary compressions. | ||
|
@@ -32,10 +31,10 @@ Delta Patcher is a GUI software that is able to create and apply xdelta patches. | |
- The Windows exe is still fully self-contained and compatible with Windows XP or above. | ||
- To avoid further false positive from anti virus software, the windows exe is not compressed anymore, so it is a bit larger than version 2. | ||
|
||
2.0.1: | ||
v2.0.1: | ||
-Added drag and drop functionality in patch creation mode. | ||
|
||
2.0: | ||
v2.0: | ||
-No xdelta.exe is needed. Starting from version 2.0, it has been embedded in the delta patcher executable; | ||
|
||
-More intuitive GUI design; | ||
|
@@ -48,7 +47,7 @@ Delta Patcher is a GUI software that is able to create and apply xdelta patches. | |
source window size | ||
checksum | ||
*custom UTF8 description for patches* -> patches created with delta patcher will show this | ||
description if opened with delta patcher (a l� PPF-O-MATIC3); | ||
description if opened with delta patcher (a l� PPF-O-MATIC3); | ||
|
||
-Associate xdelta patch files to be opened with delta patcher; | ||
|
||
|
@@ -64,16 +63,6 @@ Delta Patcher is a GUI software that is able to create and apply xdelta patches. | |
to place the "resource" directory along with | ||
this tool (see source code for the pot file). | ||
|
||
v1.0: | ||
- Initial release | ||
|
||
----------------------- | ||
3. Contacts and sources | ||
----------------------- | ||
|
||
You can contact me by email at | ||
[email protected], at the SadNES cITy | ||
board at http://lnx.sadnescity.it/forum/ or on github. | ||
The full source code can be found at | ||
github.com/marco-calautti/DeltaPatcher. | ||
|
||
|
||
Phoenix |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
//Copyright (C) 2017 Phoenix. | ||
//Copyright (C) 2010+ Phoenix. | ||
|
||
//This program is free software: you can redistribute it and/or modify | ||
//it under the terms of the GNU General Public License as published by | ||
|
@@ -22,14 +22,14 @@ | |
#include <common/COPYING.h> | ||
|
||
#ifdef __DP_DECODE_ONLY__ | ||
#define __DP_VERSION__ wxT("3.0.1 Lite") | ||
#define __DP_VERSION__ wxT("3.1 Lite") | ||
#else | ||
#define __DP_VERSION__ wxT("3.0.1") | ||
#define __DP_VERSION__ wxT("3.1") | ||
#endif | ||
|
||
#define __DP_DISCLAIMER__ _("This program is free software: you can redistribute it\nand/or modify it under the terms of the GNU General\nPublic License as published by the Free Software Foundation,\nversion 2.0.") | ||
static const wxString __DP_LICENSE__(rawLicense); | ||
#define __DP_NAME__ wxT("Delta Patcher") | ||
#define __DP_WEBSITE__ wxT("https://github.com/marco-calautti") | ||
#define __DP_COPYRIGHT__ wxT("(C) 2022+ Phoenix\n<[email protected]>") | ||
#define __DP_COPYRIGHT__ wxT("(C) 2010+ Phoenix\n<[email protected]>") | ||
#endif |
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
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
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
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