-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'neutrinolabs:devel' into xrdp_pcsc1
- Loading branch information
Showing
40 changed files
with
922 additions
and
147 deletions.
There are no files selected for viewing
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: Report errors or unexpected behavior | ||
labels: | ||
- "bug" | ||
body: | ||
- type: input | ||
attributes: | ||
label: xrdp version | ||
placeholder: 0.9.20 | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Detailed xrdp version, build options | ||
description: Copy & paste the result of `xrdp --version`. DO NOT remove `~~~` but paste the result between two `~~~`. | ||
value: | | ||
~~~ | ||
PASTE HERE | ||
~~~ | ||
- type: input | ||
attributes: | ||
label: Operating system & version | ||
placeholder: "Ubuntu 22.04 / AlmaLinux 9 / FreeBSD 13.2 / etc" | ||
description: Tell us about your operating system. See PRETTY_NAME | ||
in /etc/os-release if you don't know. | ||
|
||
Note we are currently unable to provide direct support for Red Hat | ||
Enterprise Linux. Either reproduce the issue on CentOS/Alma/Rocky | ||
OS, or contact Red Hat directly for support. | ||
validations: | ||
required: true | ||
- type: dropdown | ||
attributes: | ||
label: Installation method | ||
description: How was xrdp installed from? | ||
options: | ||
- dnf / apt / zypper / pkg / etc | ||
- Homebrew / MacPorts | ||
- git clone & make install | ||
- Doesn't matter | ||
- other | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Which backend do you use? | ||
description: Tell us about xrdp backend and version you're using. Typically, it would be either Xvnc or xorgxrdp or rarely NeutrionRDP / FreeRDP. | ||
placeholder: Xvnc (tigervnc-1.12.0-13.el9_2) | ||
- type: input | ||
attributes: | ||
label: What desktop environment do you use? | ||
description: Tell us about your desktop (e.g. GNOME / KDE / Xfce / xterm). If you're certain the bug you about to report is not desktop specific, fill "any" here. | ||
placeholder: GNOME | ||
- type: input | ||
attributes: | ||
label: Environment xrdp running on | ||
description: Tell us whether xrdp is running on a VM, or if on a physical machine what graphics cards are installed. | ||
- type: input | ||
attributes: | ||
label: What's your client? | ||
description: If you issue occurs with specific clients, tell us the client app name, app version client os version and platform. | ||
placeholder: Microsoft's official client from Mac App Store, running on macOS Ventura. | ||
- type: dropdown | ||
attributes: | ||
label: Area(s) with issue? | ||
description: What things had an issue? Check all that apply. | ||
multiple: true | ||
options: | ||
- Audio redirection | ||
- Authentication | ||
- Crashes such as segfault | ||
- Clipboard | ||
- Compatiblity aginst clients | ||
- Compile error | ||
- File transfer / drive redirection | ||
- Graphic glitches | ||
- Keyboard / Mouse | ||
- Network | ||
- Performance | ||
- Session manager (sesman) | ||
- Smartcard | ||
- Other | ||
- type: textarea | ||
attributes: | ||
label: Steps to reproduce | ||
placeholder: Having detailed steps helps us reproduce the bug. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: ✔️ Expected Behavior | ||
placeholder: What were you expecting? | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: ❌ Actual Behavior | ||
placeholder: What happened instead? | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Anything else? | ||
description: Links? References? Anything that will give us more context about the issue you are encountering! We recommend attaching `xrdp.log`, `xrdp-sesman.log`, `xrdp/xorg.conf` or screenshots to clarify context. |
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,5 @@ | ||
contact_links: | ||
- name: Questions | ||
about: If you are new to xrdp and want to ask community for help, raise it as Q&A in discussion. | ||
url: https://github.com/neutrinolabs/xrdp/discussions/new?category=q-a | ||
|
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 |
---|---|---|
|
@@ -466,8 +466,6 @@ create_window(void) | |
{ | ||
WNDCLASS wc; | ||
DWORD style; | ||
HDC dc; | ||
int height; | ||
int left; | ||
int top; | ||
|
||
|
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,5 +1,12 @@ | ||
#%PAM-1.0 | ||
auth include system-remote-login | ||
account include system-remote-login | ||
password include system-remote-login | ||
session include system-remote-login | ||
auth include system-remote-login | ||
-auth optional pam_gnome_keyring.so | ||
-auth optional pam_kwallet5.so | ||
|
||
account include system-remote-login | ||
|
||
password include system-remote-login | ||
|
||
session include system-remote-login | ||
-session optional pam_gnome_keyring.so auto_start | ||
-session optional pam_kwallet5.so auto_start |
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,5 +1,14 @@ | ||
#%PAM-1.0 | ||
auth required pam_env.so readenv=1 | ||
auth required pam_env.so readenv=1 envfile=/etc/default/locale | ||
@include common-auth | ||
-auth optional pam_gnome_keyring.so | ||
-auth optional pam_kwallet5.so | ||
|
||
@include common-account | ||
@include common-session | ||
|
||
@include common-password | ||
|
||
@include common-session | ||
-session optional pam_gnome_keyring.so auto_start | ||
-session optional pam_kwallet5.so auto_start |
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.