Skip to content

Commit

Permalink
some changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Official-Husko committed Apr 7, 2024
1 parent 1e20c76 commit 9384ce8
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 7 deletions.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# GDLauncher Carbon - Adless Fork
This fork focuses on privacy by removing any ads and telemetry from the official GDLauncher Carbon. The goal is to keep it up to date with the official releases while
offering more privacy and no ads.

## Installation
1. Grab the official latest release from their [Discord](https://discord.gdlauncher.com) or [GitHub Releases](https://github.com/gorilla-devs/GDLauncher-Carbon)
2. Download the [Latest Patched Release](https://github.com/Official-Husko/GDLauncher-Carbon-adless/releases/latest)
3. Go to the installation folder (where you installed GDLauncher Carbon)
4. Go into the `resources` folder and replace the `app.asar` file with the latest patched `app.asar` from the downloaded zip file.

A big thanks to [GameTec-live](https://gist.github.com/GameTec-live/0d5fe22a97cf989010aa9957a31b3348) for their patch which is used in this fork.

<details>
<summary><strong>Original README</strong> (click to expand)</summary>

# GDLauncher (Carbon)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
![Discord](https://img.shields.io/discord/398091532881756161)
Expand Down Expand Up @@ -160,3 +175,5 @@ Here you can find the previous versions of the code:
- [Original C# Code](https://github.com/gorilla-devs/GDLauncher_LEGACY-Full-History/tree/csharp_legacy_launcher)
- [First Electron/React Version](https://github.com/gorilla-devs/GDLauncher_LEGACY-Full-History/tree/GDLauncher_old)
- GDLauncher (Discontinued) [Legacy Branch](https://www.github.com/gorilla-devs/GDLauncher)

</details>
2 changes: 1 addition & 1 deletion apps/desktop/__tests__/init.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ test.describe("Init Tests", () => {
expect(errorInnerText).toBeUndefined();

const title = await page.title();
expect(title).toBe("GDLauncher Carbon");
expect(title).toBe("GDLauncher Carbon - Adless");
});

test.afterAll(async () => {
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@gd/desktop",
"productName": "GDLauncher",
"private": true,
"description": "GDLauncher Carbon.",
"description": "GDLauncher Carbon - Adless.",
"author": "GorillaDevs Inc.",
"license": "ARR",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/packages/main/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ async function createWindow(): Promise<BrowserWindow> {
}

win = new BrowserWindow({
title: "GDLauncher Carbon",
title: "GDLauncher Carbon - Adless",
minHeight,
height,
minWidth,
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/packages/mainWindow/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
user-select: text;
}
</style>
<title>GDLauncher Carbon</title>
<title>GDLauncher Carbon - Adless</title>
<script type="module">
import { mainTheme } from "@gd/ui";

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "gdlauncher",
"productName": "GDLauncher",
"private": true,
"description": "GDLauncher Carbon.",
"description": "GDLauncher Carbon - Adless.",
"author": "killpowa <davide@gdlauncher.com>",
"license": "ARR",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions packages/i18n/locale/english/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -390,8 +390,8 @@
"app_update.current_release_channel": "Current Release Channel",
"adbanner.snapshot_title": "GDLauncher Snapshot Release",
"adbanner.snapshot_text": "This is a GDLauncher snapshot release.\nThis means that it is highly unstable and contains potentially disruptive bugs. It also does not have auto updates.",
"adbanner.beta_title": "GDLauncher Beta Release",
"adbanner.beta_text": "This is a GDLauncher beta release.\nThis means that it might contain some bugs but it should be mostly stable.",
"adbanner.beta_title": "GDLauncher Carbon - Adless Fork",
"adbanner.beta_text": "This is a GDLauncher Carbon Fork.\nThis fork focuses on privacy by removing any ads and telemetry from the official GDLauncher.\n\nAny issues experienced with this version should not be reported to the official GDLauncher devs!\n",
"adbanner.alpha_title": "GDLauncher Alpha Release",
"adbanner.alpha_text": "This is a GDLauncher alpha release.\nThis means that it is unstable and contains many bugs.",
"tooltip.undo": "Undo",
Expand Down

0 comments on commit 9384ce8

Please sign in to comment.