diff --git a/ChangeLog b/ChangeLog index 62a3c3bd2d..a094c21b34 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-02-23 Tim-Philipp Müller + + * docs/README: + Add a few lines about the new 'check-inspected-versions' target. + 2008-02-21 Stefan Kost * tests/check/gst/gstevent.c: diff --git a/common b/common index 2a19465fdb..a574e6214b 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit 2a19465fdb43a75f4d32950fd2beb1beb950eec2 +Subproject commit a574e6214b06fcbdfc00e952e2f3edc06997ee93 diff --git a/docs/README b/docs/README index d330a07d52..9bd2b92b13 100644 --- a/docs/README +++ b/docs/README @@ -302,6 +302,14 @@ in the various plugin packages. web site updates. - maintainer tricks: + - in gst-plugins-foo/docs/plugins/, run + make check-inspected-versions + to show plugins whose inspect information is not up-to-date (which is + usually either because they have been moved to a different module or + because they are not built on the maintainer's machine for some reason). + Whether it really makes sense to update the version number is debatable + (after all, the inspected information may be outdated and things may have + changed, in which case it would be bad to change the version number) - find files that have docs for file in `find . -name "*.c" -exec grep -l " * SECTION:element-" {} \; | sort`; do if [ -e ${file/.c/.h} ]; then echo ${file/.c/.h}; else echo "no header for $file"; fi; done for file in `find . -name "*.cc" -exec grep -l " * SECTION:element-" {} \; | sort`; do if [ -e ${file/.cc/.h} ]; then echo ${file/.cc/.h}; else echo "no header for $file"; fi; done