Author Topic: Latest version of API  (Read 7727 times)

Lepick

  • Guest
I am assuming that the latest and greatest C# API can always be obtained from the link from the first post in the MusicBee API thread, correct?  :)

Steven

  • Administrator
  • Sr. Member
  • *****
  • Posts: 34313
yes.
However the API interface definitions from // api version 44 onwards require the user to be using v2.5 so if you want to do it for a wider audience then dont use those and change "public const short MinApiRevision = 47" to "public const short MinApiRevision = 43" so it forces the user to have a minimum version of MB 2.4

Lepick

  • Guest
yes.
However the API interface definitions from // api version 44 onwards require the user to be using v2.5 so if you want to do it for a wider audience then dont use those and change "public const short MinApiRevision = 47" to "public const short MinApiRevision = 43" so it forces the user to have a minimum version of MB 2.4

Thank you, will do.