Skip to content

Commit ebf895a

Browse files
committed
Updated version to 0.12.2
1 parent a20feee commit ebf895a

File tree

10 files changed

+14
-10
lines changed

10 files changed

+14
-10
lines changed

rcb/docs/CHANGELOG.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44

55
Decorated log and release notes: https://github.com/Isfand/rcb/releases/tag/v?.?.?
66

7+
----------------------------------------------------------------------
8+
VERSION 0.12.2 (09-03-2025)
9+
----------------------------------------------------------------------
10+
11+
Decorated log and release notes: https://github.com/Isfand/rcb/releases/tag/v0.12.2
12+
713
- UPDATE: Added overlays/ inside the pkg-managers branch.
814
- UPDATE: In env.cxx user & home now use platform specific APIs in aci to determine environment.
915
- UPDATE: Repository is now multi-project. CHANGELOG.txt will now only mention changes inside rcb/

rcb/docs/TODO.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ Known issues:
44
3. --human-readable is only implemented for timestamp
55

66
ToDo:
7-
-No $USER variable exists on Termux. Implement getpwuid(getuid()) & GetUserNameW() for windows in aci
8-
-For $HOME use SHGetKnownFolderPath() on win32 and getpwuid(getuid()).pw_dir for POSIX.
97
-Fix. When deleting a directory which has a nested unreadable directory the program throws an exception instead of disregarding the directorySize. Or could just add a message saying to use --no-directorysize on the error.
108
-ADD an option to recreate .rcb/ folder. Helpful for incompatible versions.
119
-ADD a built in option to elevate privileges using an elevation command. E.G sudo/doas. Must enter name of command followed by password.

rcb/docs/manual/man1/rcb-delete.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.nh
2-
.TH RCB 1 "0.12.1" RCB "User Manuals"
2+
.TH RCB 1 "0.12.2" RCB "User Manuals"
33
.SH \fBNAME\fR
44
rcb-delete
55
.SH \fBSYNOPSIS\fR

rcb/docs/manual/man1/rcb-erase.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.nh
2-
.TH RCB 1 "0.12.1" RCB "User Manuals"
2+
.TH RCB 1 "0.12.2" RCB "User Manuals"
33
.SH \fBNAME\fR
44
rcb-erase
55
.SH \fBSYNOPSIS\fR

rcb/docs/manual/man1/rcb-list.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.nh
2-
.TH RCB 1 "0.12.1" RCB "User Manuals"
2+
.TH RCB 1 "0.12.2" RCB "User Manuals"
33
.SH \fBNAME\fR
44
rcb-list
55
.SH \fBSYNOPSIS\fR

rcb/docs/manual/man1/rcb-restore.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.nh
2-
.TH RCB 1 "0.12.1" RCB "User Manuals"
2+
.TH RCB 1 "0.12.2" RCB "User Manuals"
33
.SH \fBNAME\fR
44
rcb-restore
55
.SH \fBSYNOPSIS\fR

rcb/docs/manual/man1/rcb-validate.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.nh
2-
.TH RCB 1 "0.12.1" RCB "User Manuals"
2+
.TH RCB 1 "0.12.2" RCB "User Manuals"
33
.SH \fBNAME\fR
44
rcb-validate
55
.SH \fBSYNOPSIS\fR

rcb/docs/manual/man1/rcb.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.nh
2-
.TH RCB 1 "0.12.1" RCB "User Manuals"
2+
.TH RCB 1 "0.12.2" RCB "User Manuals"
33
.SH \fBNAME\fR
44
rcb
55
.SH \fBSYNOPSIS\fR

rcb/manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
: 1
22
name: rcb
3-
version: 0.12.1
3+
version: 0.12.2
44
type: exe
55
language: c++
66
summary: File recycling utility for the terminal

rcb/rcb/common/globals.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace rcb{
88

99
//Project
1010
inline const char* g_progName{"rcb"};
11-
inline const char* g_progVersion{"0.12.1"};
11+
inline const char* g_progVersion{"0.12.2"};
1212

1313
//Singleton
1414
inline Singleton* g_singleton = Singleton::instance();

0 commit comments

Comments
 (0)