Fix result table layout

This commit is contained in:
Geomitron
2023-12-14 13:36:45 -06:00
parent c2e355cb53
commit 742c6a28d0
23 changed files with 81 additions and 196 deletions

View File

@@ -7,12 +7,3 @@ export const libraryPath = join(dataPath, 'library.db')
export const settingsPath = join(dataPath, 'settings.json')
export const tempPath = join(dataPath, 'temp')
export const themesPath = join(dataPath, 'themes')
// URL
export const serverURL = 'bridge-db.net'
// OAuth callback server
export const SERVER_PORT = 42813
export const REDIRECT_BASE = `http://127.0.0.1:${SERVER_PORT}`
export const REDIRECT_PATH = `/oauth2callback`
export const REDIRECT_URI = `${REDIRECT_BASE}${REDIRECT_PATH}`

View File

@@ -131,6 +131,8 @@ export interface SearchResult {
chartId: number
/** The unique database identifier for the song, or `null` if there is only one chart of the song. */
songId: number | null
/** The unique database identifier for the song, or (-versionGroupId) if there is only one chart of the song. */
groupId: number
/** The MD5 hash of the normalized album art file. */
albumArtMd5: string | null
/** The MD5 hash of the chart folder or .sng file. */