Skip to content

Commit

Permalink
1.1.3
Browse files Browse the repository at this point in the history
- Scan with Windows Defender renamed to Scan with Security Software
- Now uses Sophos Scan as a backup if Windows Defender is unavailable
- Updated Everything to version 1.4.1.1026
- Removed two improperly working registry tweaks
- Minor code changes and improvements
  • Loading branch information
Foulest committed Aug 5, 2024
1 parent 28e7f46 commit 0a38897
Show file tree
Hide file tree
Showing 17 changed files with 946 additions and 976 deletions.
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,12 @@ Automatically perform a comprehensive system cleanup and repair, including:
- Removing pre-installed bloatware
- Repairing various disk issues
- Running registry, service, and settings tweaks
- Scanning for malware with Windows Defender
- Scanning for malware with security software

![Automatic Repairs](https://i.imgur.com/mSicilx.png)
> **Note:** The malware scan automatically runs a quick scan with Windows Defender. In the event that Windows Defender
> is disabled or unavailable, a quick scan is performed with Sophos Scan & Clean instead.
![Automatic Repairs](https://i.imgur.com/OzTvpIL.png)

### **Useful Programs**

Expand All @@ -48,7 +51,7 @@ Access essential software tools for system maintenance, including:
- **[TrafficLight](https://bitdefender.com/solutions/trafficlight.html)**: Link to Bitdefender's TrafficLight browser
extension.

![Useful Programs](https://i.imgur.com/w0OrAjT.png)
![Useful Programs](https://i.imgur.com/w9KJ4J0.png)

### **System Shortcuts**

Expand All @@ -60,7 +63,7 @@ Quickly access important Windows utilities like:
- Windows Security
- Task Manager

![System Shortcuts](https://i.imgur.com/lYjZvms.png)
![System Shortcuts](https://i.imgur.com/BURrqr1.png)

## Download and Run

Expand Down
16 changes: 8 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group = 'net.foulest'
version = '1.1.2'
version = '1.1.3'
description = 'RepairKit'

// Set the language level to Java 17
Expand Down Expand Up @@ -60,7 +60,7 @@ launch4j {
version = "${project.version}"
textVersion = "${project.version}"
fileDescription = 'RepairKit by Foulest'
copyright = "2024"
copyright = '2024'
productName = "${project.name}"
internalName = "${project.name}"

Expand Down Expand Up @@ -97,10 +97,10 @@ tasks {
dependsOn processResources

doLast {
new File("${projectDir}/build/resources/main/version.properties").withWriter { w ->
Properties p = new Properties()
p['version'] = project.version.toString()
p.store w, null
new File("${projectDir}/build/resources/main/version.properties").withWriter { final writer ->
final Properties properties = new Properties()
properties['version'] = project.version.toString()
properties.store writer, null
}
}
}
Expand Down Expand Up @@ -159,8 +159,8 @@ tasks {
publishing {
publications {
mavenJava(MavenPublication) {
groupId = "net.foulest.repairkit"
artifactId = project.name
groupId = 'net.foulest.repairkit' as Publication
artifactId = project.name as Publication
version = project.version

from components.java
Expand Down
174 changes: 81 additions & 93 deletions src/main/java/net/foulest/repairkit/RepairKit.java

Large diffs are not rendered by default.

769 changes: 396 additions & 373 deletions src/main/java/net/foulest/repairkit/panels/AutomaticRepairs.java

Large diffs are not rendered by default.

Loading

0 comments on commit 0a38897

Please sign in to comment.