From 6d8f99ce8f827e95c09bfb33251fe210ce0c2c39 Mon Sep 17 00:00:00 2001 From: waker Date: Tue, 20 Mar 2012 20:52:29 +0100 Subject: 0.5.2-rc2 fixes --- scripts/portable_build.sh | 2 +- scripts/portable_package_static.sh | 8 ++++---- scripts/portable_postbuild.sh | 9 +++++++-- 3 files changed, 12 insertions(+), 7 deletions(-) (limited to 'scripts') diff --git a/scripts/portable_build.sh b/scripts/portable_build.sh index 36f2665e..6a047023 100755 --- a/scripts/portable_build.sh +++ b/scripts/portable_build.sh @@ -13,7 +13,7 @@ sed -i 's/-lstdc++ -lm -lgcc_s -lc -lgcc_s/-lm -lc/g' libtool make clean make -j9 -./scripts/portable_extraplugs.sh +#./scripts/portable_extraplugs.sh cd $ORIGIN diff --git a/scripts/portable_package_static.sh b/scripts/portable_package_static.sh index be8c75b6..2b8e5465 100755 --- a/scripts/portable_package_static.sh +++ b/scripts/portable_package_static.sh @@ -49,11 +49,11 @@ tar jcvf ../portable_out/build/deadbeef-$VERSION-static-i686.tar.bz2\ $PLUGDIR/vtx.so\ $PLUGDIR/wavpack.so\ $PLUGDIR/wildmidi.so\ - $PLUGDIR/ao.so\ - $PLUGDIR/shn.so\ - $PLUGDIR/dumb.so\ + $PLUGDIR/ddb_ao.so\ + $PLUGDIR/ddb_shn.so\ + $PLUGDIR/ddb_dumb.so\ $PLUGDIR/converter.so\ - $PLUGDIR/converter_gtkui.so\ + $PLUGDIR/converter_gtk2.so\ $PLUGDIR/convpresets\ $PLUGDIR/pulse.so\ $PLUGDIR/dsp_libsrc.so\ diff --git a/scripts/portable_postbuild.sh b/scripts/portable_postbuild.sh index ae9b7ec1..f572240f 100755 --- a/scripts/portable_postbuild.sh +++ b/scripts/portable_postbuild.sh @@ -24,12 +24,17 @@ for i in nullout cdda flac alsa mpgmad hotkeys vtx \ cp ./plugins/$i/.libs/$i.so $PLUGDIR/ elif [ -f ./plugins/$i/$i.so ]; then cp ./plugins/$i/$i.so $PLUGDIR/ + elif [ -f ./plugins/$i/.libs/ddb_$i.so ]; then + cp ./plugins/$i/.libs/ddb_$i.so $PLUGDIR/ else echo ./plugins/$i/.libs/$i.so not found fi - if [ -f ./plugins/$i/.libs/${i}_gtkui.so ]; then - cp ./plugins/$i/.libs/${i}_gtkui.so $PLUGDIR/ + if [ -f ./plugins/$i/.libs/${i}_gtk2.so ]; then + cp ./plugins/$i/.libs/${i}_gtk2.so $PLUGDIR/ + fi + if [ -f ./plugins/$i/.libs/${i}_gtk3.so ]; then + cp ./plugins/$i/.libs/${i}_gtk3.so $PLUGDIR/ fi if [ -f ./plugins/$i/.libs/$i.fallback.so ]; then -- cgit v1.2.3 From 56798e89360cd345f5004629ff42092cf7700c0c Mon Sep 17 00:00:00 2001 From: waker Date: Tue, 20 Mar 2012 21:14:56 +0100 Subject: added mission translations to po/LINGUAS and missing translators to the about box --- configure.ac | 2 +- po/LINGUAS | 9 +++++++++ scripts/extract_translators.pl | 2 +- translators.txt | 33 ++++++++++++++++++++++++++++++--- 4 files changed, 41 insertions(+), 5 deletions(-) (limited to 'scripts') diff --git a/configure.ac b/configure.ac index daa68e4b..68b81e2f 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT([deadbeef], [0.5.2-rc2]) +AC_INIT([deadbeef], [devel]) AC_CONFIG_HEADER(config.h) diff --git a/po/LINGUAS b/po/LINGUAS index 028ab09a..9eb6a389 100644 --- a/po/LINGUAS +++ b/po/LINGUAS @@ -7,8 +7,11 @@ da de el en_GB +eo es +et fa +fi fr gl he @@ -20,17 +23,23 @@ ja kk km lg +lt +nb nl pl pt pt_BR ro ru +si sk +sl sr sr@latin sv +te tr +ug uk vi zh_CN diff --git a/scripts/extract_translators.pl b/scripts/extract_translators.pl index a3ad02a2..b233e86f 100755 --- a/scripts/extract_translators.pl +++ b/scripts/extract_translators.pl @@ -34,7 +34,7 @@ foreach my $f (@files) { if ($script) { print " ($script)"; } - print "\n"; + print " $code\n"; while () { if (/^#/) { if (/\@/ && !(/Yakovenko/) && !(/EMAIL/)) { diff --git a/translators.txt b/translators.txt index 76447204..93f3822a 100644 --- a/translators.txt +++ b/translators.txt @@ -33,12 +33,21 @@ Hungarian English (United Kingdom) Steve (Yorvyk) Cook +Esperanto + Kristjan + Spanish depaz +Estonian + Anari + Persian Ali +Finnish + Juhani + French Cilyan Olowen @@ -63,12 +72,18 @@ Japanese Kazakh Baurzhan Muftakhidinov -Khmer +Central Khmer SatyaN -Luganda +Ganda kizito +Lithuanian + Julius + +Bokmal, Norwegian + Sam + Dutch depaz @@ -89,9 +104,15 @@ Romanian Russian Dmitriy Simbiriatin +Sinhala + danishka + Slovak Ivan Masár +Slovenian + Klemen Košir + Serbian Jay A. Fleming @@ -101,8 +122,14 @@ Serbian (latin) Swedish Martin +Telugu + PraveenIlla + Turkish - bahadiroglu + decent + +Uighur + Gheyret Kenji Ukrainian Yarema aka Knedlyk -- cgit v1.2.3