Skip to content

Commit bd5ad3b

Browse files
authored
Revert "chore: update RDP modules display names, icon and docs" (#174)
1 parent 6537aeb commit bd5ad3b

File tree

4 files changed

+23
-50
lines changed

4 files changed

+23
-50
lines changed

.icons/rdp.svg

Lines changed: 0 additions & 35 deletions
This file was deleted.

MAINTAINER.md

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

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

1921
Check that PRs have:
2022

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

27-
### Version Guidelines
29+
#### Version Guidelines
2830

2931
When reviewing PRs, ensure the version change follows semantic versioning:
3032

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

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

4547
### Create Release Tags
4648

@@ -97,3 +99,5 @@ status: "community" # or "partner", "official"
9799
- **Tests fail**: Ensure Docker with `--network=host`, check Terraform syntax
98100
- **Wrong file structure**: Use `./scripts/new_module.sh` for new modules
99101
- **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: RDP Desktop
2+
display_name: Windows RDP Desktop
33
description: Enable RDP on Windows and add a one-click Coder Desktop button for seamless access
4-
icon: ../../../../.icons/rdp.svg
4+
icon: ../../../../.icons/desktop.svg
55
maintainer_github: coder
66
verified: true
77
supported_os: [windows]
8-
tags: [rdp, windows, desktop, local]
8+
tags: [rdp, windows, desktop, remote]
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.1"
21+
version = "1.0.0"
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.1"
54+
version = "1.0.0"
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.1"
68+
version = "1.0.0"
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: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
display_name: RDP Web
2+
display_name: Windows RDP
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.2"
19+
version = "1.2.1"
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.2"
37+
version = "1.2.1"
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.2"
49+
version = "1.2.1"
5050
agent_id = resource.coder_agent.main.id
5151
resource_id = resource.google_compute_instance.dev[0].id
5252
}
@@ -58,9 +58,13 @@ 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.2"
61+
version = "1.2.1"
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)