⭐ QOF: Added UWP Discovery, Created Custom App from existing one, and Launch it from Context Mennu#373
Merged
TibixDev merged 14 commits intoTibixDev:mainfrom Oct 21, 2025
Merged
Conversation
- Ability to fetch UWP programs and their logo.
Contributor
Author
|
If anyone would like to test, you can simply replace |
Owner
|
Sick feature, thanks for implementing it! Just for correctness, could you verify this works on both W10 and W11, and see if all UWP apps that matter are displayed? E.g. Try downloading the Xbox app from MS Store. |
Before, it was only able to get "global" apps, but now it is able to get from all User
Contributor
Author
It was unreliable to search for Executable file. Therefore I decided to utilize `explorer shell:AppsFolder`. This also required me to change how launching work in `winboat.ts`. by default `/app:program` cannot run `explorer.exe ...` method due to the argument are not allowed. instead we needed to pass to `,cmd:`
Contributor
Author
|
I believe I have solved all the main problems. I have tried on both Tiny10 and Tiny11 and both function as expected. Let me know what else I can do. Thanks for the amazing project! |
Before, I simply split the command by " ". Now we will have dedicated arg field. Figured it'll be useful in the future like giving custom launching arg to an application
App context menu
Contributor
Author
Screencast.From.2025-10-21.02-58-08.mp4Added Context-menu for launching app and create custom app from existing one |
- Fixed edit/create app input not full width
Owner
|
Awesome, LGTM! 🙌 |
TibixDev
pushed a commit
that referenced
this pull request
Oct 22, 2025
…ne, and Launch it from Context Menu (#373)" (#390) This reverts commit a44d6dc. Undoing UWP commit containing broken code. Co-authored-by: waffles-dev <[email protected]>
waffles-dev
pushed a commit
that referenced
this pull request
Oct 25, 2025
* UWP Discover System - Ability to fetch UWP programs and their logo. * Fixed - able to obtain apps as LOCAL_SYSTEM Before, it was only able to get "global" apps, but now it is able to get from all User * Fixed - Able to launch from the shortcuts now. It was unreliable to search for Executable file. Therefore I decided to utilize `explorer shell:AppsFolder`. This also required me to change how launching work in `winboat.ts`. by default `/app:program` cannot run `explorer.exe ...` method due to the argument are not allowed. instead we needed to pass to `,cmd:` * Made the launching application more robust. Before, I simply split the command by " ". Now we will have dedicated arg field. Figured it'll be useful in the future like giving custom launching arg to an application * Context Menu * editing, saving custom app * clean up * Update Apps.vue * Update Apps.vue * More Filter Option * Fixed some inconsistency * Added "Developer" filter for UWP app * Update Apps.vue * Resolves first Review * npx prettier * should resolve the review
2 tasks
chevybowtie
pushed a commit
to chevybowtie/dosboat
that referenced
this pull request
Feb 15, 2026
…Launch it from Context Menu (TibixDev#373) * UWP Discover System - Ability to fetch UWP programs and their logo. * Fixed - able to obtain apps as LOCAL_SYSTEM Before, it was only able to get "global" apps, but now it is able to get from all User * Fixed - Able to launch from the shortcuts now. It was unreliable to search for Executable file. Therefore I decided to utilize `explorer shell:AppsFolder`. This also required me to change how launching work in `winboat.ts`. by default `/app:program` cannot run `explorer.exe ...` method due to the argument are not allowed. instead we needed to pass to `,cmd:` * Made the launching application more robust. Before, I simply split the command by " ". Now we will have dedicated arg field. Figured it'll be useful in the future like giving custom launching arg to an application * Context Menu * editing, saving custom app * clean up * Update Apps.vue * Update Apps.vue * More Filter Option
chevybowtie
pushed a commit
to chevybowtie/dosboat
that referenced
this pull request
Feb 15, 2026
…ne, and Launch it from Context Menu (TibixDev#373)" (TibixDev#390) This reverts commit e2cffdf. Undoing UWP commit containing broken code. Co-authored-by: waffles-dev <[email protected]>
chevybowtie
pushed a commit
to chevybowtie/dosboat
that referenced
this pull request
Feb 15, 2026
* UWP Discover System - Ability to fetch UWP programs and their logo. * Fixed - able to obtain apps as LOCAL_SYSTEM Before, it was only able to get "global" apps, but now it is able to get from all User * Fixed - Able to launch from the shortcuts now. It was unreliable to search for Executable file. Therefore I decided to utilize `explorer shell:AppsFolder`. This also required me to change how launching work in `winboat.ts`. by default `/app:program` cannot run `explorer.exe ...` method due to the argument are not allowed. instead we needed to pass to `,cmd:` * Made the launching application more robust. Before, I simply split the command by " ". Now we will have dedicated arg field. Figured it'll be useful in the future like giving custom launching arg to an application * Context Menu * editing, saving custom app * clean up * Update Apps.vue * Update Apps.vue * More Filter Option * Fixed some inconsistency * Added "Developer" filter for UWP app * Update Apps.vue * Resolves first Review * npx prettier * should resolve the review
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

UWP Discovery
Context Menu
Extra
This should Resolve #26 #204