Skip to content

Commit

Permalink
Update API docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jellyfin-bot committed Nov 11, 2023
1 parent faa9e85 commit 24cb72b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/api/quicksearch.html

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions docs/api/source_migrations.bs.html
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ <h1 class="page-title">Source: source/migrations.bs</h1>
' 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

Expand Down Expand Up @@ -125,8 +125,8 @@ <h1 class="page-title">Source: source/migrations.bs</h1>
regSections = getRegistrySections()
for each section in regSections
if LCase(section) &lt;> "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
'
Expand Down

0 comments on commit 24cb72b

Please sign in to comment.