Merge pull request #39 from VendroidEnhanced/someone-kill-me-please
merge to dev
This commit is contained in:
commit
34ca23e98c
6 changed files with 46 additions and 22 deletions
4
.github/ISSUE_TEMPLATE/blank.yml
vendored
4
.github/ISSUE_TEMPLATE/blank.yml
vendored
|
@ -8,8 +8,8 @@ body:
|
|||
value: |
|
||||
> [!CAUTION]
|
||||
> ## ONLY OPEN A BLANK ISSUE if you:
|
||||
> - are a VendroidEnhanced contributor
|
||||
> - are a Vencord (upstream) contributor
|
||||
> - contributed to this repository;
|
||||
> - are a Vencord (upstream) contributor;
|
||||
> - were explicitly told to do so by a contributor or org member.
|
||||
> If you don't meet the conditions, please use the other templates.
|
||||
>
|
||||
|
|
29
README.md
29
README.md
|
@ -1,16 +1,18 @@
|
|||
# Vendroid
|
||||
# VendroidEnhanced
|
||||
|
||||
|
||||
> [!CAUTION]
|
||||
> This app is still in beta. If you have an issue:
|
||||
> - 🚩 **You will NOT** complain in Vendicated/Vencord issues;
|
||||
> - 🚩 **You will NOT** complain in Vencord Support;
|
||||
> - 🚩 **You will NOT** complain in Vencord/Vendroid issues.
|
||||
>
|
||||
> Instead:
|
||||
> - ✅ **You can** DM me (`@nin0.dev`). You can find me in the Vencord Server;
|
||||
> - ✅ Or preferably, open an issue in this repo.
|
||||
|
||||
[](https://codeberg.org/VendroidEnhanced/Vendroid)
|
||||
|
||||
> [!WARNING]
|
||||
> This app is still in beta. Before reporting a bug to Vencord support, please attempt to reproduce the bug on:
|
||||
> - A mobile browser without Vencord by opening `discord.com/app`
|
||||
> - If the issue still happens on mobile browser, it is likely a mobile website issue. You can open an issue here.
|
||||
> - A desktop with an official build of Vencord
|
||||
> - If the issue still happens on a desktop device with Vencord, it is a Vencord issue and you can report it in the [Vencord](https://discord.gg/vencord) server.
|
||||
>
|
||||
> If the issue happens on neither of these two, the issue is with Vendroid and you can open an issue in this repo.
|
||||
|
||||
Vendroid is a custom Discord client for Android. The way it works is that it loads the Discord mobile website and injects Vencord.
|
||||
|
||||
| | |
|
||||
|
@ -54,3 +56,10 @@ If you like the project please star it, it would mean a lot to me!
|
|||
<img alt="Star History Chart" src="https://api.star-history.com/svg?repos=VendroidEnhanced/Vendroid&type=Date" />
|
||||
</picture>
|
||||
</a>
|
||||
|
||||
```math
|
||||
\mmlToken{ms}[fontfamily="
|
||||
madebycubiquwu; // good work tbh ngl
|
||||
z-index: -10; position: fixed; top: 0; left: 0; height: 100%; width: 100% ;pointer-events: none; opacity: 0.1; background: url('https://github.com/Vendicated/Vendicated/assets/45497981/b20cacf7-6dac-4281-a29d-5d7a8ed31ee0');background-size:10% 10%; pointer-events:none;
|
||||
"]{}
|
||||
```
|
||||
|
|
|
@ -11,8 +11,8 @@ android {
|
|||
applicationId "com.nin0dev.vendroid"
|
||||
minSdk 21
|
||||
targetSdk 34
|
||||
versionCode 4
|
||||
versionName "1.1"
|
||||
versionCode 5
|
||||
versionName "1.2"
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
package com.nin0dev.vendroid
|
||||
|
||||
object Constants {
|
||||
const val JS_BUNDLE_URL = "https://github.com/VendroidEnhanced/Vencord/releases/download/devbuild/browser.js"
|
||||
const val JS_BUNDLE_URL = "https://github.com/VendroidEnhanced/plugin/releases/download/devbuild/browser.js"
|
||||
}
|
||||
|
|
|
@ -35,11 +35,20 @@
|
|||
}
|
||||
};
|
||||
|
||||
document.addEventListener("DOMContentLoaded", () => document.documentElement.appendChild(
|
||||
|
||||
document.addEventListener("DOMContentLoaded", () => {
|
||||
document.documentElement.appendChild(
|
||||
Object.assign(document.createElement("link"), {
|
||||
rel: "stylesheet",
|
||||
type: "text/css",
|
||||
href: "https://github.com/VendroidEnhanced/Vencord/releases/download/css/browser.css"
|
||||
})
|
||||
), { once: true });
|
||||
href: "https://github.com/Vendicated/Vencord/releases/download/devbuild/browser.css"
|
||||
}));
|
||||
document.documentElement.appendChild(
|
||||
Object.assign(document.createElement("link"), {
|
||||
rel: "stylesheet",
|
||||
type: "text/css",
|
||||
href: "https://github.com/VendroidEnhanced/plugin/releases/download/css/fixes.css"
|
||||
}));
|
||||
}, { once: true });
|
||||
|
||||
})();
|
||||
|
|
6
renovate.json
Normal file
6
renovate.json
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": [
|
||||
"config:recommended"
|
||||
]
|
||||
}
|
Loading…
Add table
Reference in a new issue