1
0
Fork 0

Merge branch 'dev' into someone-kill-me-please

This commit is contained in:
nin0 2024-07-15 21:27:57 -04:00 committed by GitHub
commit af4b7ecdb1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 51 additions and 3 deletions

View file

@ -17,7 +17,7 @@ android {
buildTypes {
debug {
applicationIdSuffix ".debug"
}
release {

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@mipmap/ic_launcher_background"/>
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
<monochrome android:drawable="@drawable/ic_launcher_foreground"/>
</adaptive-icon>

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/debug_background"/>
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
<monochrome android:drawable="@drawable/ic_launcher_foreground"/>
</adaptive-icon>

View file

@ -0,0 +1,3 @@
<resources>
<string name="app_name">Dev Vendroid</string>
</resources>

View file

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@mipmap/ic_launcher_background"/>
<background android:drawable="@color/debug_background"/>
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
<monochrome android:drawable="@drawable/ic_launcher_foreground"/>
</adaptive-icon>

View file

@ -35,6 +35,7 @@
}
};
document.addEventListener("DOMContentLoaded", () => {
document.documentElement.appendChild(
Object.assign(document.createElement("link"), {
@ -49,4 +50,5 @@
href: "https://github.com/VendroidEnhanced/plugin/releases/download/css/fixes.css"
}));
}, { once: true });
})();

View file

@ -1,6 +1,7 @@
<resources>
<color name="seed">#5865F2</color>
<color name="debug_background">#FFC800</color>
<color name="md_theme_light_primary">#3F4CDA</color>
<color name="md_theme_light_onPrimary">#FFFFFF</color>
<color name="md_theme_light_primaryContainer">#E0E0FF</color>