Archer

Results 19 comments of Archer

Hey! I'd like to add that alternative CAPTCHA providers might be nice to have as well. For example, [hCaptcha](https://www.hcaptcha.com/) provides similar protection while promising not to spy on its users...

Do you mean formatting in any doc comment that turns into an inner attribute? If so, formating seems to work at least for module doc comments: `lib.rs`: ```rust //! Example...

@zeylahellyer, sorry if this is not the right place, but I figured it's best to continue discussing potential implementations here now that the initial implementation PR is closed. To clarify,...

> i'd prefer that the enums wrapped over structs instead of being enum structs, something like > > ```rust > pub enum SelectMenuData { > Text(Vec), > Channel(Option), > //...

Indeed, that's why I suggested it might be required in the future. Without marking a struct as non-exhaustive, adding new fields is always a breaking change. I.e., if Discord adds...

With #2219 merged, is there anything left for this issue?

The following might be Flatpak-specific, as IIRC, it enables more fine-grained permission controls in some scenarios. E.g., I've previously received a screenshot permission prompt for Alacritty, but unlike Flameshot, the...

Permissions are listed in the app-specific settings under `Apps > Flameshot`. Again, I believe this permission only shows up in GNOME Settings if the app is installed via Flatpak. ![image](https://github.com/flameshot-org/flameshot/assets/66215055/2b5b86fb-4a82-4556-a82a-96c159965394)...

I don't think OAuth would be a good way to enforce rate limiting or a central way to turn off your public API temporarily. Unless you make the tokens extremely...

> Resource Servers should never make any assumptions based merely on the fact that an authorization server is "using OAuth". Indeed, how the server authenticates e.g. users is not at...