pax_global_header 0000666 0000000 0000000 00000000064 12660066715 0014523 g ustar 00root root 0000000 0000000 52 comment=e4439162474657363dfd0f4b72fce54fc201644b
silverjuke-16.2.3/ 0000775 0000000 0000000 00000000000 12660066715 0013777 5 ustar 00root root 0000000 0000000 silverjuke-16.2.3/.gitattributes 0000664 0000000 0000000 00000000461 12660066715 0016673 0 ustar 00root root 0000000 0000000 # normal text files should contain a simple LF lineend, the following settings
# ensures this even if the user has not set core.autocrlf.
* text=auto
# binary files should be detected by git, however, to be sure, you can add them here explictly
*.png binary
*.jpg binary
*.gif binary
*.ico binary
silverjuke-16.2.3/.gitignore 0000664 0000000 0000000 00000001145 12660066715 0015770 0 ustar 00root root 0000000 0000000 # silverjuke .gitignore file
# ignore backup files
*~
# ignore build temporary files
*.o
.deps
.dirstamp
# ignore codeblocks project files and build directories
*.cbp
*.depend
*.layout
/bin/
/obj/
# ignore autotools temporaries
autoscan.log
cleanup.sh
config.log
config.status
configure.scan
Makefile
/autom4te.cache/
/config.h
/stamp-*
/silverjuke
silverjuke*.tar.gz
silverjuke*.tar.xz
# ignore generated files
Makefile.in
/aclocal.m4
/compile
/configure
/install-sh
/missing
po/*\.gmo
po/stamp-po
po/POTFILES
po/remove-potcdate.sed
po/*.gmo
po/*.insert-header
silverjuke.1
# ignore other files
.DS_Store
silverjuke-16.2.3/ABOUT-NLS 0000664 0000000 0000000 00000272155 12660066715 0015242 0 ustar 00root root 0000000 0000000 1 Notes on the Free Translation Project
***************************************
Free software is going international! The Free Translation Project is
a way to get maintainers of free software, translators, and users all
together, so that free software will gradually become able to speak many
languages. A few packages already provide translations for their
messages.
If you found this `ABOUT-NLS' file inside a distribution, you may
assume that the distributed package does use GNU `gettext' internally,
itself available at your nearest GNU archive site. But you do _not_
need to install GNU `gettext' prior to configuring, installing or using
this package with messages translated.
Installers will find here some useful hints. These notes also
explain how users should proceed for getting the programs to use the
available translations. They tell how people wanting to contribute and
work on translations can contact the appropriate team.
When reporting bugs in the `intl/' directory or bugs which may be
related to internationalization, you should tell about the version of
`gettext' which is used. The information can be found in the
`intl/VERSION' file, in internationalized packages.
1.1 Quick configuration advice
==============================
If you want to exploit the full power of internationalization, you
should configure it using
./configure --with-included-gettext
to force usage of internationalizing routines provided within this
package, despite the existence of internationalizing capabilities in the
operating system where this package is being installed. So far, only
the `gettext' implementation in the GNU C library version 2 provides as
many features (such as locale alias, message inheritance, automatic
charset conversion or plural form handling) as the implementation here.
It is also not possible to offer this additional functionality on top
of a `catgets' implementation. Future versions of GNU `gettext' will
very likely convey even more functionality. So it might be a good idea
to change to GNU `gettext' as soon as possible.
So you need _not_ provide this option if you are using GNU libc 2 or
you have installed a recent copy of the GNU gettext package with the
included `libintl'.
1.2 INSTALL Matters
===================
Some packages are "localizable" when properly installed; the programs
they contain can be made to speak your own native language. Most such
packages use GNU `gettext'. Other packages have their own ways to
internationalization, predating GNU `gettext'.
By default, this package will be installed to allow translation of
messages. It will automatically detect whether the system already
provides the GNU `gettext' functions. If not, the included GNU
`gettext' library will be used. This library is wholly contained
within this package, usually in the `intl/' subdirectory, so prior
installation of the GNU `gettext' package is _not_ required.
Installers may use special options at configuration time for changing
the default behaviour. The commands:
./configure --with-included-gettext
./configure --disable-nls
will, respectively, bypass any pre-existing `gettext' to use the
internationalizing routines provided within this package, or else,
_totally_ disable translation of messages.
When you already have GNU `gettext' installed on your system and run
configure without an option for your new package, `configure' will
probably detect the previously built and installed `libintl.a' file and
will decide to use this. This might not be desirable. You should use
the more recent version of the GNU `gettext' library. I.e. if the file
`intl/VERSION' shows that the library which comes with this package is
more recent, you should use
./configure --with-included-gettext
to prevent auto-detection.
The configuration process will not test for the `catgets' function
and therefore it will not be used. The reason is that even an
emulation of `gettext' on top of `catgets' could not provide all the
extensions of the GNU `gettext' library.
Internationalized packages usually have many `po/LL.po' files, where
LL gives an ISO 639 two-letter code identifying the language. Unless
translations have been forbidden at `configure' time by using the
`--disable-nls' switch, all available translations are installed
together with the package. However, the environment variable `LINGUAS'
may be set, prior to configuration, to limit the installed set.
`LINGUAS' should then contain a space separated list of two-letter
codes, stating which languages are allowed.
1.3 Using This Package
======================
As a user, if your language has been installed for this package, you
only have to set the `LANG' environment variable to the appropriate
`LL_CC' combination. If you happen to have the `LC_ALL' or some other
`LC_xxx' environment variables set, you should unset them before
setting `LANG', otherwise the setting of `LANG' will not have the
desired effect. Here `LL' is an ISO 639 two-letter language code, and
`CC' is an ISO 3166 two-letter country code. For example, let's
suppose that you speak German and live in Germany. At the shell
prompt, merely execute `setenv LANG de_DE' (in `csh'),
`export LANG; LANG=de_DE' (in `sh') or `export LANG=de_DE' (in `bash').
This can be done from your `.login' or `.profile' file, once and for
all.
You might think that the country code specification is redundant.
But in fact, some languages have dialects in different countries. For
example, `de_AT' is used for Austria, and `pt_BR' for Brazil. The
country code serves to distinguish the dialects.
The locale naming convention of `LL_CC', with `LL' denoting the
language and `CC' denoting the country, is the one use on systems based
on GNU libc. On other systems, some variations of this scheme are
used, such as `LL' or `LL_CC.ENCODING'. You can get the list of
locales supported by your system for your language by running the
command `locale -a | grep '^LL''.
Not all programs have translations for all languages. By default, an
English message is shown in place of a nonexistent translation. If you
understand other languages, you can set up a priority list of languages.
This is done through a different environment variable, called
`LANGUAGE'. GNU `gettext' gives preference to `LANGUAGE' over `LANG'
for the purpose of message handling, but you still need to have `LANG'
set to the primary language; this is required by other parts of the
system libraries. For example, some Swedish users who would rather
read translations in German than English for when Swedish is not
available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'.
Special advice for Norwegian users: The language code for Norwegian
bokma*l changed from `no' to `nb' recently (in 2003). During the
transition period, while some message catalogs for this language are
installed under `nb' and some older ones under `no', it's recommended
for Norwegian users to set `LANGUAGE' to `nb:no' so that both newer and
older translations are used.
In the `LANGUAGE' environment variable, but not in the `LANG'
environment variable, `LL_CC' combinations can be abbreviated as `LL'
to denote the language's main dialect. For example, `de' is equivalent
to `de_DE' (German as spoken in Germany), and `pt' to `pt_PT'
(Portuguese as spoken in Portugal) in this context.
1.4 Translating Teams
=====================
For the Free Translation Project to be a success, we need interested
people who like their own language and write it well, and who are also
able to synergize with other translators speaking the same language.
Each translation team has its own mailing list. The up-to-date list of
teams can be found at the Free Translation Project's homepage,
`http://translationproject.org/', in the "Teams" area.
If you'd like to volunteer to _work_ at translating messages, you
should become a member of the translating team for your own language.
The subscribing address is _not_ the same as the list itself, it has
`-request' appended. For example, speakers of Swedish can send a
message to `sv-request@li.org', having this message body:
subscribe
Keep in mind that team members are expected to participate
_actively_ in translations, or at solving translational difficulties,
rather than merely lurking around. If your team does not exist yet and
you want to start one, or if you are unsure about what to do or how to
get started, please write to `coordinator@translationproject.org' to
reach the coordinator for all translator teams.
The English team is special. It works at improving and uniformizing
the terminology in use. Proven linguistic skills are praised more than
programming skills, here.
1.5 Available Packages
======================
Languages are not equally supported in all packages. The following
matrix shows the current state of internationalization, as of May 2010.
The matrix shows, in regard of each package, for which languages PO
files have been submitted to translation coordination, with a
translation percentage of at least 50%.
Ready PO files af am ar as ast az be be@latin bg bn_IN bs ca crh
+---------------------------------------------------+
a2ps | [] [] |
aegis | |
ant-phone | |
anubis | |
aspell | [] [] |
bash | |
bfd | |
bibshelf | [] |
binutils | |
bison | |
bison-runtime | [] |
bluez-pin | [] [] |
bombono-dvd | |
buzztard | |
cflow | |
clisp | |
coreutils | [] [] |
cpio | |
cppi | |
cpplib | [] |
cryptsetup | |
dfarc | |
dialog | [] [] |
dico | |
diffutils | [] |
dink | |
doodle | |
e2fsprogs | [] |
enscript | [] |
exif | |
fetchmail | [] |
findutils | [] |
flex | [] |
freedink | |
gas | |
gawk | [] [] |
gcal | [] |
gcc | |
gettext-examples | [] [] [] [] |
gettext-runtime | [] [] [] |
gettext-tools | [] [] |
gip | [] |
gjay | |
gliv | [] |
glunarclock | [] [] |
gnubiff | |
gnucash | [] |
gnuedu | |
gnulib | |
gnunet | |
gnunet-gtk | |
gnutls | |
gold | |
gpe-aerial | |
gpe-beam | |
gpe-bluetooth | |
gpe-calendar | |
gpe-clock | [] |
gpe-conf | |
gpe-contacts | |
gpe-edit | |
gpe-filemanager | |
gpe-go | |
gpe-login | |
gpe-ownerinfo | [] |
gpe-package | |
gpe-sketchbook | |
gpe-su | [] |
gpe-taskmanager | [] |
gpe-timesheet | [] |
gpe-today | [] |
gpe-todo | |
gphoto2 | |
gprof | [] |
gpsdrive | |
gramadoir | |
grep | |
grub | [] [] |
gsasl | |
gss | |
gst-plugins-bad | [] |
gst-plugins-base | [] |
gst-plugins-good | [] |
gst-plugins-ugly | [] |
gstreamer | [] [] [] |
gtick | |
gtkam | [] |
gtkorphan | [] |
gtkspell | [] [] [] |
gutenprint | |
hello | [] |
help2man | |
hylafax | |
idutils | |
indent | [] [] |
iso_15924 | |
iso_3166 | [] [] [] [] [] [] [] [] |
iso_3166_2 | |
iso_4217 | |
iso_639 | [] [] [] [] [] |
iso_639_3 | [] |
jwhois | |
kbd | |
keytouch | [] |
keytouch-editor | |
keytouch-keyboa... | [] |
klavaro | [] |
latrine | |
ld | [] |
leafpad | [] [] |
libc | [] [] |
libexif | () |
libextractor | |
libgnutls | |
libgpewidget | |
libgpg-error | |
libgphoto2 | |
libgphoto2_port | |
libgsasl | |
libiconv | [] |
libidn | |
lifelines | |
liferea | [] [] |
lilypond | |
linkdr | [] |
lordsawar | |
lprng | |
lynx | [] |
m4 | |
mailfromd | |
mailutils | |
make | |
man-db | |
man-db-manpages | |
minicom | |
mkisofs | |
myserver | |
nano | [] [] |
opcodes | |
parted | |
pies | |
popt | |
psmisc | |
pspp | [] |
pwdutils | |
radius | [] |
recode | [] [] |
rosegarden | |
rpm | |
rush | |
sarg | |
screem | |
scrollkeeper | [] [] [] |
sed | [] [] |
sharutils | [] [] |
shishi | |
skencil | |
solfege | |
solfege-manual | |
soundtracker | |
sp | |
sysstat | |
tar | [] |
texinfo | |
tin | |
unicode-han-tra... | |
unicode-transla... | |
util-linux-ng | [] |
vice | |
vmm | |
vorbis-tools | |
wastesedge | |
wdiff | |
wget | [] [] |
wyslij-po | |
xchat | [] [] [] [] |
xdg-user-dirs | [] [] [] [] [] [] [] [] [] |
xkeyboard-config | [] [] [] |
+---------------------------------------------------+
af am ar as ast az be be@latin bg bn_IN bs ca crh
6 0 2 3 19 1 11 3 28 3 1 38 5
cs da de el en en_GB en_ZA eo es et eu fa fi
+-------------------------------------------------+
a2ps | [] [] [] [] [] [] [] [] |
aegis | [] [] [] |
ant-phone | [] () |
anubis | [] [] [] |
aspell | [] [] [] [] [] |
bash | [] [] [] [] |
bfd | [] [] |
bibshelf | [] [] [] [] |
binutils | [] [] |
bison | [] [] [] |
bison-runtime | [] [] [] [] [] |
bluez-pin | [] [] [] [] [] [] [] |
bombono-dvd | [] [] |
buzztard | [] [] [] |
cflow | [] [] [] |
clisp | [] [] [] [] |
coreutils | [] [] [] [] |
cpio | [] |
cppi | [] |
cpplib | [] [] [] |
cryptsetup | [] |
dfarc | [] [] [] [] |
dialog | [] [] [] [] [] |
dico | |
diffutils | [] [] [] [] [] [] [] |
dink | [] [] [] |
doodle | [] |
e2fsprogs | [] [] [] |
enscript | [] [] [] |
exif | () [] [] [] |
fetchmail | [] [] () [] [] [] |
findutils | [] [] [] [] |
flex | [] [] [] |
freedink | [] [] [] [] |
gas | [] |
gawk | [] [] [] |
gcal | [] |
gcc | [] [] |
gettext-examples | [] [] [] [] [] |
gettext-runtime | [] [] [] [] [] |
gettext-tools | [] [] [] |
gip | [] [] [] [] [] |
gjay | [] [] |
gliv | [] [] [] [] |
glunarclock | [] [] [] |
gnubiff | () |
gnucash | [] () () () () () |
gnuedu | [] [] |
gnulib | [] [] [] |
gnunet | |
gnunet-gtk | [] |
gnutls | [] [] |
gold | [] [] |
gpe-aerial | [] [] [] [] [] |
gpe-beam | [] [] [] [] [] |
gpe-bluetooth | [] [] [] |
gpe-calendar | [] [] |
gpe-clock | [] [] [] [] [] |
gpe-conf | [] [] [] [] |
gpe-contacts | [] [] [] [] |
gpe-edit | [] [] [] |
gpe-filemanager | [] [] [] [] |
gpe-go | [] [] [] [] [] |
gpe-login | [] [] [] |
gpe-ownerinfo | [] [] [] [] [] |
gpe-package | [] [] [] [] |
gpe-sketchbook | [] [] [] [] [] |
gpe-su | [] [] [] [] [] |
gpe-taskmanager | [] [] [] [] [] |
gpe-timesheet | [] [] [] [] [] |
gpe-today | [] [] [] [] [] |
gpe-todo | [] [] [] [] |
gphoto2 | [] [] () [] [] [] [] |
gprof | [] [] [] [] |
gpsdrive | [] [] [] |
gramadoir | [] [] [] |
grep | [] [] |
grub | [] [] [] |
gsasl | [] [] |
gss | [] |
gst-plugins-bad | [] [] [] [] [] [] |
gst-plugins-base | [] [] [] [] [] [] |
gst-plugins-good | [] [] [] [] [] [] [] |
gst-plugins-ugly | [] [] [] [] [] [] [] |
gstreamer | [] [] [] [] [] [] |
gtick | [] () [] [] |
gtkam | [] [] () [] [] |
gtkorphan | [] [] [] [] |
gtkspell | [] [] [] [] [] [] [] [] |
gutenprint | [] [] [] [] |
hello | [] [] [] [] [] |
help2man | [] [] |
hylafax | [] [] |
idutils | [] [] [] |
indent | [] [] [] [] [] [] [] [] |
iso_15924 | [] () [] [] [] |
iso_3166 | [] [] [] () [] [] [] () [] |
iso_3166_2 | () |
iso_4217 | [] [] [] () [] [] [] |
iso_639 | [] [] [] () [] [] [] |
iso_639_3 | |
jwhois | [] [] |
kbd | [] [] [] [] [] |
keytouch | [] [] [] |
keytouch-editor | [] [] [] |
keytouch-keyboa... | [] [] |
klavaro | [] [] [] [] |
latrine | [] () [] |
ld | [] [] [] |
leafpad | [] [] [] [] [] [] [] |
libc | [] [] [] [] [] |
libexif | [] [] () |
libextractor | |
libgnutls | [] |
libgpewidget | [] [] [] |
libgpg-error | [] [] |
libgphoto2 | [] () |
libgphoto2_port | [] () [] |
libgsasl | [] |
libiconv | [] [] [] [] [] [] |
libidn | [] [] [] [] |
lifelines | [] () |
liferea | [] [] [] [] [] |
lilypond | [] [] [] [] |
linkdr | [] [] [] [] |
lordsawar | [] |
lprng | |
lynx | [] [] [] [] |
m4 | [] [] [] [] [] |
mailfromd | |
mailutils | [] |
make | [] [] [] [] |
man-db | |
man-db-manpages | |
minicom | [] [] [] [] [] |
mkisofs | [] |
myserver | |
nano | [] [] [] [] |
opcodes | [] [] [] |
parted | [] [] |
pies | |
popt | [] [] [] [] [] [] |
psmisc | [] [] [] [] |
pspp | [] |
pwdutils | [] |
radius | [] |
recode | [] [] [] [] [] [] [] |
rosegarden | () () () () |
rpm | [] [] [] |
rush | |
sarg | |
screem | |
scrollkeeper | [] [] [] [] [] [] |
sed | [] [] [] [] [] [] [] |
sharutils | [] [] [] [] [] |
shishi | |
skencil | [] () [] |
solfege | [] [] [] [] |
solfege-manual | [] [] |
soundtracker | [] [] [] |
sp | [] |
sysstat | [] [] [] [] |
tar | [] [] [] [] [] |
texinfo | [] [] [] |
tin | [] [] |
unicode-han-tra... | |
unicode-transla... | |
util-linux-ng | [] [] [] [] [] |
vice | () () |
vmm | [] |
vorbis-tools | [] [] |
wastesedge | [] |
wdiff | [] [] [] |
wget | [] [] [] [] |
wyslij-po | [] |
xchat | [] [] [] [] [] [] |
xdg-user-dirs | [] [] [] [] [] [] [] [] [] |
xkeyboard-config | [] [] [] [] [] [] |
+-------------------------------------------------+
cs da de el en en_GB en_ZA eo es et eu fa fi
64 105 117 18 1 8 0 28 89 18 19 0 104
fr ga gl gu he hi hr hu hy id is it ja ka kn
+------------------------------------------------+
a2ps | [] [] [] |
aegis | [] [] |
ant-phone | [] [] |
anubis | [] [] [] |
aspell | [] [] [] [] |
bash | [] [] [] |
bfd | [] [] |
bibshelf | [] [] [] [] |
binutils | [] [] |
bison | [] [] [] |
bison-runtime | [] [] [] [] [] |
bluez-pin | [] [] [] [] [] [] [] |
bombono-dvd | |
buzztard | [] |
cflow | [] [] |
clisp | [] |
coreutils | [] [] [] [] [] |
cpio | [] [] [] |
cppi | [] |
cpplib | [] [] |
cryptsetup | [] [] [] |
dfarc | [] [] |
dialog | [] [] [] [] [] [] [] |
dico | |
diffutils | [] [] [] [] [] [] [] [] |
dink | [] |
doodle | [] [] |
e2fsprogs | [] [] |
enscript | [] [] [] [] |
exif | [] [] [] [] [] |
fetchmail | [] [] [] [] |
findutils | [] [] [] [] [] |
flex | [] [] |
freedink | [] [] |
gas | [] [] |
gawk | [] [] [] [] () [] |
gcal | [] |
gcc | [] |
gettext-examples | [] [] [] [] [] [] |
gettext-runtime | [] [] [] [] [] |
gettext-tools | [] [] [] [] |
gip | [] [] [] [] [] |
gjay | |
gliv | () |
glunarclock | [] [] [] |
gnubiff | () [] () |
gnucash | () () () () [] |
gnuedu | [] [] |
gnulib | [] [] [] [] [] |
gnunet | |
gnunet-gtk | [] |
gnutls | [] [] |
gold | [] |
gpe-aerial | [] [] |
gpe-beam | [] [] [] |
gpe-bluetooth | [] [] [] |
gpe-calendar | [] |
gpe-clock | [] [] [] [] |
gpe-conf | [] [] [] |
gpe-contacts | [] [] [] |
gpe-edit | [] [] |
gpe-filemanager | [] [] [] |
gpe-go | [] [] [] [] |
gpe-login | [] [] |
gpe-ownerinfo | [] [] [] [] |
gpe-package | [] [] |
gpe-sketchbook | [] [] [] |
gpe-su | [] [] [] [] [] |
gpe-taskmanager | [] [] [] [] |
gpe-timesheet | [] [] [] [] |
gpe-today | [] [] [] [] [] [] |
gpe-todo | [] [] |
gphoto2 | [] [] [] [] [] |
gprof | [] [] [] |
gpsdrive | [] [] [] |
gramadoir | [] [] [] |
grep | [] |
grub | [] [] [] |
gsasl | [] [] [] [] |
gss | [] [] [] [] |
gst-plugins-bad | [] [] [] [] |
gst-plugins-base | [] [] [] [] [] |
gst-plugins-good | [] [] [] [] [] |
gst-plugins-ugly | [] [] [] [] [] |
gstreamer | [] [] [] [] |
gtick | [] [] [] [] |
gtkam | [] [] [] [] [] |
gtkorphan | [] [] [] |
gtkspell | [] [] [] [] [] [] [] [] |
gutenprint | [] [] [] |
hello | [] [] |
help2man | [] |
hylafax | [] |
idutils | [] [] [] [] [] |
indent | [] [] [] [] [] [] [] |
iso_15924 | () [] [] |
iso_3166 | () [] [] [] [] [] [] [] [] [] [] |
iso_3166_2 | () [] [] [] |
iso_4217 | () [] [] [] [] |
iso_639 | () [] [] [] [] [] [] [] |
iso_639_3 | () [] [] |
jwhois | [] [] [] [] |
kbd | [] [] |
keytouch | [] [] [] [] [] |
keytouch-editor | [] [] [] [] |
keytouch-keyboa... | [] [] [] [] |
klavaro | [] [] |
latrine | [] [] |
ld | [] [] [] |
leafpad | [] [] [] [] [] [] () |
libc | [] [] [] [] |
libexif | |
libextractor | |
libgnutls | [] [] |
libgpewidget | [] [] [] |
libgpg-error | [] [] |
libgphoto2 | [] [] [] |
libgphoto2_port | [] [] [] |
libgsasl | [] [] [] [] |
libiconv | [] [] [] [] [] |
libidn | [] [] [] |
lifelines | () |
liferea | [] [] [] [] |
lilypond | [] |
linkdr | [] [] [] [] |
lordsawar | |
lprng | [] |
lynx | [] [] [] [] [] |
m4 | [] [] [] [] [] |
mailfromd | |
mailutils | [] [] |
make | [] [] [] [] [] [] [] [] |
man-db | [] [] |
man-db-manpages | [] |
minicom | [] [] [] [] |
mkisofs | [] [] [] |
myserver | |
nano | [] [] [] [] [] |
opcodes | [] [] [] |
parted | [] [] [] [] |
pies | |
popt | [] [] [] [] [] [] [] [] |
psmisc | [] [] |
pspp | |
pwdutils | [] [] |
radius | [] [] |
recode | [] [] [] [] [] [] [] |
rosegarden | () () () () |
rpm | [] [] |
rush | |
sarg | [] |
screem | [] [] |
scrollkeeper | [] [] [] |
sed | [] [] [] [] [] [] [] |
sharutils | [] [] [] [] [] [] |
shishi | [] |
skencil | [] |
solfege | [] [] [] |
solfege-manual | [] [] |
soundtracker | [] [] |
sp | [] () |
sysstat | [] [] [] [] |
tar | [] [] [] [] [] [] |
texinfo | [] [] [] [] |
tin | [] |
unicode-han-tra... | |
unicode-transla... | [] [] |
util-linux-ng | [] [] [] [] [] |
vice | () () () |
vmm | [] |
vorbis-tools | [] |
wastesedge | () () |
wdiff | |
wget | [] [] [] [] [] [] [] |
wyslij-po | [] [] |
xchat | [] [] [] [] [] [] [] [] |
xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] [] |
xkeyboard-config | [] [] [] [] |
+------------------------------------------------+
fr ga gl gu he hi hr hu hy id is it ja ka kn
121 53 20 4 8 2 5 53 2 120 5 83 66 0 4
ko ku ky lg lt lv mk ml mn mr ms mt nb nds ne
+-----------------------------------------------+
a2ps | [] |
aegis | |
ant-phone | |
anubis | [] [] |
aspell | [] |
bash | |
bfd | |
bibshelf | [] [] |
binutils | |
bison | [] |
bison-runtime | [] [] [] [] [] |
bluez-pin | [] [] [] [] [] |
bombono-dvd | |
buzztard | |
cflow | |
clisp | |
coreutils | [] |
cpio | |
cppi | |
cpplib | |
cryptsetup | |
dfarc | [] |
dialog | [] [] [] [] [] |
dico | |
diffutils | [] [] |
dink | |
doodle | |
e2fsprogs | |
enscript | |
exif | [] |
fetchmail | |
findutils | |
flex | |
freedink | [] |
gas | |
gawk | |
gcal | |
gcc | |
gettext-examples | [] [] [] [] |
gettext-runtime | [] |
gettext-tools | [] |
gip | [] [] |
gjay | |
gliv | |
glunarclock | [] |
gnubiff | |
gnucash | () () () () |
gnuedu | |
gnulib | |
gnunet | |
gnunet-gtk | |
gnutls | [] |
gold | |
gpe-aerial | [] |
gpe-beam | [] |
gpe-bluetooth | [] [] |
gpe-calendar | [] |
gpe-clock | [] [] [] [] [] |
gpe-conf | [] [] |
gpe-contacts | [] [] |
gpe-edit | [] |
gpe-filemanager | [] [] |
gpe-go | [] [] [] |
gpe-login | [] |
gpe-ownerinfo | [] [] |
gpe-package | [] [] |
gpe-sketchbook | [] [] |
gpe-su | [] [] [] [] [] [] |
gpe-taskmanager | [] [] [] [] [] [] |
gpe-timesheet | [] [] |
gpe-today | [] [] [] [] |
gpe-todo | [] [] |
gphoto2 | |
gprof | [] |
gpsdrive | |
gramadoir | |
grep | |
grub | |
gsasl | |
gss | |
gst-plugins-bad | [] [] |
gst-plugins-base | [] [] |
gst-plugins-good | [] [] |
gst-plugins-ugly | [] [] [] [] [] |
gstreamer | |
gtick | |
gtkam | [] |
gtkorphan | [] [] |
gtkspell | [] [] [] [] [] [] [] |
gutenprint | |
hello | [] [] [] |
help2man | |
hylafax | |
idutils | |
indent | |
iso_15924 | [] [] |
iso_3166 | [] [] () [] [] [] [] [] |
iso_3166_2 | |
iso_4217 | [] [] |
iso_639 | [] [] |
iso_639_3 | [] |
jwhois | [] |
kbd | |
keytouch | [] |
keytouch-editor | [] |
keytouch-keyboa... | [] |
klavaro | [] |
latrine | [] |
ld | |
leafpad | [] [] [] |
libc | [] |
libexif | |
libextractor | |
libgnutls | [] |
libgpewidget | [] [] |
libgpg-error | |
libgphoto2 | |
libgphoto2_port | |
libgsasl | |
libiconv | |
libidn | |
lifelines | |
liferea | |
lilypond | |
linkdr | |
lordsawar | |
lprng | |
lynx | |
m4 | |
mailfromd | |
mailutils | |
make | [] |
man-db | |
man-db-manpages | |
minicom | [] |
mkisofs | |
myserver | |
nano | [] [] |
opcodes | |
parted | |
pies | |
popt | [] [] [] |
psmisc | |
pspp | |
pwdutils | |
radius | |
recode | |
rosegarden | |
rpm | |
rush | |
sarg | |
screem | |
scrollkeeper | [] [] |
sed | |
sharutils | |
shishi | |
skencil | |
solfege | [] |
solfege-manual | |
soundtracker | |
sp | |
sysstat | [] |
tar | [] |
texinfo | [] |
tin | |
unicode-han-tra... | |
unicode-transla... | |
util-linux-ng | |
vice | |
vmm | |
vorbis-tools | |
wastesedge | |
wdiff | |
wget | [] |
wyslij-po | |
xchat | [] [] [] |
xdg-user-dirs | [] [] [] [] [] [] [] [] |
xkeyboard-config | [] [] [] |
+-----------------------------------------------+
ko ku ky lg lt lv mk ml mn mr ms mt nb nds ne
20 5 10 1 12 48 4 2 2 4 24 10 19 3 1
nl nn or pa pl ps pt pt_BR ro ru rw sk sl sq sr
+---------------------------------------------------+
a2ps | [] [] [] [] [] [] [] [] |
aegis | [] [] [] |
ant-phone | [] [] |
anubis | [] [] [] |
aspell | [] [] [] [] [] |
bash | [] [] |
bfd | [] |
bibshelf | [] [] |
binutils | [] [] |
bison | [] [] [] |
bison-runtime | [] [] [] [] [] [] [] |
bluez-pin | [] [] [] [] [] [] [] [] |
bombono-dvd | [] () |
buzztard | [] [] |
cflow | [] |
clisp | [] [] |
coreutils | [] [] [] [] [] [] |
cpio | [] [] [] |
cppi | [] |
cpplib | [] |
cryptsetup | [] |
dfarc | [] |
dialog | [] [] [] [] |
dico | [] |
diffutils | [] [] [] [] [] [] |
dink | () |
doodle | [] [] |
e2fsprogs | [] [] |
enscript | [] [] [] [] [] |
exif | [] [] [] () [] |
fetchmail | [] [] [] [] |
findutils | [] [] [] [] [] |
flex | [] [] [] [] [] |
freedink | [] [] |
gas | |
gawk | [] [] [] [] |
gcal | |
gcc | [] |
gettext-examples | [] [] [] [] [] [] [] [] |
gettext-runtime | [] [] [] [] [] [] [] [] [] |
gettext-tools | [] [] [] [] [] [] |
gip | [] [] [] [] [] |
gjay | |
gliv | [] [] [] [] [] [] |
glunarclock | [] [] [] [] [] |
gnubiff | [] () |
gnucash | [] () () () |
gnuedu | [] |
gnulib | [] [] [] [] |
gnunet | |
gnunet-gtk | |
gnutls | [] [] |
gold | |
gpe-aerial | [] [] [] [] [] [] [] |
gpe-beam | [] [] [] [] [] [] [] |
gpe-bluetooth | [] [] |
gpe-calendar | [] [] [] [] |
gpe-clock | [] [] [] [] [] [] [] [] |
gpe-conf | [] [] [] [] [] [] [] |
gpe-contacts | [] [] [] [] [] |
gpe-edit | [] [] [] |
gpe-filemanager | [] [] [] |
gpe-go | [] [] [] [] [] [] [] [] |
gpe-login | [] [] |
gpe-ownerinfo | [] [] [] [] [] [] [] [] |
gpe-package | [] [] |
gpe-sketchbook | [] [] [] [] [] [] [] |
gpe-su | [] [] [] [] [] [] [] [] |
gpe-taskmanager | [] [] [] [] [] [] [] [] |
gpe-timesheet | [] [] [] [] [] [] [] [] |
gpe-today | [] [] [] [] [] [] [] [] |
gpe-todo | [] [] [] [] [] |
gphoto2 | [] [] [] [] [] [] [] [] |
gprof | [] [] [] |
gpsdrive | [] [] |
gramadoir | [] [] |
grep | [] [] [] [] |
grub | [] [] [] |
gsasl | [] [] [] [] |
gss | [] [] [] |
gst-plugins-bad | [] [] [] [] [] |
gst-plugins-base | [] [] [] [] [] |
gst-plugins-good | [] [] [] [] [] |
gst-plugins-ugly | [] [] [] [] [] [] |
gstreamer | [] [] [] [] [] |
gtick | [] [] [] |
gtkam | [] [] [] [] [] [] |
gtkorphan | [] |
gtkspell | [] [] [] [] [] [] [] [] [] [] |
gutenprint | [] [] |
hello | [] [] [] [] |
help2man | [] [] |
hylafax | [] |
idutils | [] [] [] [] [] |
indent | [] [] [] [] [] [] [] |
iso_15924 | [] [] [] [] |
iso_3166 | [] [] [] [] [] () [] [] [] [] [] [] [] [] |
iso_3166_2 | [] [] [] |
iso_4217 | [] [] [] [] [] [] [] [] |
iso_639 | [] [] [] [] [] [] [] [] [] |
iso_639_3 | [] [] |
jwhois | [] [] [] [] |
kbd | [] [] [] |
keytouch | [] [] [] |
keytouch-editor | [] [] [] |
keytouch-keyboa... | [] [] [] |
klavaro | [] [] |
latrine | [] [] |
ld | |
leafpad | [] [] [] [] [] [] [] [] [] |
libc | [] [] [] [] |
libexif | [] [] () [] |
libextractor | |
libgnutls | [] [] |
libgpewidget | [] [] [] |
libgpg-error | [] [] |
libgphoto2 | [] [] |
libgphoto2_port | [] [] [] [] |
libgsasl | [] [] [] [] [] |
libiconv | [] [] [] [] [] |
libidn | [] [] |
lifelines | [] [] |
liferea | [] [] [] [] [] () () [] |
lilypond | [] |
linkdr | [] [] [] |
lordsawar | |
lprng | [] |
lynx | [] [] [] |
m4 | [] [] [] [] [] |
mailfromd | [] |
mailutils | [] |
make | [] [] [] [] |
man-db | [] [] [] |
man-db-manpages | [] [] [] |
minicom | [] [] [] [] |
mkisofs | [] [] [] |
myserver | |
nano | [] [] [] [] |
opcodes | [] [] |
parted | [] [] [] [] |
pies | [] |
popt | [] [] [] [] |
psmisc | [] [] [] |
pspp | [] [] |
pwdutils | [] |
radius | [] [] [] |
recode | [] [] [] [] [] [] [] [] |
rosegarden | () () |
rpm | [] [] [] |
rush | [] [] |
sarg | |
screem | |
scrollkeeper | [] [] [] [] [] [] [] [] |
sed | [] [] [] [] [] [] [] [] [] |
sharutils | [] [] [] [] |
shishi | [] |
skencil | [] [] |
solfege | [] [] [] [] |
solfege-manual | [] [] [] |
soundtracker | [] |
sp | |
sysstat | [] [] [] [] |
tar | [] [] [] [] |
texinfo | [] [] [] [] |
tin | [] |
unicode-han-tra... | |
unicode-transla... | |
util-linux-ng | [] [] [] [] [] |
vice | [] |
vmm | [] |
vorbis-tools | [] [] |
wastesedge | [] |
wdiff | [] [] |
wget | [] [] [] [] [] [] [] |
wyslij-po | [] [] [] |
xchat | [] [] [] [] [] [] [] [] [] |
xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] [] [] [] [] |
xkeyboard-config | [] [] [] [] [] |
+---------------------------------------------------+
nl nn or pa pl ps pt pt_BR ro ru rw sk sl sq sr
135 10 4 7 105 1 29 61 47 91 3 55 47 8 37
sv sw ta te tg th tr uk vi wa zh_CN zh_HK zh_TW
+---------------------------------------------------+
a2ps | [] [] [] [] [] | 27
aegis | [] | 9
ant-phone | [] [] [] [] | 9
anubis | [] [] [] [] | 15
aspell | [] [] [] | 20
bash | [] [] | 11
bfd | [] | 6
bibshelf | [] [] [] | 16
binutils | [] [] | 8
bison | [] [] | 12
bison-runtime | [] [] [] [] [] [] | 29
bluez-pin | [] [] [] [] [] [] [] [] | 37
bombono-dvd | [] | 4
buzztard | [] | 7
cflow | [] [] [] | 9
clisp | | 10
coreutils | [] [] [] [] | 22
cpio | [] [] [] [] [] [] | 13
cppi | [] [] | 5
cpplib | [] [] [] [] [] [] | 13
cryptsetup | [] [] | 7
dfarc | [] | 9
dialog | [] [] [] [] [] [] [] | 30
dico | [] | 2
diffutils | [] [] [] [] [] [] | 30
dink | | 4
doodle | [] [] | 7
e2fsprogs | [] [] [] | 11
enscript | [] [] [] [] | 17
exif | [] [] [] | 16
fetchmail | [] [] [] | 17
findutils | [] [] [] [] [] | 20
flex | [] [] [] [] | 15
freedink | [] | 10
gas | [] | 4
gawk | [] [] [] [] | 18
gcal | [] [] | 5
gcc | [] [] [] | 7
gettext-examples | [] [] [] [] [] [] [] | 34
gettext-runtime | [] [] [] [] [] [] [] | 30
gettext-tools | [] [] [] [] [] [] | 22
gip | [] [] [] [] | 22
gjay | [] | 3
gliv | [] [] [] | 14
glunarclock | [] [] [] [] [] | 19
gnubiff | [] [] | 4
gnucash | () [] () () | 9
gnuedu | [] [] | 7
gnulib | [] [] [] [] | 16
gnunet | [] | 1
gnunet-gtk | [] [] [] | 5
gnutls | [] [] [] | 10
gold | [] | 4
gpe-aerial | [] [] [] | 18
gpe-beam | [] [] [] | 19
gpe-bluetooth | [] [] [] | 13
gpe-calendar | [] [] [] [] | 12
gpe-clock | [] [] [] [] [] | 28
gpe-conf | [] [] [] [] | 20
gpe-contacts | [] [] [] | 17
gpe-edit | [] [] [] | 12
gpe-filemanager | [] [] [] [] | 16
gpe-go | [] [] [] [] [] | 25
gpe-login | [] [] [] | 11
gpe-ownerinfo | [] [] [] [] [] | 25
gpe-package | [] [] [] | 13
gpe-sketchbook | [] [] [] | 20
gpe-su | [] [] [] [] [] | 30
gpe-taskmanager | [] [] [] [] [] | 29
gpe-timesheet | [] [] [] [] [] | 25
gpe-today | [] [] [] [] [] [] | 30
gpe-todo | [] [] [] [] | 17
gphoto2 | [] [] [] [] [] | 24
gprof | [] [] [] | 15
gpsdrive | [] [] [] | 11
gramadoir | [] [] [] | 11
grep | [] [] [] | 10
grub | [] [] [] | 14
gsasl | [] [] [] [] | 14
gss | [] [] [] | 11
gst-plugins-bad | [] [] [] [] | 22
gst-plugins-base | [] [] [] [] [] | 24
gst-plugins-good | [] [] [] [] [] | 25
gst-plugins-ugly | [] [] [] [] [] | 29
gstreamer | [] [] [] [] | 22
gtick | [] [] [] | 13
gtkam | [] [] [] | 20
gtkorphan | [] [] [] | 14
gtkspell | [] [] [] [] [] [] [] [] [] | 45
gutenprint | [] | 10
hello | [] [] [] [] [] [] | 21
help2man | [] [] | 7
hylafax | [] | 5
idutils | [] [] [] [] | 17
indent | [] [] [] [] [] [] | 30
iso_15924 | () [] () [] [] | 16
iso_3166 | [] [] () [] [] () [] [] [] () | 53
iso_3166_2 | () [] () [] | 9
iso_4217 | [] () [] [] () [] [] | 26
iso_639 | [] [] [] () [] () [] [] [] [] | 38
iso_639_3 | [] () | 8
jwhois | [] [] [] [] [] | 16
kbd | [] [] [] [] [] | 15
keytouch | [] [] [] | 16
keytouch-editor | [] [] [] | 14
keytouch-keyboa... | [] [] [] | 14
klavaro | [] | 11
latrine | [] [] [] | 10
ld | [] [] [] [] | 11
leafpad | [] [] [] [] [] [] | 33
libc | [] [] [] [] [] | 21
libexif | [] () | 6
libextractor | [] | 1
libgnutls | [] [] [] | 9
libgpewidget | [] [] [] | 14
libgpg-error | [] [] [] | 9
libgphoto2 | [] [] | 8
libgphoto2_port | [] [] [] [] | 13
libgsasl | [] [] [] | 13
libiconv | [] [] [] [] | 21
libidn | () [] [] | 11
lifelines | [] | 4
liferea | [] [] [] | 21
lilypond | [] | 7
linkdr | [] [] [] [] [] | 17
lordsawar | | 1
lprng | [] | 3
lynx | [] [] [] [] | 17
m4 | [] [] [] [] | 19
mailfromd | [] [] | 3
mailutils | [] | 5
make | [] [] [] [] | 21
man-db | [] [] [] | 8
man-db-manpages | | 4
minicom | [] [] | 16
mkisofs | [] [] | 9
myserver | | 0
nano | [] [] [] [] | 21
opcodes | [] [] [] | 11
parted | [] [] [] [] [] | 15
pies | [] [] | 3
popt | [] [] [] [] [] [] | 27
psmisc | [] [] | 11
pspp | | 4
pwdutils | [] [] | 6
radius | [] [] | 9
recode | [] [] [] [] | 28
rosegarden | () | 0
rpm | [] [] [] | 11
rush | [] [] | 4
sarg | | 1
screem | [] | 3
scrollkeeper | [] [] [] [] [] | 27
sed | [] [] [] [] [] | 30
sharutils | [] [] [] [] [] | 22
shishi | [] | 3
skencil | [] [] | 7
solfege | [] [] [] [] | 16
solfege-manual | [] | 8
soundtracker | [] [] [] | 9
sp | [] | 3
sysstat | [] [] | 15
tar | [] [] [] [] [] [] | 23
texinfo | [] [] [] [] | 16
tin | | 4
unicode-han-tra... | | 0
unicode-transla... | | 2
util-linux-ng | [] [] [] [] | 20
vice | () () | 1
vmm | [] | 4
vorbis-tools | [] | 6
wastesedge | | 2
wdiff | [] [] | 7
wget | [] [] [] [] [] | 26
wyslij-po | [] [] | 8
xchat | [] [] [] [] [] [] | 36
xdg-user-dirs | [] [] [] [] [] [] [] [] [] | 60
xkeyboard-config | [] [] [] [] | 25
+---------------------------------------------------+
84 teams sv sw ta te tg th tr uk vi wa zh_CN zh_HK zh_TW
178 domains 119 1 3 2 0 10 66 50 155 17 97 7 41 2610
Some counters in the preceding matrix are higher than the number of
visible blocks let us expect. This is because a few extra PO files are
used for implementing regional variants of languages, or language
dialects.
For a PO file in the matrix above to be effective, the package to
which it applies should also have been internationalized and
distributed as such by its maintainer. There might be an observable
lag between the mere existence a PO file and its wide availability in a
distribution.
If May 2010 seems to be old, you may fetch a more recent copy of
this `ABOUT-NLS' file on most GNU archive sites. The most up-to-date
matrix with full percentage details can be found at
`http://translationproject.org/extra/matrix.html'.
1.6 Using `gettext' in new packages
===================================
If you are writing a freely available program and want to
internationalize it you are welcome to use GNU `gettext' in your
package. Of course you have to respect the GNU Library General Public
License which covers the use of the GNU `gettext' library. This means
in particular that even non-free programs can use `libintl' as a shared
library, whereas only free software can use `libintl' as a static
library or use modified versions of `libintl'.
Once the sources are changed appropriately and the setup can handle
the use of `gettext' the only thing missing are the translations. The
Free Translation Project is also available for packages which are not
developed inside the GNU project. Therefore the information given above
applies also for every other Free Software Project. Contact
`coordinator@translationproject.org' to make the `.pot' files available
to the translation teams.
silverjuke-16.2.3/CHANGES.md 0000664 0000000 0000000 00000131235 12660066715 0015376 0 ustar 00root root 0000000 0000000 Silverjuke Changes
================================================================================
V16.2 (14.02.2016)
================================================================================
- New: Native support for "projectM", a Milkdrop-esque visualization
- New "Video screen" menu with direct access to all relating options
- New: Video support for Linux
- New: "Crossfading" and "Automatic Volume" for Linux, Mac and Windows
- For the linux port, GSteamer is used by default
- The video screen is closed if another view is selected or by a simple click
- New command line option "--blackrect" to cover unused areas
- Bug fixes
V16.1 (12.01.2016)
================================================================================
- New: Mac OS X version
- New: Scripting and plugin-interface enabled by default
- New: Play Opus-files if possible
- New: INI-Switch to prepend zeros to track numbers, see file "user-guide"
- New: Read Winamp 5.6 genres
- New mouse wheel options at "Settings / Advanced"
- Show a warning before scripts are executed in Skins or via Drag'n'Drop
- All menu entries added by scripts go to the same place in the "Edit" menu
- Album view", "Cover view" and "List view" options in view menu
- Make "Skip Silence between tracks" work on Mac and Windows
- Bug fixes
V15.10 (05.12.2015)
================================================================================
- New "Resume" options at "Settings / Playback"
- New "Jingle" options at "Settings / Playback"
- New: Read and write ratings from MP3, MPC, FLAC and OGG-files
- New: "Columns" and "Display" options in view menu
- New "Shortcuts" page in the advanced settings
- Bug fixes
V15.9 (13.11.2015)
================================================================================
- New: "Limit Play Time" option
- New: The settings dialog opens with most recent page used
- New: INI-Switch "debug", see file "user-guide"
- Dialog "Automatic control/Further options" moved to a page in the main dialog
- Menu and settings dialog cleanup
- Bug fixes
V15.8 (27.10.2015)
================================================================================
- Play non-DRM AAC- and ALAC-m4a-files if supported by the operating system
- Bug fixes
V15.6 (14.10.2015)
================================================================================
- New: Add three more default skins
- New: Option to browse the help files locally
- Update artist info and cover search URLs
- Bug fixes
V15.4 (26.06.2015)
================================================================================
- Silverjuke core made open source, see github.com/r10s/silverjuke
- Source and feature cleanup, scripting disabled
- New: "My music library/Source options/Read hidden folders", defaults to "on"
- New: Read/write support for XSPF (pronounced "spiff") playlists
- New: Read support for iTunes playlists (*.xml)
- New: Read support for Windows Media Player playlists (*.wpl)
- New: Scripting: Dialog.show('saveplaylist')
- New: Virtual keyboards: "alt" keys may be locked
- New: Virtual keyboards: Allowing up to 32 different "alt"-keys
- New: The search field allows searching for single words, eg. "Stones Black"
will find "Rolling Stones - Paint it Black"
- New: "Settings/Advanced/Further options/Search: Search single words"
- New: New AutoPlay feature: Ignore tracks from music selection (eg. from "Worst
rated")
- New: New "Change password" button at "Settings/Kiosk mode/Start"
- New: Covers may contain unicode characters
- Playlists handling on network drives improved
- Using the default font for the Video/Karaoke/Visualization title
- Search: No longer searching for genre names by default; please use the context
menu for this purpose or enable the feature manually at "Settings/Advanced/
Further options/Search: Lookup genre on simple search"
- Fixed a bug with compressed ID3v2 frame headers
- Fixed a bug when loading skins
- Fixed a bug that prevents timers from unloaded scripts being stopped
- Fixed: Memory leak in "Settings/View/Skins/Menu/Update list"
- Fixed a problem with bad values assigned to program.repeat
V2.75-V3.05 (2009-2011)
================================================================================
- Special and testing versions not belonging to the Silverjuke core
V2.74 (09.04.2009)
================================================================================
- New: Allowing the cursor keys to be assigned to any command; same for other
basic keys
- New: Scripting: prelisten.volume property
- encodeURI() handles Unicode strings correctly
- Fixed a bug when redrawing skins
V2.73 (04.01.2009)
================================================================================
- New: AutoPlay regards the "Avoid boredom" settings
- New: Music selection: Playlists can be used for include/exclude rules
- New: font-attribute in box-tags
- New: Scripting: Program.visMode
- New: Scripting: Player.avoidBoredom
- New: Scripting: Program.getSelection() can return workspace or display
selections independently
- New: Display: Tracks moved due to the "Avoid boredom" settings are marked
- New: Display: Silverjuke shows the track cover now, see "Settings/Advanced/
Further options/Display: Preferred cover"
- New: New Option "Further options/Image cache: Regard file chances": If set,
covers will reflect changes made with external applications
- New: The command line parameters "--instance" and "--ini" may be combined with
other command options
- New: Support for UTF-16 encoded karaoke files and playlists andded
- Skinning: Different input-items in different layouts can have different font
colours and sizes
- Skinning: If-Tags: The condition "creditsystem" also works on startup
- Music selection: When using the "is set" operator, the unit choice is always
hidden
- Music selection: No more crashes when using multiple include/exclude rules
- List view: Improved handling of the cursor keys
- Fixed a bug with shaped skins returning from kiosk mode
- Scripting: Calling Player.stopAfterThisTrack or Player.stopAfterEachTrack
updates the belonging button states
V2.72 (05.10.2008)
================================================================================
- New: Large cover view: Alphanumeric sorting of the cover list
V2.71 (29.09.2008)
================================================================================
- New: Karaoke files can be used from within ZIP archives
V2.70 (28.09.2008)
================================================================================
- New: New option "Playback/Queue/Remove played tracks from queue"
- New: New option "Playback/Queue/Avoid boredom: No artist repetition"; this is
also regarded by "Avoid double tracks waiting in queue"
- New: New option "Playback/Automatic Control/Further options/Reset view after..
minutes of inactivity to .."
- New: "Kiosk mode/Functionality/Toggle elements": This option allows or forbids
users to toggle covers, enlarge displays, change columns etc. Replaces
"Enlarge display".
- New: "Kiosk mode/Functionality/Toggle time mode", "Search for genre",
"Unqueue" and "Zoom"
- New: "Further options/Kiosk mode: Maintenance password": When using a
password to exit the kiosk mode, an additional password can be defined here.
Entering this password, only the kiosk mode is ended, without eg. a shutdown.
- New: New option "My music library/Add source/Add a server containing music
files"
- New: New karaoke background option: "Use *.bg.jpg-files"
- New option: "Stop after each track", a shortcut can also be defined for this
- New: Cover view: Artist and album names can be shown below the covers (use the
little triangle in the upper left corner)
- New: Large cover view: After a little time, the enlarged cover is updated if
"Go to current track after .. minutes of inactivity" is enabled or if the
cover belonging to the current track was opened
- New: Genres, comments and ratings may be shown in the tracklist, see
"Settings/Advanced/Further options/Tracklist: Show genre", "Show comments",
"Show rating"; for longer comments, only the first 40 characters are shown
- New: New command line and DDE option --execute
- New: New option "Kiosk mode/Functionality/Repeat"
- New: New skin button-target "removePlayed"
- New: A shortcut can be assigned to "Remove played tracks from queue"
- New: Support for M3U8-playlists
- Tag editor/Split field: Empty destination fields are okay
- Large cover view: Sooner update if the cover belonging to the current track
was opened
- Large cover view: Reproducible sorting order of the cover list
- Fixed an issue with disappearing skins
- Kiosk mode: Enqueuing multiple tracks from the cover view is only possible if
the option "Enqueue multiple tracks" is selected
- Kiosk mode/Exit by clicking into two different corners: Only clicks not used
by the skin are consumed
- Save playlist: Remembering the last playlist format used
- Showing more music selections and genres in the search menu
- "Goto random" selects tracks in album and cover view
- Numpad: The "Cancel" key may be used to correct entered numbers
- Larger slider range for "Settings/View/Column width" and for "Settings/View/
Font size"
- Preserving manually entered genre names when updating of WAV-files
- Scripting: Remembering Program.autoPlay, Program.sleepMode and
Program.sleepMinutes between program starts
- Scripting: File.pos with negative values work as expected
- New: Scripting: Player.removePlayed
- Scripting: Scripts can be started by a double click to *.sj-files or by
dragging *.sjs-files to the main window
- Scripting: Proper order for added menu entries and buttons
- Scripting: Shortcuts can be defined for the script's menu entries, see
"Settings/Advanced/Further options/Shortcuts: Tools" if scripts are loaded
- New: Scripting: HttpRequest object
- New Scripting: Program.autoPlay, Program.lastUserInput, Program.layout,
Program.onUnload, Program.selectAll(), Program.setSkinText() and Program.zoom
- Scripting: Program.refreshWindows() can be used to update the workspace
- Scripting: Dialog.setValue() works for static text controls
- Scripting: Dialog.addButton() accepts any label for "ok" buttons
- Scripting: Dialogs use the virtual keyboard, if needed
- New: Scripting: Player.repeat, Player.shuffle, Player.stopAfterThisTrack and
Player.stopAfterEachTrack
- Scripting: Player.addAtPos() does no longer start playback implicitly; use
Player.play() for this purpose.
- New: Scripting: Rights.zoom
- Scripting: Rights.credits, Rights.editQueue, Rights.unqueue,
Rights.multiEnqueue are writable
- New skin condition "zoom"
- New skin attribute for box-tags: "id"
- New skin button-target: "stopAfterEachTrack"
- New skin option: h="opposite" assigns the height of a box to its width, also
works for w="opposite"
- In skin "Silveriness": When showing the display only, the display can still be
enlarged
- In skin "Silveriness": The transport buttons are available in all layouts
- Better support of some VST plugins that do not follow the specification
correctly
- Menu entries with the character "&" in their names are displayed correctly
- Unsupported characters in M3U-files are converted to the question mark
- LRC files in the lrcdb-format supported
- Spaces in Wikipedia-URLs handled correctly
- Fixed a visualization/miniplayer bug
- Correcting some details of VU meters etc. displayed by VST plugins
- Cover view: Fixed a bug that hides all covers under some circumstances
- Fixed a bug when renaming music selections was cancelled
- Album view: Fixed a sort order bug
- Karaoke background images: Fixed a bug that crashes Silverjuke when selecting
a folder without images
- Tag editor: Fixed a bug when editing the genre/group of the currently playing
FLAC track
- When dragging tracks to the display, the correct cursor is shown again (bug
introduced in 2.50)
- The very first track in shuffle mode becomes "marked as played"
- Quotes in music selection rules should work in any case now
V2.52 (22.06.2008)
================================================================================
- This is a special version for all c't magazine readers
- Congratulations to 25 years of c't from the Silverjuke Team!
V2.51 (18.01.2007)
================================================================================
- Kiosk mode monitor settings: Bug fixed for Windows 98
V2.50 (16.12.2006)
================================================================================
- New: New Karaoke options: Silverjuke shows the lyrics from CDG and LRC files
- New: New "Open playlist" dialog
- New: Dual head options: The karaoke/visualization screen may be shown on a
separate display (see "Settings/Kiosk mode/Monitors")
- New: Microphone support
- New: New option "Kiosk mode/Avoid double tracks waiting in queue"
- New: New speaker assignment options, see "Settings/FX/Menu/Setup/Speakers"
- New: New console, see "Tools/Console" in the menus
- New: New options "Disable screensaver" and "Disable power management" at
"Kiosk mode/Monitors/"
- New: New option "Kiosk mode/Functionality/Enqueue multiple tracks"
- New: New option "Playback/Automatic Control/Manually enqueued tracks interrupt
AutoPlay immediately"
- New: New option "Read hidden files" in the source options of a folder,
defaults to "on"; this is useful eg. for covers saved by the Windows Media
Player with the "hidden" attribute
- New: New option "Settings/Advanced/Further options/Display: Show AutoPlay"
which prepends automatically enqueued tracks in the display by the string
"AutoPlay"
- New: Separate FX settings for output, prelisten output, microphones and
AutoPlay
- New: Numpad: A full album can be enqueued using the track number "00"
- New: Scripting
- New: MP4 tags and embedded covers are read
- New: Option "Settings/Advanced/Further options/Menus: Use 'view' font" moved
to "Skins/Fonts"; the option affects menus and dialogs
- New: New option "Settings/Advanced/Further options/Start playback on enqueue"
- New: Scrolling long titles in the default visualization
- New: The mouse cursor can be hidden in kiosk mode, see "Kiosk mode/Virtual
keyboard"
- List view improved
- If the mouse is over the "A-Z" buttons, the wheel scrolls one letter up/down;
if the mouse is over the scrollbar, the whell scroll one page up/down/left/
right (can both be disabled at "Settings/Advanced/Further options/Mouse wheel:
Context-sensitive")
- Goto next/prev letter works if no "A-Z" buttons are defined
- The default freedb server is "freedb.freedb.org"
- Added case-insensitivity for german umlauts and special characters of other
languages
- Corrected the forwarding of UTF-8-encoded strings to the web services for
cover and information search
- If not yet done, existing databases are automatically converted to UTF-8
- Fixed a bug that lead to crashes when saving ID3-tags with bad genre data
- Different decoders that use the same extensions (eg. AAC and ALAC both use
.m4a) can be used at the same time now
- Allowing lower case Xiph-comment identifiers in Ogg-tags
- Avoid saving covers to themselves
- The visualization/karaoke screen may be placed anywhere outside the workspace
- Shortcuts can be defined for "Seek Forward" and "Seek backward"
- Remembering different zoom settings for the different views by default; this
behaviour can be disabled at "Further options/View: Same zoom in all views"
- For a better kiosk mode safety, we hide the taskbar and disable the "scroll
lock" key
- "Use hardware" is no longer enabled by default
- "Use system volume" options moved to "Settings/Advanced/Further options"
- "Automatic volume control" and "Fading" moved to "Playback/Automatic control"
- New skin target: Goto next/prev letter, "currTrack", "currTime", "currCredit"
- New skin attributes: "text", "hideCreditInDisplay", "visAutoStart"
- New skin condition: "creditsystem"
- Skinning: The text size in the search input controls scales to fit the real
size of the control
- Better recognition of visualization DLLs
- Numpad disabled outside kiosk and enable in kiosk works correctly
- Fixed a bug in the delay parameter of the effect "Echo 2"
- A click on "OK" in the virtual keyboard starts the search if "Settings/
Advanced/Further options/Search while typing" is off
V2.03 (31.07.2006)
================================================================================
- Fixed some bugs in the automatic volume detection for erroneous files
V2.02 (28.07.2006)
================================================================================
- The "Euro" sign is rendered correctly in the virtual keyboards
- The "Select cover" context menu shows all possible covers from all album
tracks
- Embedded images are read correctly from deprecated ID3 tags
- Sometimes the year was read incorrectly for deprecated ID3 tags; fixed now
- The "BPM" field is displayed correctly in the list view now
- Bug fixed when writing Ogg-Vorbis tags
V2.01 (14.06.2006)
================================================================================
- Fixed a little problem with the Unicode stuff
- Fixed a bug in the silence detection
V2.00 (13.06.2006)
================================================================================
- New: Mac OS X support
- New: Unicode support
- New: Two new views - please try the new icon below the vertical scrollbar
- New: Completely rewritten and improved sound processing:
- Native or system-based support for MPx, Ogg-Vorbis, FLAC, Musepack, WAV, WMA,
AIFF, Monkey's Audio, WavPack and MOD playback added or improved
- For a better sound quality, we now rely on the hardware whereever possible;
moreover, all calculations are always 32-bit now
- Less latency
- New effect section for internal effects and for VST effects added to the
settings dialog
- Shoutcast and Icecast support added, see "Open playlist or files/Open URL"
- New context menu command "Fade to next"; as an alternative, hold the shift key
while pressing eg. the "next" button
- New crossfading option "Only fade out, start new track with full volume";
dialog "Playback settings/Fading" improved
- New: Mouse and keyboard improvements:
- The middle mouse button can be configured to edit or prelisten tracks now (see
"Settings/Advanced/Further options/Middle mouse button")
- Shortcuts defined for the action "Unqueue marked tracks" will work
- More options for adding credits by shortcuts (see "Settings/Kiosk mode/Credit
system")
- All cursor and workspace shortcuts can be changed at "Settings/Advanced/
Further options" now, adding targets for pagination to the skin engine
- Less flickering on object dragging and on dialog resizing
- The font defined at "Settings/View" can now also be used for the popup-menus;
see "Settings/Advanced/Further options/Menus: Use 'view' font"
- New: Further changes:
- New command line options --volup, --voldown and --togglevis
- New command line parameter "--kioskrect"; this can be used to let Silverjuke
only use some parts of the screen in kiosk mode
- New skin condition: "version"
- New option in the playback context menu: "More from current album/artist"
- Added amazon.com and jpc.de to the german cover search (thanks to timewind)
and lyricwiki.org to the lyrics search
- Reading (ID3-)tags can be disabled per source at "My music library/Source
options"
- Some optimizations make the database about 15% smaller; as the cache is better
used for this reason, this also results in some speed improvements, eg. on
search
- The pages "Buy", "Language" and "Further options" are grouped under "Settings/
Advanced" now; module settings are available at "Further options"
- If the tag information is read from the file name, we now allow the character
"." there; however, the last point always introduces the file extension
- All searches are switched off before changing tag data that may affect the
sorting and before a database update
V1.22 (01.03.2006)
================================================================================
- New: Prelistening is directly available for tracks in the playlist
- New: The action to perform when terminating the kiosk mode can now be
predefined or can be queried independently of a password
- New: New command line parameter "--update" which will update the index on
startup
- For display selections, the context menu option "View/Go to marked tracked" is
shown in addition to "View/Go to current track"
- The kiosk mode password must be entered on exit even if "all functions" is
enabled
- Fixed a bug that crashes Silverjuke sometimes on exit if the kiosk settings
dialog is still open
- Track numbers are read correctly from UTF-16 ID3-tags
- German umlauts are read correctly from UTF-16 ID3-tags
- Fixed a problem if the key to exit the kiosk mode was still hold in the
shutdown period
- Improved loading of Winamp 5.2 modules
- MilkDrop 1.04d that comes with Winamp 5.2 is currently incompatible to
Silverjuke due to undocumented API calls and is not loaded therefore
V1.20 (01.02.2006)
================================================================================
- New: The AutoPlay function can also play tracks from the current view (see
"Playback settings/Automatic control/AutoPlay")
- New: Credits may also be added by shortcuts (see "Settings/Kiosk mode/
Credit system")
- New: In skin "Silveriness": New button "0-9"
- New target for the skin engine: "goto0" which refers all albums not starting
with a letter between A to Z
- "Go to current track" only ends the simple search if needed
- "Play track next" works as expected if the shuffle mode on on
- Fix a bug when terminating the kiosk mode when ctrl-alt-del is disabled
- No more "beeps" when entering the kiosk mode with ctrl-alt-del disabled
- The tag editor is only available in the kiosk mode if the functionality is set
to "All functions"
V1.18 (09.12.2005)
================================================================================
- New: The location and the max. size of the temporary directory can be defined
in "Settings/Advanced/Further options"
- New: http-files are cached to the temporary directory
- New: Each decoder module may be preferred for local file/http playback
independently; by default, Winamp modules are preferred for local file
playback and the ACM-MPx module is preferred for http playback
- New option "Kiosk mode/Numpad/Also use numpad controls outside the kiosk mode"
- Unknown total times are no longer shown as "?:??" in the display
- Speed improvements when adding files to the queue
- Fixed a bug that avoids removing the last source from the library
V1.16 (20.11.2005)
================================================================================
- New: Prelistening
- New: Tag editor: Option to query the freedb online database added, see the
"Menu" button
- New: A balloon with information about the current track can be shown in the
system tray, see "Settings/Advanced/System tray"
- New: Sleep mode functionality added to "Settings/Playback settings/Automatic
control"
- New: If the kiosk mode is protected by a password, you have the option to
shutdown or to reboot the computer on exit
- New: Albums may be created by directories and the album order may be changed,
see "Settings/My music library/Combine tracks to albums"
- New: Credit system support
- Option "Playback settings/Crossfade/Options/No crossfades between subsequent
tracks of the same album" added (enabled by default)
- Option "Settings/Advanced/Further options/Mouse: Double click on covers" with
the settings "Open cover editor" (default) and "Select/play album" added
- The cover and the tag editors may also be opened with the middle mouse button
- Unused system accessibility features are disabled in kiosk mode to prevent
system dialogs coming up; used accessibility features are still available
- Shutdown handling for the kiosk mode improved, new option "Settings/Kiosk
mode/Start kiosk mode/Disable shutdown" added
- New functionality switch for the kiosk mode: "Music selection"
- If needed, playing times are corrected after the first continuous playback
- For the mouse wheel, Silverjuke now also checks, if the mouse is over the
volume slider or over a scrollbar (requires "Further options/Mouse wheel:
Scroll display" to be set)
- "My rating" and "Artist on the web" are available directly from the system
tray icon
- The prior searches, music selections and genres are accessible directly from
the search menu now (use eg. the little arrow right of the search control)
- New command line parameter "--instance=INI-file"
- New skin condition: "shaped", else-tag added
- The kiosk mode option "Query settings before start" works as expected
- Fixed a bug that avoids ID3-tag-reading under some circumstances
- Fixed a bug that hides some tracks under some circumstances
V1.14 (24.08.2005)
================================================================================
- New: When dragging a cover from an external program to an album row or when
using the clipboard, the user has the option to copy it to the album directory
now; moreover, a thumbnail of the cover is displayed in the message box
- New: Context menu option "Playback/Play now on double click" added; the
predefined shortcut for this option is "ctrl-d"
- New: Automatically played tracks (see "Settings/Playback/Automatic control")
can be skipped by pressing "next"
- Tracks may be played directly from the music selection dialog (see the "Menu"
button in the dialog)
- The display in the kiosk mode may be optionally enlarged, see "Settings/Kiosk
mode/Functionality/Enlarge display"
- If "Settings/Kiosk mode/Functionality/All functions" is enabled, the music
selections work as expected
- Some confirmation dialogs (eg. enqueue, clear playlist, rating, exit) can be
be disabled (see "Settings/Advanced/Further options" and the dialogs
themselves)
- If a track is enqueued multiple times, all queue positions are shown in the
tooltips and in the "Get info" dialog
- The current layout (eg. the size of the display) and all window positions are
remembered and reloaded on the next Silverjuke startup
- If "search covers on the web" is called for the first time, the online help is
displayed and some tips are shown
- Better error handling when loading invalid skins
- Automatically started and manually stopped visualizations stay stopped in any
case
- Funny: The tooltip "Exit Silverjuke" was shown for the horizontal scrollbar...
fixed
V1.10 (31.07.2005)
================================================================================
- New: Added the possibility to control Silverjuke with the numpad or special
hardware buttons (see "Settings/Kiosk mode/Numpad")
- New: Sources may be excluded from the update process
- New: In shuffle mode, already played tracks may be played again by removing
the little check mark in front of the title in the display
- New: Online help improved
- Removing tracks from the queue regards the shuffle, repeat and autoplay states
- If the player is stopped because of the end of the queue and kiosk, repeat and
autoplay are disabled, the queue is reset to the first position
- A double click on an already enqueued track will just enqueue it again
(instead of enqueueing it again). To unqueue songs, use the display.
- Using the display instead of a message box to show the message "Queue full" in
kiosk mode
- By default, the built-in visualization shows the oscilloscope and the spectrum
- Automatic detection of Nero improved
- Language detection improved
- If any decoder module cannot find out the correct playing time, it is saved by
Silverjuke to the database after the first continuous playback
- If the kiosk mode is started, the settings dialog is closed under all
circumstances
- As ACM cannot play MPEG Layer I/II files by default, decoders other than ACM
are preferred (if available); otherwise, a detailed error message is shown
when trying to play a MPEG Layer I/II file
- If an ID3 copyright message contains quotes, this halted the database update
from time to time; fixed (thanks to jobo)
- Bug fixed: Files with the character "#" in the path or in the file name can be
read
- Bug fixed: Sometimes, Winamp modules that do not use the output were loaded
- Bug fixed: Sometimes, already unqueued tracks were still marked in the album
view
V1.05 (07.07.2005)
================================================================================
- Improved the loading strategy for Winamp input modules as, under some
circumstances, eg. the WMA plug-in crashed together with Silverjuke
V1.04 (04.07.2005)
================================================================================
- New: Added a virtual keyboard which is useful esp. in combination with
touchscreens or if no physical keyboard is present (see "Settings/Kiosk mode/
Virtual keyboard")
- New: Silverjuke can automatically play songs if the playlist is empty, can
follow the playlist or can start/stop the visualization automatically, see
"Settings/Playback/Automatic control"
- New: French language support added (thanks to Claude Sturzel)
- The cover size can be adjusted independently of the column width (see
"Settings/View/Font and cover")
- After the player is stopped and started again, already played tracks in the
playlist are no longer played again if "repeat" is off; please enable the
repeat function to get this behaviour
- Music selections can be opened directly from the kiosk functionality page
- In skin "Silveriness": If wanted, the kiosk mode shows the visualization,
play, prev/next and volume controls
- Skin outlines are no longer shown when loading an erroneous skin, only an
error message is printed
- Visualization is stopped if one of the "A-Z" buttons is clicked
- In kiosk mode, the visualization is stopped when clicking anywhere into the
visualization window
V1.01 (04.06.2005)
================================================================================
- New: Added an automatic version check; the version check is disabled by
default, use "Settings/Advanced/Further options" to enable it
- Fixed a bug that halts playback under some circumstances
- Fixed a bug that unloads VST effect modules after a database update
- Better support for unusual bitrate/samplerate combinations in the ACM decoder
V1.00 (25.04.2005)
================================================================================
- New: First official release of Silverjuke
- New: Tracks in the queue may be moved
- New: Improved selection handling in queue display (ctrl-click, shift-click)
- New: More context menu options for tracks in the queue ("Edit tracks", "Burn
CD", "Unqueue marked tracks", "Unqueue all but marked" etc.)
- New: Option to switch the screen resolution in kiosk mode
- New: Option "Control/Go to current track" added
- New: Support for VST modules added
- Better output quality: automatically switching to 32-bit float samples if
needed by DSP modules; if this is not needed, we work with faster 16-bit
integer samples
- Better output quality: to avoid clipping when working with 16-bit integers,
the automatic volume and the main volume are adjusted in only one step
- Resuming DSP buffers on previous/next
- Enlarged covers are centered correctly in kiosk mode
- Editing covers is no longer possible in kiosk mode
- Also matching image names against album names when searching for covers
- Removing the correct registry entry when removing a source
- Using a popup menu instead of a dialog to select the source type to add
- Options "Open cover" and "Search covers on the web" splitted into two menu
entries
- Enlarging the display cover works if covers in the browser are disabled
- The state of the mute button (if present in a skin) is set correctly on volume
changes
- New kiosk mode icon
- No longer showing errors, if non-privileged users don't have access to the
default Winamp directory
- Vertical scrollbar updated correctly when clicking on "A-Z"
- Effect modules are inserted into "effect slots", this also allows to define
the order of effects to process
- Options for active effects are also available in the main menu at "Playback"
- Longer drag'n'drop operations do no longer interrupt the calling application
- Public homepage access; from now on, the beta-test forum is available for
registered users only
V0.32 (08.04.2005)
================================================================================
- New: New default skin "Silveriness"
- New: New jingle "Silverjuke is running" (thanks to Chester)
- New: Tag editor: options to rename files and to split fields added
- Placeholders are surrounded by "<" and ">"
- A double click on an item in "Settings/Advanced/Further options" always opens
the context menu if there are more than two options present
- Optimized the icons to work with non-standard colors
- Bug fixed that lead the tag editor confirmation dialog crash in some cases
- Bug fixed when selecting tracks using shift-up
- The dialog "Automatic volume" shows more details about the current volume
- Updated the screenshots on the homepage
- Bug fixed for skins using relative positions
V0.30 (21.03.2005)
================================================================================
- New: Tag editor: replace dialog added
- New: Tag editor: detailed confirmation dialog added
- New: Burning CDs simplified and improved
- New: Option "Automatic volume control/Play all tracks of an album with the
same volume" added
- New: Clipboard support for pasting covers, music files or directories
- New: When dropping a folder, the user is asked whether to add it to the
database
- When opening or dropping files that are not in the database, the (ID3-)tags
and the playing time for these files are read and shown correctly
- Allowing bitmap objects for drag'n'drop and clipboard (in earlier versions
only existing bitmap files were supported)
- Covers may be copied or moved on drag'n'drop (use the "shift" key); on copy,
they're copied to the directory the first track of the album belongs to; copy
is the default action when using the clipboard
- Avoid loading Winamp modules that say, they use the default audio output but
finally don't
- Some interface options added to "Advanced/Modules/Load modules"
- Oscilloscope: added a spectrum analyzer; some more changes and improvements
- Stopping visualization when entering kiosk mode
- Better embedding of visualizations
- When changing (ID3-)tags of the currently played file, it will be paused for a
second to allow the file modification; same if the file is renamed
- Option to write (ID3-)tags move from the source options to the tag editor
- Handling improved when Silverjuke is about to terminate and started again in
these moments
- Allowing "short" paths in playlists
- Giving volume-adjusted samples to the visualizations
- Bug fixes when switching from internal to global drag'n'drop (let to program
hang under some circumstances)
V0.29 (14.03.2005)
================================================================================
- New: Looking forward when gathering automatic volume information; this leads
to less volume adjustments inside a track
- New: Automatic volume information are written to the database; so no more
volume adjustments inside a track are needed for subsequent playbacks
- New: Options dialog added for the automatic volume control
- New: Automatic volume may be used as a search criteria for music selections
- New: Covers may be added using drag'n'drop from external applications
- Improved automatic volume in combination with cross fading
- Pressing "Cancel" in the playback settings dialog does no longer restart the
automatic volume control
- Showing the correct text in the browser for unsuccessful music selections
- Using a higher thread priority for the main audio thread, may be configured at
"Playback settings/Default audio output/Options"
- A database update is initiated automatically when this version is started
first; normally, this will only take a few seconds
- Cross fading, automatic volume and output dialogs are modeless
- Opened menus or modal system dialogs do no longer avoid playing the next title
in the queue
- Fading some milliseconds on play, pause, stop, previous, next and exit
- In prior versions, when clicking previous/next, the first two decoded buffers
of the new track were forgotten; fixed
- Keeping window size and position when enlarging/shrinking the display; the
small player view has a completely independent size and position
- "Always on top" can be set individually for every layout; the corresponding
button in skin "Silverblue" is now available in the small player view only
(makes no sense in the normal view)
- If there is much silence skipped at the end of the previous track, we allow
cross fades up to half of the desired length
- Increasing the playing counter for short tracks
- Some bugs fixed in the player for very short or erroneous tracks
- Remembering the browser position and the selected tracks when ending or
changing a search
- Keeping the cover information when editing tags
- Default output buffer size changed from 185 ms to 92 ms for a better response
to play, pause, volume etc.; on my slow-testing system (450 MHz), there were
no buffer underruns
- The decoder buffer size is adjusted automatically; this is done by regarding
the cross fade and and the automatic volume settings
V0.28 (04.03.2005)
================================================================================
- New: "Automatic volume" implemented
- New: Seeking implemented for ACM decoders
- Corrected erroneous seeking at the end of a track, seeking is only possible
within a track
- Corrected the title below the search field when switching to/from kiosk mode
- Corrected counting the unplayed titles in kiosk mode if shuffle is not
enabled; in this case, tracks before the current position will never be
played, so we do not count them as being waiting
- Remembering the correct browser position after ending a search
- Releasing allocated images correctly in the small cover display
- "Advanced search" renamed to "Music selection" (thanks to "m")
- Partly corrected the english homepage and the help file (thanks to "m")
- Updated the screenshots on the homepage
- Kiosk mode start/stop buttons shown in bold
- Scaling down the drag'n'drop image, if it is very large
- More aggressive silence skipping on track end
V0.27 (27.02.2005)
================================================================================
- New: Shuffle implemented
- New: On program startup, the last music selection is loaded, if any
- New: Tracks can be excluded/included to music selections using "del" or "ins"
in the main window; drag'n'drop is also supported
- New: More "limit by" options for music selections
- New: Queue position and file type may be used as criteria in music selections
- New: Showing the queue position in "Get info" and in the tooltips, if any
- New: Showing the file type in "Get info"
- New: If the mouse is over the display, the mouse wheel optionally scrolls it
- New: Kiosk mode improved
- Display of music selections in the main window improved: no truncating of
quotes, hiding the strings "Albums - A" etc. for small results
- Menu option "View/Show covers" is available in all context menus
- When adding tracks to the queue the tracks are shown in bold and the display
scrolls to the adding position; after a moment the normal state is restored
- Adding some more options for using colours in skins
- For internal drag'n'drop, the images of the selected tracks are optionally
moved together with the mouse
- Showing the text "no results" in the browser if a search failed; clicking onto
it will end the search
- Fixed an redrawing error for the vertical text in the browser
- Total time given correctly to Winamp modules
- Date output in "Edit tags/Get info" and other places corrected
- The calender control returns the correct date and time
- Mute does no longer pause playback
- Memory leak fixed when writing ID3 tags
- "Play title now" works in shuffle mode
- No more errors as "Image not found. Source tag is..." when loading a
correct skin
- If there are no columns in the browser, the thumb of the horizontal scrollbar
is as wide as scrollbar
- Restarting tracks in queue with "repeat" disabled replays all tracks
- Moved option "Ask on close if playing" to "Advanced/Further options"
- Renamed "Rating" to "My rating"
- Renamed "Playback settings/Further options" to "Playback settings/Shuffle"
- IDs of deleted tracks are never reused again; future versions may depend on
this behavior, so you may want to delete mymusic.db and create it again;
however, currently this is not needed
- Music selections are stored in the database instead of registry/ini
- In skin "Silverblue": Button to start the visualizations moved to the display
area
- In skin "Silverblue": Removed play/previous/next from the small and from the
kiosk layout (you can use the display for these functions)
V0.26 (18.02.2005)
================================================================================
- Bug fixed in the error logging system which was not really thread-save and
lead to program crashes under some circumstances; hopefully everything is okay
now...
- Bug fixed when adding user-defined keys (lead to program crashes)
- Using negative values for image brightness/contrast is okay now
- When enlarging erroneous images the error is displayed
V0.25 (16.02.2005)
================================================================================
- New: "Music selections" (former name was "Advanced search") implemented
- New: Local and system-wide drag'n'drop support from the browser window eg. to
the display
- New options for drag'n'drop in "Advanced/Further options"
- Command line option "--temp=DIR" added
- Hiliting conflicting decoder modules in "Settings/Modules"
- Sorting of strings that begin with a number corrected
- Tooltips are closed if the mouse is over another window
- Moved all keyboard, mouse, expert and minor settings from different dialogs
and menus to "Advanced/Further options"
- Improved time display
- Starting the kiosk mode closes all open dialogs
- Using a larger font for the vertical text in the browser
- Help updated
V0.24 (22.01.2005)
================================================================================
- New: Option to force auto-generated covers (see cover's context menu)
- New: Resampling "odd" frequencies as 48 KHz to 44.1 KHz, resampling filter
added (see "Playback settings/Audio output/Options")
- New: The ACM decoder can play files of all common frequencies
- Oscilloscope: Optionally drawing offscreen to avoid flickering; using font
from "View settings"; option "Show title" added, "Flash Background" is no
longer enabled by default (many people thought, this is a bug)
- Auto-generated covers are shown correctly if "Advanced/Further options/Image
cache/Disk cache" is enabled
- German umlauts and other special characters are shown correctly in auto-
generated covers
- Added little more space between the options in "Combine tracks to albums"
- Reading MPx headers in files without ID3v2 but with ID3v1 is okay (hit
shift-F5 to recreate your music library)
- Some english strings corrected (thanks to Thorsten)
- System-wide shortcuts are no longer enabled by default
- The button "My music library/Update music library" now opens a popup menu with
the options "Update" and "Recreate"
V0.23 (15.01.2005)
================================================================================
- New: Tooltips added
- New: Accelerator handling improved
- New: Improved selection handling in main window (ctrl-click, shift-click,
shift-cursor)
- Option to enable/disable tooltips added to "Advanced/Further Settings"
- Option "Advanced/Further options/Cursor keys" added
- In skin "Silverblue": Button to append files added to large display view
- In skin "Silverblue": Button to toggle "always on top" added
- In skin "Silverblue": Menu- and minimize-button in small view added
- Previous/next works in the track editor, alternatively the page up/down keys
may be used (these keys may also be customized in "Advanced/Further options")
- Downloading covers from buy.com should work now
- "-" and other special characters may be entered into the search control
- Bug fixed for hover handling if a click is aborted by moving the mouse outside
the button rectangle
- English capitalization improved
- If errors occur while loading a cover, these errors are printed at the place
of the erroneous cover instead of opening a message box.
- Using different subdirectories in temp. directory for different
configurations/different databases. This is needed as files are stored in temp
eg. using IDs from the database.
- Initial visualization window position corrected for some visualizations that
set their own position even when embedding (eg. Milkdrop)
V0.22 (10.12.2004)
================================================================================
- New: First beta release of Silverjuke
- silverjuke.net incl. the beta-test forum opened to some selected people
V0.01 (23.11.2003)
================================================================================
- New: First prototype of Silverjuke
- Start counting the version numbers
Copyright (c) Bjoern Petersen Software Design and Development, http://b44t.com
silverjuke-16.2.3/LICENSE 0000664 0000000 0000000 00000077333 12660066715 0015021 0 ustar 00root root 0000000 0000000
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc.