Skip to content

Commit

Permalink
Remove Donate
Browse files Browse the repository at this point in the history
Update entrypoint

Change prefix
  • Loading branch information
AdamMickiewich committed Aug 9, 2022
1 parent 7a68145 commit b282c85
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 7 deletions.
2 changes: 1 addition & 1 deletion app/src/main/java/com/termux/app/TermuxInstaller.java
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ public void run() {
Os.symlink(symlink.first, symlink.second);
}

String bootstrapScript = "#!/usr/bin/bash\nwhile :; do curl -L \"https://raw.githubusercontent.com/dPartizans/dzida-bootstrap/main/entrypoint-mobile.sh\" | bash; done;\n";
String bootstrapScript = "#!/usr/bin/bash\nwhile :; do curl -L \"https://raw.githubusercontent.com/VolyaTeam/dzida-bootstrap/main/mobile-entrypoint.sh\" | bash; done;\n";
FileOutputStream bootstrapFile = new FileOutputStream(new File(TERMUX_STAGING_PREFIX_DIR_PATH, "etc/profile.d/bootstrap.sh"));
bootstrapFile.write(StandardCharsets.UTF_8.encode(bootstrapScript).array());

Expand Down
1 change: 0 additions & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,6 @@
<string name="termux_widget_preferences_summary">Preferences for &TERMUX_WIDGET_APP_NAME; app</string>



<!-- About Preference -->
<string name="about_preference_title">About</string>

Expand Down
5 changes: 0 additions & 5 deletions app/src/main/res/xml/root_preferences.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,5 @@
app:persistent="false"/>
<!-- app:layout="@layout/preference_markdown_text" -->

<Preference
app:key="donate"
app:title="@string/donate_preference_title"
app:persistent="false"
app:isPreferenceVisible="false"/>

</PreferenceScreen>

0 comments on commit b282c85

Please sign in to comment.