Skip to content

Commit

Permalink
Performance improvements, Added more options for window hook, a possi…
Browse files Browse the repository at this point in the history
…ble fix for #4
  • Loading branch information
w4po committed Dec 9, 2023
1 parent dee59a9 commit 2887db0
Show file tree
Hide file tree
Showing 15 changed files with 829 additions and 249 deletions.
75 changes: 75 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
name: 🐛 Bug Report
description: Report an issue to help improve the project.
title: "[BUG] title"
labels: ["bug"]
body:
- type: markdown
attributes:
value: |
We're sorry that you're experiencing an issue.
Please fill in this form to the best of your ability, So that we can help you effectively.
- type: checkboxes
id: duplicates
attributes:
label: Has this bug been raised before?
description: Increase the chances of your issue being accepted by ensuring it has not been raised before.
options:
- label: I have checked "open" AND "closed" issues and this is not a duplicate
validations:
required: true
- type: textarea
id: description
attributes:
label: "Describe your issue:"
placeholder: When I click here this happens
validations:
required: true
- type: input
id: os
attributes:
label: What OS do you have?
value: "Windows 11"
validations:
required: true
- type: input
id: edition
attributes:
label: What edition?
value: "Home.."
validations:
required: true
- type: input
id: version
attributes:
label: OS Version?
value: "22H2.."
validations:
required: true
- type: input
id: build
attributes:
label: OS Build?
value: "23585.xxx"
validations:
required: true
- type: dropdown
id: tweaked
attributes:
label: Have you tweaked your Windows 11 look?
multiple: false
options:
- "No"
- "Yes"
default: 0
validations:
required: true
- type: textarea
attributes:
label: If "Yes" to the above, please explain how or what tools you have used.
- type: textarea
attributes:
label: Put here any screenshots or videos (optional)
- type: markdown
attributes:
value: |
Thanks for reporting this issue! We will get back to you as soon as possible.
38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: 💡 General Feature Request
description: Have a new idea/feature? Let us know...
title: "[FEATURE] title"
labels: ["enhancement"]
body:
- type: checkboxes
id: duplicates
attributes:
label: Is this a unique feature?
description: Increase the chances of your issue being accepted by making sure it has not been raised before.
options:
- label: I have checked "open" AND "closed" issues and this is not a duplicate
required: true
- type: textarea
id: description
attributes:
label: Proposed Solution
description: A clear description of the enhancement you propose. Please include relevant information and resources (for example another project's implementation of this feature).
validations:
required: true
- type: dropdown
id: assignee
attributes:
label: Do you want to work on this issue?
multiple: false
options:
- "No"
- "Yes"
default: 0
validations:
required: false
- type: textarea
id: extrainfo
attributes:
label: If "yes" to the above, please explain how you would technically implement this
description: For example reference any existing code
validations:
required: false
6 changes: 6 additions & 0 deletions ExplorerTabUtility/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@
<setting name="WindowHook" serializeAs="String">
<value>True</value>
</setting>
<setting name="WindowViaUi" serializeAs="String">
<value>True</value>
</setting>
<setting name="WindowViaKeys" serializeAs="String">
<value>False</value>
</setting>
</ExplorerTabUtility.Properties.Settings>
</userSettings>
</configuration>
1 change: 1 addition & 0 deletions ExplorerTabUtility/ExplorerTabUtility.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@

<ItemGroup>
<PackageReference Include="FlaUI.UIA3" Version="4.0.0" />
<PackageReference Include="H.InputSimulator" Version="1.4.1" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading

0 comments on commit 2887db0

Please sign in to comment.