-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
225 changed files
with
3,796 additions
and
2,095 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 |
---|---|---|
@@ -1,6 +1,18 @@ | ||
# PBO Manager change log | ||
|
||
## Version 1.1.0 | ||
|
||
- [Enhancement] UI no longer freezes when opening a PBO | ||
- [Enhancement] UI no longer freezes when pasting files into a PBO from the file system | ||
- [Enhancement] Progress operations are displayed in the Windows taskbar | ||
- [Enhancement] The application now can check for a new version. See "Help->Check for updates" | ||
- [Fix] If make any changes in a PBO while saving, the PBO got corrupted | ||
- [Fix] If "Cancel" while saving a PBO had a chance to corrupt | ||
- [Fix] The "pack" console command was interpreting "-o" option incorrectly | ||
- [Fix] It was possible to rename a file inside a PBO, if there was a file with the same name in a different casing | ||
- [Fix] The context menu "Extract to <folder_name>" had a superfluous file extension | ||
|
||
## Version 1.0.0 | ||
- Support of normal PBOs | ||
- Support of Mikero's mangled PBOs | ||
- Windows explorer integration | ||
- Windows explorer integration |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
list(APPEND PROJECT_SOURCES | ||
"domain/binarysource.cpp" | ||
"domain/documentheader.cpp" | ||
"domain/documentheaders.cpp" | ||
"domain/documentheaderstransaction.cpp" | ||
"domain/func.cpp" | ||
"domain/pbodocument.cpp" | ||
"domain/pbonode.cpp" | ||
"domain/pbonodetransaction.cpp" | ||
"domain/pbopath.cpp" | ||
"domain/validationexception.cpp") | ||
|
||
set(PROJECT_SOURCES ${PROJECT_SOURCES} PARENT_SCOPE) | ||
|
||
list(APPEND TEST_SOURCES | ||
"domain/__test__/documentheader_test.cpp" | ||
"domain/__test__/documentheaders_test.cpp" | ||
"domain/__test__/documentheaderstransaction_test.cpp" | ||
"domain/__test__/func_test.cpp" | ||
"domain/__test__/pbodocument_test.cpp" | ||
"domain/__test__/pbonode_test.cpp" | ||
"domain/__test__/pbonodetransaction_test.cpp" | ||
"domain/__test__/pbopath_test.cpp") | ||
|
||
set(TEST_SOURCES ${TEST_SOURCES} PARENT_SCOPE) |
Oops, something went wrong.