QOL changes

added opening the source url, and opening playlist folders, fixed ugly icons
This commit is contained in:
bucket
2026-02-26 21:20:48 +01:00
parent 38655756e3
commit 2be692e55c
27 changed files with 91 additions and 42 deletions
+16
View File
@@ -0,0 +1,16 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using ATL;
using Godot;
public partial class SongSource : Node{
public String TryGetSongUrl(String path){
Track theTrack = new(path);
if (theTrack.AdditionalFields.TryGetValue("comment", out string value)){
return value;
}
return "";
}
}