gst-inspect: Use only original 16 colors
[platform/upstream/gstreamer.git] / scripts / git-version.sh
old mode 100644 (file)
new mode 100755 (executable)
index e92c4c5..d96223a
@@ -1,25 +1,26 @@
 #!/bin/bash
 
-# update all known gstreamer modules
-# build them one by one
-# report failures at the end
+# display the latest commit in the current branch of all gstreamer modules.
 # run this from a directory that contains the checkouts for each of the
 # modules
 
-FAILURE=
-
 for m in \
   gstreamer gst-plugins-base \
   gst-plugins-good gst-plugins-ugly gst-plugins-bad \
-  gst-ffmpeg \
-  gst-python \
+  gst-ffmpeg gst-libav \
+  gst-editing-services \
+  gst-python gstreamer-sharp \
   gnonlin \
+  gst-rtsp-server \
+  gst-omx \
+  gst-devtools \
   ; do
   if test -d $m; then
     cd $m
       echo $m
       git branch | grep '*'
-      git log | head -n 1
+      git log | head -n 3 | sed -n '1p;3p'
+      echo ""
     cd ..
   fi
 done