Skip to content

Commit 4985a39

Browse files
committed
Updated help text.
1 parent 19e8d6c commit 4985a39

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/AppVNext.Notifier/Globals.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ class Globals
1414
{
1515
//General
1616
internal static readonly string NewLine = Environment.NewLine;
17-
internal const string DefaultApplicationId = "com.appvnext.notifier";
18-
internal const string DefaultApplicationName = "appvnext-notifier";
17+
internal const string DefaultApplicationId = "com.appvnext.windows-notifier";
18+
internal const string DefaultApplicationName = "appvnext-windows-notifier";
1919
internal const string NotificationKey = "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Notifications\\Settings\\{0}";
2020
internal const string PushNotificationKey = "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\PushNotifications";
2121

2222
//Arguments help text
2323
internal static readonly string HelpForRegister =
2424
$"Argument -r requires 2 values: <appId string> and <appName string>.{NewLine}" +
25-
$"Example: -r \"com.brave.windows-notifier\" \"brave-windows-notifier\"{NewLine}";
25+
$"Example: -r \"com.appvnext.windows-notifier\" \"appvnext-windows-notifier\"{NewLine}";
2626

2727
internal static readonly string HelpForTitle =
2828
$"Argument -t requires 1 value: <title string>.{NewLine}" +
@@ -46,15 +46,15 @@ class Globals
4646

4747
internal static readonly string HelpForAppId =
4848
$"Argument -appID requires 1 value: <appID string>.{NewLine}" +
49-
$"Example: -appID \"com.brave.windows-notifier\"{NewLine}";
49+
$"Example: -appID \"com.appvnext.windows-notifier\"{NewLine}";
5050

5151
internal static readonly string HelpForClose =
5252
$"Argument -close requires 1 value: <ID string>.{NewLine}" +
5353
$"Example: -close \"12345\"{NewLine}";
5454

5555
internal static readonly string HelpForNotificationsCheck =
5656
$"Argument -n requires 1 value: <appID string>.{NewLine}" +
57-
$"Example: -n \"com.brave.windows-notifier\"{NewLine}";
57+
$"Example: -n \"com.appvnext.windows-notifier\"{NewLine}";
5858

5959
internal static readonly string HelpForDuration =
6060
$"Argument -d requires 1 value: <short|long>.{NewLine}" +
@@ -104,7 +104,7 @@ class Globals
104104
$"notifier -t \"Notification Title\" -m \"Notification message.\"{NewLine}" +
105105
$"notifier help{NewLine}" +
106106
$"notifier ?{NewLine}" +
107-
$"notifier register com.brave.windows-notifier brave-windows-notifier{NewLine}" +
107+
$"notifier register com.appvnext.windows-notifier appvnext-windows-notifier{NewLine}" +
108108
$"{NewLine}";
109109
}
110110
}

0 commit comments

Comments
 (0)