Changes of Revision 95

ffxvid.changes Changed
x
 
1
@@ -1,4 +1,10 @@
2
 -------------------------------------------------------------------
3
+Mon Dec 28 01:45:00 UTC 2020 - neutrino8@opensuse.org
4
+
5
+- Update to version 1.7.1
6
+  * Fix a bug in the $vidtrack variable
7
+
8
+-------------------------------------------------------------------
9
 Sun Dec 27 18:25:00 UTC 2020 - neutrino8@opensuse.org
10
 
11
 - Update to version 1.7.0
12
ffxvid.spec Changed
10
 
1
@@ -17,7 +17,7 @@
2
 
3
 
4
 Name:           ffxvid
5
-Version:        1.7.0
6
+Version:        1.7.1
7
 Release:        0
8
 Summary:        A small shell script for encoding to Xvid with FFmpeg
9
 License:        GPL-2.0+
10
ffxvid-1.7.0.tar.gz/ChangeLog -> ffxvid-1.7.1.tar.gz/ChangeLog Changed
8
 
1
@@ -1,3 +1,6 @@
2
+2020-12-28 - ffxvid 1.7.1
3
+   * Fix a bug in the $vidtrack variable
4
+
5
 2020-12-27 - ffxvid 1.7.0
6
    * Fixed a long standing bug where audio mapping
7
      values were incorrect for audio metadata
8
ffxvid-1.7.0.tar.gz/ffxvid -> ffxvid-1.7.1.tar.gz/ffxvid Changed
29
 
1
@@ -2,8 +2,8 @@
2
 #
3
 # Small script to encode to Xvid video using FFmpeg.
4
 # Author: Grozdan "microchip" Nikolov <neutrino8@opensuse.org>
5
-# Version: 1.7.0
6
-# Date: 2020-12.27
7
+# Version: 1.7.1
8
+# Date: 2020-12-28
9
 #
10
 # ffx264 is free software ; you can redistribute it and/or modify
11
 # it under the terms of the GNU General Public License as published by
12
@@ -24,7 +24,7 @@
13
 brown() { echo -e "\e[0;33m$1\e[0;39;49m"; }
14
 error() { echo -e "\e[1;31m$1\e[0;39;49m"; }
15
 
16
-version="1.7.0"
17
+version="1.7.1"
18
 
19
 CFG="$HOME/.ffxvid"
20
 cfgversion="15"
21
@@ -440,6 +440,7 @@
22
 fi
23
 
24
 vidtrack="$(echo "$vidmap" | awk '{print $2}' | awk -F: '{print $2}')"
25
+test $vidtrack="-1" && vidtrack="0"
26
 
27
 if [ ! -z "$batchmode" ]; then
28
    OUTPUT="$OUTDIR/$(basename $0)_$$"
29