brain-cleaner 1.2.4 → 1.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app.py +1 -1
- package/console/brain_cleaner_cli.py +1 -1
- package/package.json +1 -1
package/app.py
CHANGED
|
@@ -90,7 +90,7 @@ class BrainCleanerApp(ctk.CTk):
|
|
|
90
90
|
ctk.CTkLabel(title_f, text="Brain Cleaner",
|
|
91
91
|
font=ctk.CTkFont(size=19, weight="bold")
|
|
92
92
|
).pack(pady=(0, 2))
|
|
93
|
-
ctk.CTkLabel(title_f, text="v1.2.
|
|
93
|
+
ctk.CTkLabel(title_f, text="v1.2.5",
|
|
94
94
|
font=ctk.CTkFont(size=11, slant="italic"), text_color="#a1a1a1"
|
|
95
95
|
).pack()
|
|
96
96
|
|
|
@@ -50,7 +50,7 @@ class BrainCleanerCLI:
|
|
|
50
50
|
def draw_splash(self):
|
|
51
51
|
content = []
|
|
52
52
|
content.append(self.term.cyan(ASCII_ART))
|
|
53
|
-
content.append(self.term.bold("\n Welcome to Brain Cleaner CLI v1.2.
|
|
53
|
+
content.append(self.term.bold("\n Welcome to Brain Cleaner CLI v1.2.5"))
|
|
54
54
|
content.append(" " + "-" * 40)
|
|
55
55
|
content.append("\n Select Mode to begin:")
|
|
56
56
|
content.append(self.term.blue(" [1] AI Tools Cleanup"))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "brain-cleaner",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.5",
|
|
4
4
|
"description": "Professional CLI utility to reclaim disk space by removing residues from AI tools (Gemini, Claude, Cursor) and heavy node_modules folders. Optimized for system performance and digital decluttering.",
|
|
5
5
|
"main": "bin/brain-cleaner.js",
|
|
6
6
|
"bin": {
|