Skip to content

chore: rename CoderVPN to Coder Connect in UI #59

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions App/ViewModels/TrayWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ private async Task StartVpn()
}
catch (Exception e)
{
VpnFailedMessage = "Failed to start CoderVPN: " + MaybeUnwrapTunnelError(e);
VpnFailedMessage = "Failed to start Coder Connect: " + MaybeUnwrapTunnelError(e);
}
}

Expand All @@ -246,7 +246,7 @@ private async Task StopVpn()
}
catch (Exception e)
{
VpnFailedMessage = "Failed to stop CoderVPN: " + MaybeUnwrapTunnelError(e);
VpnFailedMessage = "Failed to stop Coder Connect: " + MaybeUnwrapTunnelError(e);
}
}

Expand Down
4 changes: 2 additions & 2 deletions App/Views/Pages/TrayWindowDisconnectedPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
Spacing="10">

<TextBlock
Text="CoderVPN"
Text="Coder Connect"
FontSize="18"
VerticalAlignment="Center" />
<TextBlock
TextWrapping="Wrap"
Text="Could not connect to the CoderVPN system service." />
Text="Could not connect to the Coder Connect system service." />
<TextBlock
TextWrapping="Wrap"
Margin="0,0,0,10"
Expand Down
2 changes: 1 addition & 1 deletion App/Views/Pages/TrayWindowLoadingPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
Spacing="10">

<TextBlock
Text="CoderVPN"
Text="Coder Connect"
FontSize="18"
VerticalAlignment="Center" />
<TextBlock
Expand Down
4 changes: 2 additions & 2 deletions App/Views/Pages/TrayWindowLoginRequiredPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
Spacing="10">

<TextBlock
Text="CoderVPN"
Text="Coder Connect"
FontSize="18"
VerticalAlignment="Center" />
<TextBlock
Text="Please sign in to use Coder VPN."
Text="Please sign in to use Coder Connect."
Margin="0,0,0,10" />

<controls:HorizontalRule />
Expand Down
4 changes: 2 additions & 2 deletions App/Views/Pages/TrayWindowMainPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

<TextBlock
Grid.Column="0"
Text="CoderVPN"
Text="Coder Connect"
FontSize="18"
VerticalAlignment="Center" />
<ProgressRing
Expand Down Expand Up @@ -71,7 +71,7 @@
Visibility="{x:Bind ViewModel.ShowFailedSection, Converter={StaticResource BoolToVisibilityConverter}, Mode=OneWay}" />

<TextBlock
Text="Enable CoderVPN to view your workspaces."
Text="Enable Coder Connect to view your workspaces."
TextWrapping="Wrap"
Margin="0,6,0,6"
Visibility="{x:Bind ViewModel.ShowEnableSection, Converter={StaticResource BoolToVisibilityConverter}, Mode=OneWay}"
Expand Down
Loading