We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to add support for JSON format, I think it could be something like:
#if legacy then playlist_entry := playlist_entry_rom_path . "`n" . playlist_title . "`n" . core_path . "`n" . "DETECT" . "`n" . "DETECT" . "`n" . playlist_name . ".lpl" . "`n" #else #this before start loop array header := '"{`n" """version""":"""1.0""",`n" """items""": [`n" playlist_file.Write(header) #in array playlist_entry := "{". "`n" . """path""": """. playlist_entry_rom_path . """,". "`n" . """label": """ . playlist_title . """,". "`n" . """core_path""": """. core_path . """,. "`n" . """core_name""": ""DETECT""",. "`n" . """crc32""": """DETECT""",. "`n" . """db_name""": """ . playlist_name .".lpl""". "`n" . "},". "`n" playlist_file.Write(playlist_entry) #after array # remove last "," comma, I don't know the command footer:= " ]`n" "}`n" playlist_file.Write(footer) #end if
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is it possible to add support for JSON format, I think it could be something like:
The text was updated successfully, but these errors were encountered: