Skip to content
This repository has been archived by the owner on Apr 3, 2024. It is now read-only.

Commit

Permalink
Update trail button patch
Browse files Browse the repository at this point in the history
  • Loading branch information
t4rra committed Sep 24, 2023
1 parent 654c6af commit d4f956d
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# CCStopper <!-- omit in toc -->
| Release | Latest Version |
| -------- | -------- |
| CCStopper | v1.2.3-hotfix.1 |
| CCStopper | v1.2.3-hotfix.2 |
| Web Installer | v1.0.1 |

## Table of Contents <!-- omit in toc -->
Expand Down Expand Up @@ -48,8 +48,8 @@
- Stop Background Processes
- Add to Hosts
- System Patches
- Patch Creative Cloud App Buttons
- Lock Genuine Checker Folder
- Patch Trial Buttons
- Remove Genuine Checker
- Hide Creative Cloud Folder in Explorer

## v1.2.3 Changelog
Expand All @@ -68,8 +68,8 @@
- Created logo for shortcut icons (its very original)
- Documentation update

### Hotfix.1 Changelog <!-- omit in toc -->
- Changed the hosts block module to use the non-temp hosts file
### Hotfix.2 Changelog <!-- omit in toc -->
- Updated trial button patch to work with latest CC update
<!-- ###### Read previous changelogs from [the releases](https://github.com/eaaasun/CCStopper/releases) omit in toc -->


Expand Down
26 changes: 13 additions & 13 deletions src/scripts/CCApp.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,19 @@ else {


$bytes = [System.IO.File]::ReadAllBytes($AppsPanelBL)
$bytes[1117100] = 0xfe
$bytes[1216993] = 0xfe
$bytes[1987809] = 0xfe
$bytes[2149147] = 0xfe
$bytes[2150572] = 0xfe
$bytes[2151087] = 0xfe
$bytes[2151887] = 0xfe
$bytes[2278457] = 0xc6
$bytes[2278458] = 0x40
$bytes[2278467] = 0xc6
$bytes[2278468] = 0x40
$bytes[2278477] = 0xc6
$bytes[2278478] = 0x40
$bytes[1116554] = 0xfe
$bytes[1216383] = 0xfe
$bytes[1987439] = 0xfe
$bytes[2150557] = 0xfe
$bytes[2151982] = 0xfe
$bytes[2152497] = 0xfe
$bytes[2153297] = 0xfe
$bytes[2279801] = 0xc6
$bytes[2279802] = 0x40
$bytes[2279811] = 0xc6
$bytes[2279812] = 0x40
$bytes[2279821] = 0xc6
$bytes[2279822] = 0x40
[System.IO.File]::WriteAllBytes($AppsPanelBL, $bytes)
ShowMenu -Back -Subtitles "Patch Desktop App" -Header "Successfully patched desktop app!" -Description "You may need to restart your system for changes to apply."

Expand Down
2 changes: 1 addition & 1 deletion src/scripts/Functions.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$Version = "v1.2.3-hotfix.1"
$Version = "v1.2.3-hotfix.2"

function ReadKey([int]$ChoiceNum) {
$Indent = 43 - $ChoiceNum
Expand Down

0 comments on commit d4f956d

Please sign in to comment.