forked from LiteLDev/LeviLamina
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor: namespace LL -> ll (LiteLDev#804)
* Refactor: namespace LL -> ll * Update .gitignore * Refactor: namespace PERM -> ll::perm * Update CHANGELOG.md
- Loading branch information
1 parent
ef9f4f7
commit 72e3336
Showing
65 changed files
with
713 additions
and
365 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,6 +1,16 @@ | ||
## [LiteLoader Release Note] | ||
LiteLoaderBDS-2.6.2 update has been released, adapted to BDS-1.19.21,BDS-1.19.22, ProtocolVersion 545 | ||
<!-- Version: 2.6.3 in progress --> | ||
# LiteLoader Release Note | ||
|
||
## [Bug Fixes] | ||
- Fix LLSE `NetworkAPI` | ||
- Add Random Number Generator (#755) by @OEOTYAN | ||
## Bug Fixes | ||
|
||
## APIs Changed list (for developer) | ||
**Note that APIs marked as deprecated will be removed in the next few releases.** | ||
|
||
### File | ||
llapi/LLAPI.h | ||
|
||
#### Item | ||
All item with namespace LL | ||
|
||
#### Note | ||
Move to namespace ll. you should recompile your plugin with latest SDK as soon as possible due to the removal of deprecated API in the future. | |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#pragma once | ||
|
||
namespace LL { | ||
namespace ll { | ||
bool StartCrashLoggerProcess(); | ||
void InitCrashLogger(bool enableCrashLogger); | ||
} // namespace LL | ||
} // namespace ll |
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,6 @@ | ||
#pragma once | ||
#include <string> | ||
|
||
namespace LL { | ||
void LoadMain(); | ||
} // namespace LL | ||
namespace ll { | ||
void LoadMain(); | ||
} // namespace ll |
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
Oops, something went wrong.