Skip to content

Commit ee91f66

Browse files
Sirpixelalotclaude
andcommitted
Rebrand app from Renpytool to Rentool
Updated all user-facing references including app name, themes, and documentation. Updated GitHub API URL to match renamed repository. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 8c80b7c commit ee91f66

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Renpytool
1+
# Rentool
22

33
An Android application to extract and create Ren'Py RPA files directly on your device.
44

@@ -40,8 +40,8 @@ An Android application to extract and create Ren'Py RPA files directly on your d
4040

4141
1. Clone the repository:
4242
```bash
43-
git clone https://github.com/yourusername/Renpytool.git
44-
cd Renpytool
43+
git clone https://github.com/yourusername/Rentool.git
44+
cd Rentool
4545
```
4646

4747
2. Open the project in Android Studio

app/src/main/AndroidManifest.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
android:label="@string/app_name"
2525
android:roundIcon="@mipmap/renpy_icon"
2626
android:supportsRtl="true"
27-
android:theme="@style/Theme.Renpytool"
27+
android:theme="@style/Theme.Rentool"
2828
android:requestLegacyExternalStorage="true">
2929

3030
<activity
@@ -39,12 +39,12 @@
3939
<activity
4040
android:name=".ProgressActivity"
4141
android:exported="false"
42-
android:theme="@style/Theme.Renpytool" />
42+
android:theme="@style/Theme.Rentool" />
4343

4444
<activity
4545
android:name=".FilePickerActivity"
4646
android:exported="false"
47-
android:theme="@style/Theme.Renpytool" />
47+
android:theme="@style/Theme.Rentool" />
4848

4949
</application>
5050

app/src/main/java/com/renpytool/UpdateChecker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
public class UpdateChecker {
1717

1818
private static final String TAG = "UpdateChecker";
19-
private static final String GITHUB_API_URL = "https://api.github.com/repos/Sirpixelalot/renpytool/releases/latest";
19+
private static final String GITHUB_API_URL = "https://api.github.com/repos/Sirpixelalot/Rentool/releases/latest";
2020
private static final int TIMEOUT_MS = 10000; // 10 seconds
2121

2222
public interface UpdateCheckCallback {

app/src/main/res/layout/activity_main.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
android:layout_width="match_parent"
1717
android:layout_height="?attr/actionBarSize"
1818
android:background="?attr/colorPrimary"
19-
app:title="Renpytool"
19+
app:title="Rentool"
2020
app:titleTextColor="?attr/colorOnPrimary" />
2121

2222
</com.google.android.material.appbar.AppBarLayout>
@@ -299,7 +299,7 @@
299299
android:layout_width="match_parent"
300300
android:layout_height="wrap_content"
301301
android:layout_marginTop="8dp"
302-
android:text="Renpytool allows you to extract and create RPA archives, and decompile RPYC scripts used by Ren'Py visual novels. Tap the cards above to get started."
302+
android:text="Rentool allows you to extract and create RPA archives, and decompile RPYC scripts used by Ren'Py visual novels. Tap the cards above to get started."
303303
android:textSize="14sp" />
304304

305305
</LinearLayout>

app/src/main/res/values-night/themes.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<resources xmlns:tools="http://schemas.android.com/tools">
22
<!-- Base application theme. -->
3-
<style name="Theme.Renpytool" parent="Theme.MaterialComponents.DayNight.NoActionBar">
3+
<style name="Theme.Rentool" parent="Theme.MaterialComponents.DayNight.NoActionBar">
44
<!-- Primary brand color. -->
55
<item name="colorPrimary">@color/purple_200</item>
66
<item name="colorPrimaryVariant">@color/purple_700</item>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<resources>
2-
<string name="app_name">Renpytool</string>
2+
<string name="app_name">Rentool</string>
33
</resources>

app/src/main/res/values/themes.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<resources xmlns:tools="http://schemas.android.com/tools">
22
<!-- Base application theme. -->
3-
<style name="Theme.Renpytool" parent="Theme.MaterialComponents.DayNight.NoActionBar">
3+
<style name="Theme.Rentool" parent="Theme.MaterialComponents.DayNight.NoActionBar">
44
<!-- Primary brand color. -->
55
<item name="colorPrimary">@color/purple_500</item>
66
<item name="colorPrimaryVariant">@color/purple_700</item>

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ dependencyResolutionManagement {
2121
}
2222
}
2323

24-
rootProject.name = "Renpytool"
24+
rootProject.name = "Rentool"
2525
include ':app'

0 commit comments

Comments
 (0)