You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Updated version number and column width, removed terminal resizing functionality, and adjusted related code.
* Revise contributing guidelines for clarity and structure
* Added caches and created cc_caches
Updated the system software list to include Shell History and Package Managers.
* Refactor installation instructions in README
* Moved most functions to seperate file & code cleanup
* Update issue templates (#22)
* Enhance README with updated badges
Go Report Card has been sunset :(
* Changed Logo
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,13 @@
1
1
# 🚀 How Can you Contribute?
2
2
## 1. Adding New Programs/Caches
3
3
The most common way to contribute is by adding support for more applications.
4
+
* Open the cc_caches.go file.
4
5
* Locate the getPrograms() function
5
6
* Add a new Program struct to the slice.
6
7
***Important:** Ensure you provide paths for both Windows and Linux where possible.
7
8
* Use filepath.Join and environment variables (like localAppData) and maintain cross-platform compatibility.
8
9
9
-
## 2. Improving the UI/TUI
10
+
## 2. Improving the TUI
10
11
I aim for a "Crunchy" retro terminal feel. Improvements to the menu navigation, spinner, or banner are welcome, provided they don't add external dependencies.
11
12
12
13
## 3. Bug Reports & Feature Requests
@@ -22,7 +23,7 @@ If you find a bug or have an idea:
22
23
## 📥 Pull Request Process
23
24
* Fork the repository and create your branch from main.
24
25
* Test your changes! Run a dry-run (-d) to ensure paths are detected correctly.
25
-
* Commit with descriptive messages (e.g., "Add Spotify cache support").
26
+
* Commit with descriptive messages (e.g., "Add: Spotify cache support").
26
27
* Open a PR and describe what your changes do and why they are necessary.
## 📥 How to Install & Download 
37
-
Paste the corresponding command into your terminal and restart it afterwards. \
44
+
**Download the latest binary and just run/open it: [[Download here]](https://github.com/knuspii/crunchycleaner/releases)**\
45
+
Or paste the corresponding command into your terminal and restart it afterwards to fully install it. \
46
+
\
38
47
For Linux (using sudo):
39
48
```
40
49
curl -L https://github.com/Knuspii/CrunchyCleaner/releases/latest/download/crunchycleaner -o cc && sudo install -m 755 cc /usr/local/bin/crunchycleaner && rm cc
@@ -47,30 +56,24 @@ For Go (using go install):
47
56
```
48
57
go install github.com/knuspii/crunchycleaner/v2@latest
49
58
```
50
-
After that you can just type `crunchycleaner -v` into your terminal to verify it's installed. \
0 commit comments