-
Notifications
You must be signed in to change notification settings - Fork 54
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 #112 from carloslack/kvdev
Add changelog
- Loading branch information
Showing
3 changed files
with
38 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Changelog | ||
|
||
All notable changes to KoviD will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/). | ||
|
||
## 2.0.0 - Oct 2 2024 | ||
### Added | ||
- Zero `/proc/sys/kernel/tainted` | ||
- Added "-g" proc interface to support inode hiding files globally | ||
- Added cheatsheet docfile for KoviD user interface | ||
|
||
### Changed | ||
- Remove magic word from syslog output, use KoviD /proc interface instead. | ||
- Add syslog-style timestamp to `tty` logfile | ||
- Modified "-a" proc interface to support full-path file hiding | ||
- Set persistence filenames from uuidgen output | ||
|
||
### Fixed | ||
- [Fix hidden process leftover in /proc](https://github.com/carloslack/KoviD/issues/100) | ||
- Hide kovid /proc interface even when it is available | ||
- Fix pr(info/warn/...) to proper no-op when in release mode | ||
|
||
|
||
|
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,7 @@ | ||
#ifndef __VERSION_H | ||
#define __VERSION_H | ||
|
||
#define KOVID_VERSION "2.0.0" | ||
|
||
#endif // __VERSION_H | ||
|