-
Notifications
You must be signed in to change notification settings - Fork 2
/
file-info
98 lines (98 loc) · 2.85 KB
/
file-info
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# Application location. Working directory of the project.
app {
# Directory containing application documentation.
documentation {
}
# Directory containing Java Development Kit (JDK).
java {
}
# Directory containing application libraries.
lib {
}
# Directory containing application plugins.
plugins {
}
# Directory containing application resources.
resources {
# Contains predefined audio mood tag values. Value per line. UTF8. For autocompletion.
moods.yml
# Contains predefined classes' fully qualified names. Value per line. UTF8. For autocompletion.
classes.yml
# Directory containing application icons.
icons {
# Icon, 16px.
icon16.png
# Icon, 24px.
icon24.png
# Icon, 32px.
icon32.png
# Icon, 48px.
icon48.png
# Icon, 128px.
icon128.png
# Icon, 256px.
icon256.png
# Icon, 512px.
icon512.png
# Icon, 512px.
icon512.ico
# Windows taskbar icon, previous song, 32px.
taskbar-1-icon.ico
# Windows taskbar icon, play/resume, 32px.
taskbar-2-icon.ico
# Windows taskbar icon, next song, 32px.
taskbar-3-icon.ico
}
}
# Directory containing application skins.
skins {
}
# Directory containing initial ui templates - persisted user ui bundled with the application.
templates {
}
# Directory containing all user data created by application use; such as settings, customizations, library, etc.
#
# Moving content of this directory to another application installation (of the same version) will effectively move
# the 'state' of the application to the new installation.
user {
# Directory containing persisted user ui and custom templates.
layouts {
# Last persisted application ui state.
current {
}
}
# Directory containing libraries. I.e., audio library, playlists, etc.
library {
}
# Directory for application logging output.
log {
}
# Directory for plugin user data.
plugins {
}
# Both temporary and home directory (`java.io.tmpdir` and `user.home` redirect here).
#
# It is safe to delete all contents (when application is not running).
tmp {
}
# Directory for widget user data.
widgets {
}
# File for application configuration.
application.json
}
# Optional directory containing Vlc player installation.
vlc {
}
# Directory containing widgets - source files, class files and widget's resources.
widgets {
}
# File containing application source code and main class. Executed by java.exe when started.
SpitPlayer.jar
# Windows executable file that opens this application as gui application.
SpitPlayer.com
# Windows executable file that opens this application as console application.
SpitPlayer.exe
# Linux/Mac executable file that opens this application.
SpitPlayer.sh
}