From 5669de5d2d1b978bd34c80964d299688282d7027 Mon Sep 17 00:00:00 2001 From: Florian Jung Date: Sun, 4 Sep 2011 17:43:39 +0000 Subject: added paste dialog plus minor fixes: - moved and changed muse.pro file - added update_pro.sh and update_translations.sh - updated translations - moved stuff from functions.cpp out to dialogs.cpp - fixed behaviour of movePartsTotheRight(): parts which begin at "start of move" aren't expanded, but moved now --- muse2/update_pro.sh | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 muse2/update_pro.sh (limited to 'muse2/update_pro.sh') diff --git a/muse2/update_pro.sh b/muse2/update_pro.sh new file mode 100755 index 00000000..da249612 --- /dev/null +++ b/muse2/update_pro.sh @@ -0,0 +1,24 @@ +{ + echo 'HEADERS = \'; + find . -name '*.h' -and -not -path '*/build/*' -printf '\t%p \\\n'; + echo ' '; + echo; + + + echo 'SOURCES = \'; + find . -name '*.cpp' -and -not -path '*/build/*' -printf '\t%p \\\n'; + echo ' '; + echo; + + + echo 'FORMS = \'; + find . -name '*.ui' -and -not -path '*/build/*' -printf '\t%p \\\n'; + echo ' '; + echo; + + + echo 'TRANSLATIONS = \'; + find . -name '*.ts' -and -not -path '*/build/*' -printf '\t%p \\\n'; + echo ' '; + echo; +} > muse.pro -- cgit v1.2.3