Skip to content

Commit 6537aeb

Browse files
authored
chore: update RDP modules display names, icon and docs (#169)
## Description Use more descriptive names Depends on coder/coder#coder/coder#18716 --- ## Type of Change - [ ] New module - [ ] Bug fix - [ ] Feature/enhancement - [x] Documentation - [ ] Other
1 parent 358f47b commit 6537aeb

File tree

4 files changed

+50
-23
lines changed

4 files changed

+50
-23
lines changed

.icons/rdp.svg

Lines changed: 35 additions & 0 deletions
Loading

MAINTAINER.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@ brew install go
1414
sudo apt install golang-go
1515
```
1616

17-
## Daily Tasks
18-
19-
### Review PRs
17+
## Reviewing a PR
2018

2119
Check that PRs have:
2220

@@ -26,7 +24,7 @@ Check that PRs have:
2624
- [ ] Formatted code (`bun run fmt`)
2725
- [ ] Avatar image for new namespaces (`avatar.png` or `avatar.svg` in `.images/`)
2826

29-
#### Version Guidelines
27+
### Version Guidelines
3028

3129
When reviewing PRs, ensure the version change follows semantic versioning:
3230

@@ -42,7 +40,7 @@ PRs should clearly indicate the version change (e.g., `v1.2.3 → v1.2.4`).
4240
go build ./cmd/readmevalidation && ./readmevalidation
4341
```
4442

45-
## Releases
43+
## Making a Release
4644

4745
### Create Release Tags
4846

@@ -99,5 +97,3 @@ status: "community" # or "partner", "official"
9997
- **Tests fail**: Ensure Docker with `--network=host`, check Terraform syntax
10098
- **Wrong file structure**: Use `./scripts/new_module.sh` for new modules
10199
- **Missing namespace avatar**: Must be `avatar.png` or `avatar.svg` in `.images/` directory
102-
103-
That's it. Keep it simple.

registry/coder/modules/local-windows-rdp/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
---
2-
display_name: Windows RDP Desktop
2+
display_name: RDP Desktop
33
description: Enable RDP on Windows and add a one-click Coder Desktop button for seamless access
4-
icon: ../../../../.icons/desktop.svg
4+
icon: ../../../../.icons/rdp.svg
55
maintainer_github: coder
66
verified: true
77
supported_os: [windows]
8-
tags: [rdp, windows, desktop, remote]
8+
tags: [rdp, windows, desktop, local]
99
---
1010

1111
# Windows RDP Desktop
1212

1313
This module enables Remote Desktop Protocol (RDP) on Windows workspaces and adds a one-click button to launch RDP sessions directly through [Coder Desktop](https://coder.com/docs/user-guides/desktop). It provides a complete, standalone solution for RDP access, eliminating the need for manual configuration or port forwarding through the Coder CLI.
1414

15-
> **Note**: [Coder Desktop](https://coder.com/docs/user-guides/desktop) is required on client devices to use the Local Windows RDP access feature.
15+
> [!NOTE] > [Coder Desktop](https://coder.com/docs/user-guides/desktop) is required on client devices to use the Local Windows RDP access feature.
1616
1717
```tf
1818
module "rdp_desktop" {
1919
count = data.coder_workspace.me.start_count
2020
source = "registry.coder.com/coder/local-windows-rdp/coder"
21-
version = "1.0.0"
21+
version = "1.0.1"
2222
agent_id = coder_agent.main.id
2323
agent_name = coder_agent.main.name
2424
}
@@ -51,7 +51,7 @@ Uses default credentials (Username: `Administrator`, Password: `coderRDP!`):
5151
module "rdp_desktop" {
5252
count = data.coder_workspace.me.start_count
5353
source = "registry.coder.com/coder/local-windows-rdp/coder"
54-
version = "1.0.0"
54+
version = "1.0.1"
5555
agent_id = coder_agent.main.id
5656
agent_name = coder_agent.main.name
5757
}
@@ -65,7 +65,7 @@ Specify a custom display name for the `coder_app` button:
6565
module "rdp_desktop" {
6666
count = data.coder_workspace.me.start_count
6767
source = "registry.coder.com/coder/local-windows-rdp/coder"
68-
version = "1.0.0"
68+
version = "1.0.1"
6969
agent_id = coder_agent.windows.id
7070
agent_name = "windows"
7171
display_name = "Windows Desktop"

registry/coder/modules/windows-rdp/README.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
display_name: Windows RDP
2+
display_name: RDP Web
33
description: RDP Server and Web Client, powered by Devolutions Gateway
44
icon: ../../../../.icons/desktop.svg
55
maintainer_github: coder
@@ -16,7 +16,7 @@ Enable Remote Desktop + a web based client on Windows workspaces, powered by [de
1616
module "windows_rdp" {
1717
count = data.coder_workspace.me.start_count
1818
source = "registry.coder.com/coder/windows-rdp/coder"
19-
version = "1.2.1"
19+
version = "1.2.2"
2020
agent_id = resource.coder_agent.main.id
2121
resource_id = resource.aws_instance.dev.id
2222
}
@@ -34,7 +34,7 @@ module "windows_rdp" {
3434
module "windows_rdp" {
3535
count = data.coder_workspace.me.start_count
3636
source = "registry.coder.com/coder/windows-rdp/coder"
37-
version = "1.2.1"
37+
version = "1.2.2"
3838
agent_id = resource.coder_agent.main.id
3939
resource_id = resource.aws_instance.dev.id
4040
}
@@ -46,7 +46,7 @@ module "windows_rdp" {
4646
module "windows_rdp" {
4747
count = data.coder_workspace.me.start_count
4848
source = "registry.coder.com/coder/windows-rdp/coder"
49-
version = "1.2.1"
49+
version = "1.2.2"
5050
agent_id = resource.coder_agent.main.id
5151
resource_id = resource.google_compute_instance.dev[0].id
5252
}
@@ -58,13 +58,9 @@ module "windows_rdp" {
5858
module "windows_rdp" {
5959
count = data.coder_workspace.me.start_count
6060
source = "registry.coder.com/coder/windows-rdp/coder"
61-
version = "1.2.1"
61+
version = "1.2.2"
6262
agent_id = resource.coder_agent.main.id
6363
resource_id = resource.aws_instance.dev.id
6464
devolutions_gateway_version = "2025.1.6" # Specify a specific version
6565
}
6666
```
67-
68-
## Roadmap
69-
70-
- [ ] Test on Microsoft Azure.

0 commit comments

Comments
 (0)