Skip to content

Commit 1556ff9

Browse files
committed
Renamed App vNext Notifier to Brave Ads Notifier.
Renamed App vNext to Brave Software. Renamed AppVNextNotifier to BraveAdsNotifier.
1 parent 3c4ba45 commit 1556ff9

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

src/AppVNext.Notifier.ConsoleUwp.Setup/Product.wxs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
3-
<Product Id="*" Name="App vNext Notifier" Language="1033" Version="1.0.1.0" Manufacturer="Brave Software" UpgradeCode="18329033-0696-4365-9233-ACC27548DFA2">
3+
<Product Id="*" Name="Brave Ads Notifier" Language="1033" Version="1.0.1.0" Manufacturer="Brave Software" UpgradeCode="18329033-0696-4365-9233-ACC27548DFA2">
44
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />
55

66
<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
77
<MediaTemplate EmbedCab="yes" />
88

9-
<Feature Id="ProductFeature" Title="App vNext Notifier" Level="1">
9+
<Feature Id="ProductFeature" Title="Brave Ads Notifier" Level="1">
1010
<ComponentGroupRef Id="ProductComponents" />
1111
</Feature>
1212

@@ -17,7 +17,7 @@
1717
<Fragment>
1818
<Directory Id="TARGETDIR" Name="SourceDir">
1919
<Directory Id="ProgramFilesFolder">
20-
<Directory Id="INSTALLFOLDER" Name="App vNext Notifier" />
20+
<Directory Id="INSTALLFOLDER" Name="Brave Ads Notifier" />
2121
</Directory>
2222
<Directory Id="ProgramMenuFolder">
2323
</Directory>
@@ -27,16 +27,16 @@
2727
<Fragment>
2828
<DirectoryRef Id="ProgramMenuFolder">
2929
<Component Id="ApplicationShortcut" Guid="3EEFDA65-72FC-42BB-ADE1-79F037D772EA">
30-
<Shortcut Id="ApplicationStartMenuShortcut" Name="App vNext Notifier" Description="Command line tool to send Windows Toast Notifications." Target="[INSTALLFOLDER]notifier.exe" WorkingDirectory="INSTALLFOLDER">
30+
<Shortcut Id="ApplicationStartMenuShortcut" Name="Brave Ads Notifier" Description="Command line tool to send Windows Toast Notifications." Target="[INSTALLFOLDER]notifier.exe" WorkingDirectory="INSTALLFOLDER">
3131
<!--AUMID-->
32-
<ShortcutProperty Key="System.AppUserModel.ID" Value="AppVNextNotifier"/>
32+
<ShortcutProperty Key="System.AppUserModel.ID" Value="BraveAdsNotifier"/>
3333

3434
<!--COM CLSID, specifying which CLSID to activate when toast clicked-->
3535
<ShortcutProperty Key="System.AppUserModel.ToastActivatorCLSID" Value="{4F5B934E-27C6-4AB6-A5EF-C3C71770E1A7}"/>
3636
</Shortcut>
3737

38-
<RemoveFile Id="RemoveApplicationShortcut" Directory="ProgramMenuFolder" Name="App vNext Notifier" On="uninstall"/>
39-
<RegistryValue Root="HKCU" Key="Software\App vNext Notifier" Name="installed" Type="integer" Value="1" KeyPath="yes" />
38+
<RemoveFile Id="RemoveApplicationShortcut" Directory="ProgramMenuFolder" Name="Brave Ads Notifier" On="uninstall"/>
39+
<RegistryValue Root="HKCU" Key="Software\Brave Ads Notifier" Name="installed" Type="integer" Value="1" KeyPath="yes" />
4040
</Component>
4141
</DirectoryRef>
4242
</Fragment>

src/AppVNext.Notifier.ConsoleUwp/Notifier.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ private static async Task<string> DownloadImageToDisk(string httpImage)
181181
return httpImage;
182182
}
183183

184-
var directory = Directory.CreateDirectory(Path.GetTempPath() + "AppVNextNotifierImages");
184+
var directory = Directory.CreateDirectory(Path.GetTempPath() + "BraveAdsNotifierImages");
185185

186186
if (!_hasPerformedCleanup)
187187
{

src/AppVNext.Notifier.ConsoleUwp/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class Program
2626
static void Main(string[] args)
2727
{
2828
// Register AUMID, COM server, and activator
29-
DesktopNotificationManagerCompat.RegisterAumidAndComServer<NotifierActivator>("AppVNextNotifier");
29+
DesktopNotificationManagerCompat.RegisterAumidAndComServer<NotifierActivator>("BraveAdsNotifier");
3030
DesktopNotificationManagerCompat.RegisterActivator<NotifierActivator>();
3131

3232
// If launched from a toast notification

src/AppVNext.Notifier.ConsoleUwp/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
// General Information about an assembly is controlled through the following
66
// set of attributes. Change these attribute values to modify the information
77
// associated with an assembly.
8-
[assembly: AssemblyTitle("App vNext UWP Notifier")]
8+
[assembly: AssemblyTitle("Brave Software UWP Notifier")]
99
[assembly: AssemblyDescription("Command line tool to send Windows Toast Notifications.")]
1010
[assembly: AssemblyConfiguration("")]
11-
[assembly: AssemblyCompany("App vNext")]
11+
[assembly: AssemblyCompany("Brave Software")]
1212
[assembly: AssemblyProduct("UWP Notifier")]
1313
[assembly: AssemblyCopyright("Copyright © 2018")]
1414
[assembly: AssemblyTrademark("")]

0 commit comments

Comments
 (0)