Update API docs

This commit is contained in:
jellyfin-bot 2023-11-11 00:22:40 +00:00
parent faa9e8563e
commit 24cb72b5e3
2 changed files with 6 additions and 6 deletions

File diff suppressed because one or more lines are too long

View File

@ -77,9 +77,9 @@
' Run all necessary registry mirations on the "global" Jellyfin registry section
sub runGlobalMigrations()
' Global registry migrations
if isValid(m.global.app.lastRunVersion) and not versionChecker(m.global.app.lastRunVersion, "1.7.0")
' last app version used was less than 1.7.0
print "Running 1.7.0 global registry migrations"
if isValid(m.global.app.lastRunVersion) and not versionChecker(m.global.app.lastRunVersion, "2.0.0")
' last app version used was less than 2.0.0
print "Running 2.0.0 global registry migrations"
' no longer saving raw password to registry
' auth token and username are now stored in user settings and not global settings
@ -125,8 +125,8 @@ sub runRegistryUserMigrations(version as string)
regSections = getRegistrySections()
for each section in regSections
if LCase(section) <> "jellyfin"
if version = "1.7.0"
print "Running User Registry Migration for 1.7.0"
if version = "2.0.0"
print "Running User Registry Migration for 2.0.0"
' now saving LastRunVersion globally and per user so that we can run user specific registry migrations
' duplicate LastRunVersion to all user settings in the registry so that we can run user specific migrations
'