From: <dom...@us...> - 2013-09-05 00:13:00
|
Revision: 550 http://sourceforge.net/p/fvwm-crystal/code/550 Author: dominique_libre Date: 2013-09-05 00:12:57 +0000 (Thu, 05 Sep 2013) Log Message: ----------- Fixed make dist with dash. Updated version to 3.2.7 Modified Paths: -------------- ChangeLog Makefile NEWS Modified: ChangeLog =================================================================== --- ChangeLog 2013-09-03 11:59:01 UTC (rev 549) +++ ChangeLog 2013-09-05 00:12:57 UTC (rev 550) @@ -1,5 +1,10 @@ ChangeLog for FVWM-Crystal +Mercredi 4 septembre 2013 Dominique Michel + Makefile: fixed .svn copy in make dist - replaced find command by rsync. + NEWS: zpdated. + components/About: updated version to 3.2.7 + Mardi 3 septembre 2013 Dominique Michel components/functions/Fullscreem: removed one more bashism. Modified: Makefile =================================================================== --- Makefile 2013-09-03 11:59:01 UTC (rev 549) +++ Makefile 2013-09-05 00:12:57 UTC (rev 550) @@ -35,11 +35,12 @@ # This is meant for creating a distribution tarball from the repository and # not for the use by end users dist: - mkdir -p "fvwm-crystal-$(RELEASE)" - find -maxdepth 1 ! -name "." ! -name ".*" ! -name "*.html" ! -name "fvwm-crystal-$(RELEASE)" \ - -exec cp -R -P {} "fvwm-crystal-$(RELEASE)/" \; - tar czf "../fvwm-crystal-$(RELEASE).tar.gz" "fvwm-crystal-$(RELEASE)" - rm -rf "fvwm-crystal-$(RELEASE)" + mkdir -p "../fvwm-crystal-$(RELEASE)" +# find -maxdepth 1 ! -name "." ! -name ".*" ! -name "*.html" ! -name "fvwm-crystal-$(RELEASE)" \ +# -exec cp -R -P {} "fvwm-crystal-$(RELEASE)/" \; + rsync -a . "../fvwm-crystal-$(RELEASE)" --exclude '.*' + tar czf "../fvwm-crystal-$(RELEASE).tar.gz" "../fvwm-crystal-$(RELEASE)" + rm -rf "../fvwm-crystal-$(RELEASE)" dist-minimal: # Create all important directories Modified: NEWS =================================================================== --- NEWS 2013-09-03 11:59:01 UTC (rev 549) +++ NEWS 2013-09-05 00:12:57 UTC (rev 550) @@ -1,3 +1,11 @@ +Version 3.2.7 +------------- + +This version is a bugfix release. + +- Fixed make dist to not copy the .svn directories with dash. +- Fixed fullscreen window switching when sh is dash. + Version 3.2.6 ------------- This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |