MMRL App
1.13K subscribers
9 photos
1 video
2 files
12 links
Download Telegram
New WebUI X: Portable Beta Release introduces a new way you can work with the app.

With Lua you can now add custom path handlers and custom event handlers! See more in this repository: https://github.com/MMRLApp/WX-Lua

I'm excited to what people build with this new system πŸ€“πŸ‘†

This new system is a "Work in Progress"


https://t.iss.one/MMRLApp/241
πŸ”₯2πŸ₯°1
The SuFile Wrapper πŸ€“
Please open Telegram to view this post
VIEW IN TELEGRAM
MMRL App pinned Β«Good evening, kids! https://repo.mmrl.devΒ»
We've pushed a update to repo.mmrl.dev which changes the limit of username characters from 2-30.

We're also added verification marks for trusted and popular users. ✌️
❀1
Play Integrity Fix [INJECT] have neen added to the repository!

from chiteroman and KOWX712, offered by Googlers Repository

https://repo.mmrl.dev/u/gmr/module/play-integrity-fix
❀5
Added new modules!

https://repo.mmrl.dev/u/gmr/module/rezygisk

https://repo.mmrl.dev/u/gmr/module/encore

To claim ownership, mention my in any group I'm in!

Thanks for 1.100 sub πŸ‘€
Please open Telegram to view this post
VIEW IN TELEGRAM
❀2πŸ”₯2πŸ‘1
The client for repo.mmrl.dev will only support basic module listing, is focused more module installation and module exploring.

It will get the old ModFS feature to ensure it works with modern mount systems.
πŸ”” Little downtime at 12:00 PM UTC for repo.mmrl.dev

We're doing a server reboot to ensure the server runs properly in the future.

Hope everything goes well, since I'm not home currently πŸ˜…
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘1
❀1πŸ‘1
This media is not supported in your browser
VIEW IN TELEGRAM
Completely without JavaScript interface save request.


const stream = openSaveFileStream("example.txt", "text/plain");

const writer = stream.getWriter();

await writer.write(new TextEncoder().encode("Hello "));
await writer.write(new TextEncoder().encode("World"));

await writer.close();
In future versions of WebUI X you can use the var(--window-keyboard-height) in CSS to get the keyboard height.

This variable should be used with a fallback, it get's removed when the keyboard is closed
#extra-keys {
background: #1a1a1a;
border-top: 1px solid #333;
padding: 8px;
padding-bottom: calc(var(--window-keyboard-height, var(--window-inset-bottom, 0px)) + 8px) !important;
display: flex;
flex-wrap: wrap;
gap: 4px;
justify-content: space-around;
min-height: 44px;
box-sizing: border-box;
flex-shrink: 0;
transition: transform 0.3s ease, opacity 0.3s ease;
}


Be sure to disable windowResize in the config.json then