We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fb50d5 commit e42e664Copy full SHA for e42e664
src/com/joelchristophel/sourceradio/Playlist.java
@@ -56,7 +56,9 @@ public class Playlist implements Closeable {
56
57
public static void main(String[] args) {
58
System.out.println();
59
- System.out.println("**** SourceRadio ****");
+ String version = Playlist.class.getPackage().getImplementationVersion();
60
+ version = version == null ? "" : " v" + version;
61
+ System.out.println("**** SourceRadio" + version + " ****");
62
63
List<String> argsList = args == null ? new ArrayList<String>() : new ArrayList(Arrays.asList(args));
64
if (argsList.contains("-d")) { // Restore default properties
0 commit comments