-
-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
311 additions
and
61 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
name: Bug Report | ||
description: Create a report to help us improve | ||
labels: ["Bug"] | ||
assignees: | ||
- patrick330602 | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
> **ATTENTION!** | ||
> | ||
> Built-in versions of wslu in Ubuntu are no longer supported by me. | ||
> | ||
> If you have problems, please: | ||
> 1. Report to the Ubuntu WSL team; or | ||
> 2. Try the PPA version of WSL here: <https://launchpad.net/~wslutilities/+archive/ubuntu/wslu> | ||
> | ||
> Usually The PPA version of wslu will address most of your problems. | ||
- type: dropdown | ||
id: win-version | ||
attributes: | ||
label: Windows Version | ||
description: What version of Windows are you running? | ||
options: | ||
- Windows 10 | ||
- Windows 11 | ||
validations: | ||
required: true | ||
- type: input | ||
id: win-build | ||
attributes: | ||
label: Windows Build Number | ||
description: What's your Windows build number? | ||
placeholder: e.g. build 17704 | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: wsl-version | ||
attributes: | ||
label: WSL Version | ||
description: What version of WSL are you running? | ||
options: | ||
- WSL 1 | ||
- WSL 2 | ||
- Not Applicable | ||
validations: | ||
required: true | ||
- type: input | ||
id: wsl-distro | ||
attributes: | ||
label: Distro Version | ||
description: What's the distro? If it happens on multiple distros, please list them. | ||
placeholder: e.g. Ubuntu 20.04 | ||
validations: | ||
required: true | ||
- type: input | ||
id: wslu-version | ||
attributes: | ||
label: WSL Utilities Version | ||
description: What's the version of WSL Utilities? | ||
placeholder: e.g. 2.3.4 | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Describe the bug | ||
description: A clear and concise description of what the bug is. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: steps-to-reproduce | ||
attributes: | ||
label: Steps to Reproduce | ||
description: Steps to reproduce the behavior. | ||
placeholder: | | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected-behavior | ||
attributes: | ||
label: Expected behavior | ||
description: A clear and concise description of what you expected to happen. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional context | ||
description: Add any other context about the problem here. | ||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Code of Conduct | ||
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/wslutilities/wslu/blob/7920eb4f94873666477032a33ab57a9b6ee9ad96/CODE_OF_CONDUCT.md) | ||
options: | ||
- label: I agree to follow this project's Code of Conduct | ||
required: true |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
4.0.0-1 | ||
4.1.0-1 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -87,6 +87,9 @@ For example, \fB"light"\fR. | |
.B -T, --win-system-type | ||
Print whether the system is running in Windows Desktop, Windows Server, or Windows Domain Controller. | ||
For example, \fB"Server"\fR. | ||
.TP | ||
.B -d, --systemd-status | ||
Print the status of systemd in WSL. | ||
.SH AUTHOR | ||
Created by Patrick Wu <[email protected]> | ||
.SH REPORTING BUGS | ||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,6 +57,9 @@ Default GUI type. Default type is 'legacy'. Use 'native' for Native GUI generati | |
.TP | ||
.B WSLUSC_SMART_ICON_DETECTION | ||
Smart Icon Detection. Requires wslpy (Requires Python 3.5). default is \'false\'. | ||
.TP | ||
.B WSLUSC_BASE_CONVERTER_ENGINE | ||
Converter engine. You can choose either 'ffmpeg' or 'imagemagick'. By default it is 'imagemagick'. | ||
.SH AUTHOR | ||
Created by Patrick Wu <[email protected]> | ||
.SH REPORTING BUGS | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Maintainer: Patrick Wu <[email protected]> | ||
# Contributor: Patrick Wu <[email protected]> | ||
pkgname=wslu | ||
pkgver=4.0.0 | ||
pkgver=4.1.0 | ||
pkgrel=0 | ||
pkgdesc="A collection of utilities for the Linux Subsystem for Windows" | ||
url="https://github.com/wslutilities/wslu" | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Maintainer: Patrick Wu <[email protected]> | ||
|
||
pkgname=wslu | ||
pkgver=4.0.0 | ||
pkgver=4.1.0 | ||
pkgrel=0 | ||
pkgdesc="A collection of utilities for the Linux Subsystem for Windows" | ||
arch=('any') | ||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
# wslfetch: the sections of info from wslsys to show in wslfetch. | ||
# Available options: | ||
# windows-install-date | ||
# windows-rel-branch | ||
# windows-build | ||
# windows-full-build | ||
# display-scaling | ||
# windows-locale | ||
# windows-theme | ||
# windows-uptime | ||
# wsl-uptime | ||
# wsl-release | ||
# wsl-kernel | ||
# wsl-package-count | ||
# wsl-ip | ||
# wsl-systemd-status | ||
# 'wsl-version' will be always ignored since it is builtin in wslfetch. | ||
# WSLFETCH_INFO_SECTION="windows-build,windows-rel-branch,wsl-release,wsl-kernel,windows-uptime" | ||
|
||
# wslfetch: whether you want to display colorbar in wslfetch. This will override `-c/--colorbar` param. | ||
# WSLFETCH_COLORBAR=false | ||
|
||
# wslfetch: This allows you to use your own customized theme. | ||
# WSLFETCH_THEME_PATH= | ||
|
||
# wslusc: Default GUI type. Default type is 'legacy'. Use 'native' for Native GUI generation by default | ||
# WSLUSC_GUITYPE="legacy" | ||
|
||
# wslusc: Smart Icon Detection. Requires wslpy (Requires Python 3.5). | ||
# WSLUSC_SMART_ICON_DETECTION=false | ||
|
||
# wslusc: Converter engine. You can choose either `ffmpeg` or `imagemagick`. By default it is `imagemagick`. | ||
# - `ffmpeg` engine supports .png and .svg; However, svg support is usually not included by default; | ||
# - `imagemagick` engine supports .png, .svg, .ico, and .xpm. | ||
# WSLUSC_BASE_CONVERTER_ENGINE=imagemagick | ||
|
||
# wslvar: Default Type of variable to get when not specifying option. Default type is 1. | ||
# Available Types: | ||
# 1: User Shell Folders | ||
# 2: Windows Environment Variables | ||
# WSLVAR_DEFAULT_VARTYPE=1 | ||
|
||
# wslview: default method to start websites/folders/files. Default type is "powershell". | ||
# Available options: | ||
# powershell: use powershell.exe to start website/folder/file | ||
# cmd: use cmd.exe to start website/folder/file | ||
# cmd_explorer: use explorer.exe via cmd.exe to start website/folder/file | ||
# WSLVIEW_DEFAULT_ENGINE="powershell" |
This file contains 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
Oops, something went wrong.