▲ 11 r/tauri

Why are developers not creating Android app versions for their Tauri opensource apps?

I am considering using Tauri to create an Android app and attracted to the idea of cross-platform capabilities.

Recently there was a post about so many markdown editors posted on this subreddit.
https://www.reddit.com/r/tauri/comments/1udfkbq/enough_with_the_markdown_apps_already/

However one thing I noticed is that these don't support Android.
Android has the biggest market share of an OS in the world. More than Windows even.
https://gs.statcounter.com/os-market-share

Is there a reason people create so many markdown editors but don't create Android versions or am I missing something? I thought cross-platform capability is one of the advantages of Tauri but seems people just seem to copy each other and create the same type of app for the same platforms.

reddit.com
u/gidmix — 11 days ago

Is possible to have youtube frame preview with fast forward using keyboard buttons?

For Youtube when you hover over the progress bar, it shows a frame preview. However it only appears on hover. Is it possible with tampermonkey to activate the frame preview when using the arrow buttons Left and right to navigate (rewind,fast forward) when the mouse it not over the progress bar?

I prompted AI to create a script which it did but these scripts don't work

https://preview.redd.it/gaizaa5qla5h1.png?width=923&format=png&auto=webp&s=ad8b0925c4e2f60aa1991435133efe89f6e5ef59

reddit.com
u/gidmix — 1 month ago

Bookmark manager with notification reminder?

I am looking for website bookmark manager with an reminder notification similar to an alarm. With either once off, or recurring reminders.

Currently using raindrop which is the minimalist type of app which allows you to add shortcuts quickly

So basically instead of putting URLs in my calendar I want the date/scheduler in my bookmark app to avoid just save it and never access again.

The schedule must be added with the bookmark like currently you can edit it in raindrop>

Bonus is it if it can work on local files as raindrop does not support the file:// url format

reddit.com
u/gidmix — 1 month ago

I have the following AHK v2 (2.0.26) script that allows me to if Caps lock or Left Windows Key is on to instead of default Mouse Wheel Scroll down,
Send Right Key to fast forward youtube.

#Requires AutoHotkey v2.0
Persistent()  
#SingleInstance Force 
SendMode "Input"
A_MaxHotkeysPerInterval := 500 
A_HotkeyInterval := 2000

~LWin::{
    Send "{Blind}{VKFF}" ;prevent LWin on its own
}

#HotIf !GetKeyState("CapsLock", "T") && !GetKeyState("LShift", "P") && GetKeyState("LWin", "P")
<#WheelDown::  {  
    Send("{Right}")
}
#HotIf

#HotIf GetKeyState("CapsLock", "T") && !GetKeyState("LShift", "P") && !GetKeyState("LWin", "P")
WheelDown:: {  
    Send("{Right}")
}
#HotIf

However the Left Windows Hold button does not suppress the Windows key always and the Windows Start menu pops up when going forward (around the 5th scroll) despite it being suppressed in AHK and working for the first scroll down. This is despite it being EXPLICITLY set to never show even if Windows button is pressed on its own.

I guess the problem is due to rapid number of keys being fired when scrolling. This happens when the Windows button is not depressed but key up all the time without changing.

I have added suppression on the Up press too but this doesn't change the symptoms

~LWin Up::{
    ;WindowsFunctions.PreventOpenStartMenu()
     Send "{Blind}{VKFF}"
}~LWin Up::{
    ;WindowsFunctions.PreventOpenStartMenu()
     Send "{Blind}{VKFF}"
}

When holding Win button and right arrow press multiple times the Start Menu suddenly appears when Mouse wheel scrolling down.

What I believe is related to solving the problem is the A_MaxHotkeysPerInterval setting. I am forced to use it as otherwise I get a warning of

"71 hotkeys have been received in the last 1562ms. Do you want to continue? (see A_MaxHotkeysPerInterval in the help file)

So it seems without A_MaxHotkeysPerInterval I get the YesNo option but with the script acts inconsistent when reaching many hotkeys e.g. 71 hotkeys in 1.5 seconds.
I have a free wheel scroll mouse which explains the large number of events per second.

I played around with A_MaxHotkeysPerInterval and A_HotkeyInterval these but this doesn't make much a difference what I set it to. Almost as if there is hardcode limit for A_MaxHotkeysPerInterval so the value I set doesn't matter.

I have another test where I use CAPS lock for fast forward. Since it doesn't use Windows key it doesn't have the Start Menu problem. However it sometimes instead of sending the right arrow sends a normal wheel down. This is strange since it means the simple code of

#HotIf GetKeyState("CapsLock", "T") && !GetKeyState("LShift", "P") && !GetKeyState("LWin", "P")
WheelDown:: {  
Send("{Right}")
}
#HotIf

Can fail and revert to default behavior.

reddit.com
u/gidmix — 2 months ago