Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
sasprosko590 committed Nov 1, 2023
1 parent 1c51df7 commit ef2ae65
Show file tree
Hide file tree
Showing 7 changed files with 106 additions and 205 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# CHANGELOG

Version V0.0.6 = Necessary edits and updates have been made. Added code to check the Nodejs version. Added github link to the terminal if the version does not match when checking the github version. Updated to get the username without errors (not maliciously). openTool function has been updated. Clear function has been updated. No new cmd commands added (seriously).

Version V0.0.5 = Cmd commands fixed, new cmd command added (openDiskCleanerSageRun), new bat file added 'start_clean.bat'

Version V0.0.4 = Version control added (beta), new cmd command added (WF), (WingetUpgrade), some things have been fixed, The name has changed to 'SASPClean'.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

This script was created to restore the computer to the fast, pure and tidy performance it had when it was first purchased.

- **Version:** 0.0.5
- **Version:** 0.0.6
- **License:** MIT
- **Copyright:** (c) 2023 Sasprosko/Umut

Expand Down
2 changes: 1 addition & 1 deletion SECURITY.MD
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Our project currently supports the following version:

| Version | Supported |
| ------- | ------------------- |
| 0.0.5 | :white_check_mark: |
| 0.0.6 | :white_check_mark: |

## Reporting a Vulnerability

Expand Down
289 changes: 95 additions & 194 deletions index.js

Large diffs are not rendered by default.

7 changes: 3 additions & 4 deletions index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,12 @@ async function runExample() {
openWingetUpgrade: true,
updateCheckWindowsUpdate: true,
};

await cleaner.clear(options);


cleaner.clear(options);
console.log("SASPClean completed successfully!");
} catch (error) {
console.error("Error during SASPClean:", error.message);
}
}

runExample();
runExample();
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "saspclean",
"version": "0.0.5",
"version": "0.0.6",
"description": "This script was created to restore the computer to the fast, pure and regular performance as it was when it was first purchased.",
"main": "index.js",
"scripts": {
Expand All @@ -13,6 +13,5 @@
"axios": "^1.5.1",
"node-fetch": "^3.3.2",
"user-agents": "^1.1.3"
},
"devDependencies": {}
}
}
4 changes: 2 additions & 2 deletions start_clean.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
@echo off
node index.test.js
pause
node test.js
pause

0 comments on commit ef2ae65

Please sign in to comment.