Skip to content

Commit

Permalink
1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
EliSadaka committed Aug 1, 2022
1 parent 7168327 commit 110d364
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions MusicBeeUpnp.vb
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ Public Class Plugin
Public Function Initialise(ByVal apiInterfacePtr As IntPtr) As PluginInfo
CopyMemory(mbApiInterface, apiInterfacePtr, Marshal.SizeOf(mbApiInterface))
about.PluginInfoVersion = PluginInfoVersion
about.Name = "MusicBee UPnP Reloaded"
about.Name = "UPnP Reloaded"
about.Description = "UPnP/DLNA server and control point"
about.Author = "Steven Mayall"
about.Author = "Steven Mayall, forked by Eli Sadaka"
about.TargetApplication = ""
about.Type = PluginType.Upnp
about.VersionMajor = 1
about.VersionMinor = 0
about.Revision = 1
about.VersionMinor = 1
about.Revision = 2
about.MinInterfaceVersion = MinInterfaceVersion
about.MinApiRevision = MinApiRevision
about.ReceiveNotifications = (ReceiveNotificationFlags.TagEvents Or ReceiveNotificationFlags.PlayerEvents)
Expand Down
10 changes: 5 additions & 5 deletions My Project/AssemblyInfo.vb
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ Imports System.Runtime.InteropServices

' Review the values of the assembly attributes

<Assembly: AssemblyTitle("MusicBee Upnp/DNLA server")>
<Assembly: AssemblyTitle("UpnpReloaded")>
<Assembly: AssemblyDescription("")>
<Assembly: AssemblyCompany("Steven Mayall")>
<Assembly: AssemblyCompany("Steven Mayall, forked by Eli Sadaka")>
<Assembly: AssemblyProduct("")>
<Assembly: AssemblyCopyright("Copyright ©Steven Mayall 2014")>
<Assembly: AssemblyCopyright("Copyright © 2014-2022")>
<Assembly: AssemblyTrademark("")>

<Assembly: ComVisible(False)>
Expand All @@ -30,5 +30,5 @@ Imports System.Runtime.InteropServices
' by using the '*' as shown below:
' <Assembly: AssemblyVersion("1.0.*")>

<Assembly: AssemblyVersion("1.0.0.0")>
<Assembly: AssemblyFileVersion("1.0.0.0")>
<Assembly: AssemblyVersion("1.1.0.0")>
<Assembly: AssemblyFileVersion("1.1.0.0")>

0 comments on commit 110d364

Please sign in to comment.