Skip to content

Commit 80071c4

Browse files
committed
1.4.0
- Replaced TreeSize with WizTree - Updated CPU-Z to version 2.19.0 - Updated HWMonitor to version 1.62.0 - Updated CrystalDiskInfo to version 9.8.0 - Updated CrystalDiskMark to version 9.0.2 - Added WinMTR, USBLogView, USBDeview, TCPView, Rufus, RegScanner, HWiNFO, and HeavyLoad to the list of Useful Programs - Added fix to reinstall Microsoft.GetHelp if missing in Run System Tweaks - Added fix to repair all broken Microsoft apps in Run System Tweaks - Added three more apps to the bloatware list - Removed Microsoft.GetHelp from bloatware apps - Cleaned up code
1 parent 756d14b commit 80071c4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+1556
-1366
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group = 'net.foulest'
10-
version = '1.3.9'
10+
version = '1.4.0'
1111
description = 'RepairKit'
1212

1313
// Set the language level to Java 17

src/main/java/net/foulest/repairkit/RepairKit.java

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@
2121
import lombok.Setter;
2222
import net.foulest.repairkit.panels.AutomaticRepairs;
2323
import net.foulest.repairkit.panels.SystemShortcuts;
24-
import net.foulest.repairkit.panels.UsefulPrograms1;
25-
import net.foulest.repairkit.panels.UsefulPrograms2;
24+
import net.foulest.repairkit.panels.UsefulPrograms;
2625
import net.foulest.repairkit.util.*;
2726
import org.jetbrains.annotations.NotNull;
2827

@@ -138,19 +137,16 @@ private RepairKit() {
138137
// Initialize the panels.
139138
DebugUtil.debug("Initializing the Automatic Repairs panel...");
140139
@NotNull AutomaticRepairs automaticRepairs = new AutomaticRepairs();
141-
DebugUtil.debug("Initializing the Useful Programs (Page 1) panel...");
142-
@NotNull UsefulPrograms1 usefulPrograms1 = new UsefulPrograms1();
143-
DebugUtil.debug("Initializing the Useful Programs (Page 2) panel...");
144-
@NotNull UsefulPrograms2 usefulPrograms2 = new UsefulPrograms2();
140+
DebugUtil.debug("Initializing the Useful Programs panel...");
141+
@NotNull UsefulPrograms usefulPrograms = new UsefulPrograms();
145142
DebugUtil.debug("Initializing the System Shortcuts panel...");
146143
@NotNull SystemShortcuts systemShortcuts = new SystemShortcuts();
147144

148145
// Creates the main panel.
149146
DebugUtil.debug("Creating the main panel...");
150-
setMainPanel(new JPanel(new CardLayout()));
147+
mainPanel = new JPanel(new CardLayout());
151148
mainPanel.add(automaticRepairs, "Automatic Repairs");
152-
mainPanel.add(usefulPrograms1, "Useful Programs (Page 1)");
153-
mainPanel.add(usefulPrograms2, "Useful Programs (Page 2)");
149+
mainPanel.add(usefulPrograms, "Useful Programs");
154150
mainPanel.add(systemShortcuts, "System Shortcuts");
155151

156152
// Creates the banner panel.
@@ -242,7 +238,7 @@ private JPanel createBannerPanel() {
242238

243239
// Creates the Useful Programs button.
244240
DebugUtil.debug("Creating the Useful Programs button...");
245-
@NotNull JButton usefulPrograms = SwingUtil.createPanelButton("Useful Programs", "Useful Programs (Page 1)", new Rectangle(325, 10, 150, 40));
241+
@NotNull JButton usefulPrograms = SwingUtil.createPanelButton("Useful Programs", "Useful Programs", new Rectangle(325, 10, 150, 40));
246242
bannerPanel.add(usefulPrograms);
247243

248244
// Creates the System Shortcuts button.

0 commit comments

Comments
 (0)