Jishnu M
Jishnu M
> Adding support for ms-windows-store links* would be great to (as a paramer, for systems that doesn't come with msstore by default as ltsc) > > *These kind of links:...
> i think adding support for multiple languages would be a great idea if possible. its already included 🙂 just need to fill the Resources.resw
hey would you be willing to test this, i do not own an arm pc so was unable to test it ```py import platform def os_arc(): if platform.machine().endswith("64"): return "x64"...
```py import platform def os_arc(): machine = platform.machine().lower() if machine.endswith("arm64"): return "arm64" if machine().endswith("64"): return "x64" if machine.endswith("32") or machine.endswith("86"): return "x86" else: return "arm" print(os_arc()) ``` can you try...
here is a cli version of alt app installer: https://github.com/mjishnu/alt-app-installer-cli
did you install python net
>  Guess this is because arm python cannot load the dll? this new release should fix it, no longer using python net using subprocess module instead https://github.com/mjishnu/alt-app-installer-cli/releases/tag/v1.0.1
> Great. It works. Might as well adding argument for downloading for other manually specified architecture, rather than relying on the interpreter arch? i know its been long but if...
1. that's a great idea I will do it. 2. it's to install uwp apps, the wording changed with updates i forgot to update it in readme. 3. yes it...
i was planning to add it to Chocolatey but i guess Winget should also do the job, the reason it is delayed is due to the fact that the app...