[PR #75] [MERGED] 1.4 #107

Closed
opened 2026-02-27 20:19:07 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/nin0-dev/VendroidEnhanced/pull/75
Author: @nin0-dev
Created: 8/28/2024
Status: Merged
Merged: 8/28/2024
Merged by: @nin0-dev

Base: mainHead: dev


📝 Commits (10+)

  • b22c96a Bump to 1.3
  • b3544cd removed devbuild settings from welcome screen
  • a9ec66d added more splashscreens (shiggy, oneko)
  • d2c7501 added more splashscreens (shiggy, oneko)
  • f603091 added recovery mode
  • b21d28f added recovery mode
  • f90cc8f switched to update API
  • 9534449 Update dependency com.google.code.gson:gson to v2.11.0
  • a053d73 Merge pull request #73 from VendroidEnhanced/renovate/com.google.code.gson-gson-2.x
  • c9a7e93 better app bars

📊 Changes

18 files changed (+408 additions, -138 deletions)

View changed files

📝 app/build.gradle (+4 -3)
app/src/debug/res/xml/shortcuts.xml (+13 -0)
📝 app/src/main/AndroidManifest.xml (+10 -1)
📝 app/src/main/java/com/nin0dev/vendroid/HttpClient.kt (+1 -1)
📝 app/src/main/java/com/nin0dev/vendroid/MainActivity.kt (+83 -50)
app/src/main/java/com/nin0dev/vendroid/RecoveryActivity.kt (+51 -0)
📝 app/src/main/java/com/nin0dev/vendroid/SettingsActivity.kt (+8 -0)
📝 app/src/main/java/com/nin0dev/vendroid/VWebviewClient.kt (+10 -2)
📝 app/src/main/java/com/nin0dev/vendroid/WelcomeActivity.kt (+0 -20)
app/src/main/res/drawable/oneko.gif (+0 -0)
app/src/main/res/drawable/reset.xml (+7 -0)
app/src/main/res/drawable/shiggy.gif (+0 -0)
📝 app/src/main/res/layout/activity_main.xml (+22 -2)
app/src/main/res/layout/activity_recovery.xml (+129 -0)
📝 app/src/main/res/layout/activity_settings.xml (+38 -15)
📝 app/src/main/res/layout/activity_welcome.xml (+6 -43)
📝 app/src/main/res/values/strings.xml (+13 -1)
app/src/main/res/xml/shortcuts.xml (+13 -0)

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/nin0-dev/VendroidEnhanced/pull/75 **Author:** [@nin0-dev](https://github.com/nin0-dev) **Created:** 8/28/2024 **Status:** ✅ Merged **Merged:** 8/28/2024 **Merged by:** [@nin0-dev](https://github.com/nin0-dev) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`b22c96a`](https://github.com/nin0-dev/VendroidEnhanced/commit/b22c96af7faefcf490ec950bc08ccb5ecda597a1) Bump to 1.3 - [`b3544cd`](https://github.com/nin0-dev/VendroidEnhanced/commit/b3544cdee2f7e43f414732570693b95d383add51) removed devbuild settings from welcome screen - [`a9ec66d`](https://github.com/nin0-dev/VendroidEnhanced/commit/a9ec66d1a6716e2074b00ddf2eb09ef3d31f404e) added more splashscreens (shiggy, oneko) - [`d2c7501`](https://github.com/nin0-dev/VendroidEnhanced/commit/d2c750175f9486e31f5250d8453a370749a80c13) added more splashscreens (shiggy, oneko) - [`f603091`](https://github.com/nin0-dev/VendroidEnhanced/commit/f6030910e8eb4524d10faed92a21b1e7702683a2) added recovery mode - [`b21d28f`](https://github.com/nin0-dev/VendroidEnhanced/commit/b21d28f251d5c0e7aba17a7d8242da5568f96890) added recovery mode - [`f90cc8f`](https://github.com/nin0-dev/VendroidEnhanced/commit/f90cc8fe8f8b9d48647cc80a951a58f128d82266) switched to update API - [`9534449`](https://github.com/nin0-dev/VendroidEnhanced/commit/953444909a1d6e407fc7c8ec25d19b1043d24fa3) Update dependency com.google.code.gson:gson to v2.11.0 - [`a053d73`](https://github.com/nin0-dev/VendroidEnhanced/commit/a053d738053b1557e32754e7a093543f5f437017) Merge pull request #73 from VendroidEnhanced/renovate/com.google.code.gson-gson-2.x - [`c9a7e93`](https://github.com/nin0-dev/VendroidEnhanced/commit/c9a7e93b6af71bfc9ca0595563280d34338e2c68) better app bars ### 📊 Changes **18 files changed** (+408 additions, -138 deletions) <details> <summary>View changed files</summary> 📝 `app/build.gradle` (+4 -3) ➕ `app/src/debug/res/xml/shortcuts.xml` (+13 -0) 📝 `app/src/main/AndroidManifest.xml` (+10 -1) 📝 `app/src/main/java/com/nin0dev/vendroid/HttpClient.kt` (+1 -1) 📝 `app/src/main/java/com/nin0dev/vendroid/MainActivity.kt` (+83 -50) ➕ `app/src/main/java/com/nin0dev/vendroid/RecoveryActivity.kt` (+51 -0) 📝 `app/src/main/java/com/nin0dev/vendroid/SettingsActivity.kt` (+8 -0) 📝 `app/src/main/java/com/nin0dev/vendroid/VWebviewClient.kt` (+10 -2) 📝 `app/src/main/java/com/nin0dev/vendroid/WelcomeActivity.kt` (+0 -20) ➕ `app/src/main/res/drawable/oneko.gif` (+0 -0) ➕ `app/src/main/res/drawable/reset.xml` (+7 -0) ➕ `app/src/main/res/drawable/shiggy.gif` (+0 -0) 📝 `app/src/main/res/layout/activity_main.xml` (+22 -2) ➕ `app/src/main/res/layout/activity_recovery.xml` (+129 -0) 📝 `app/src/main/res/layout/activity_settings.xml` (+38 -15) 📝 `app/src/main/res/layout/activity_welcome.xml` (+6 -43) 📝 `app/src/main/res/values/strings.xml` (+13 -1) ➕ `app/src/main/res/xml/shortcuts.xml` (+13 -0) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 20:19:07 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/VendroidEnhanced#107
No description provided.