Skip to content

Commit 9ab68e0

Browse files
committed
updating license
Signed-off-by: Ivan Boothe <[email protected]>
1 parent baf2def commit 9ab68e0

15 files changed

+75
-61
lines changed

images/imagedate.sh

+5-4
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919
# Copyright 2021, Ivan Boothe <[email protected]>
2020

2121
# This program is free software: you can redistribute it and/or modify
22-
# it under the terms of the GNU General Public License as published by
23-
# the Free Software Foundation, either version 3 of the License, or
22+
# it under the terms of the GNU Affero General Public License as published
23+
# by the Free Software Foundation, either version 3 of the License, or
2424
# (at your option) any later version.
2525

2626
# This program is distributed in the hope that it will be useful,
2727
# but WITHOUT ANY WARRANTY; without even the implied warranty of
2828
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
29-
# GNU General Public License at <http://www.gnu.org/licenses/> for
29+
# GNU Affero General Public License at <http://www.gnu.org/licenses/> for
3030
# more details.
3131

3232
# USAGE
@@ -69,6 +69,7 @@
6969
# https://exiftool.org/forum/index.php?topic=3429.0
7070

7171
# Revision history:
72+
# 2021-11-29 Updating license (1.4)
7273
# 2021-10-15 Adding checks for dependencies, updates to notifications (1.3)
7374
# 2021-10-14 Added flag options for date and time; applying quiet mode to
7475
# exiftool; minor cleanup and bug fixes (1.2)
@@ -78,7 +79,7 @@
7879

7980
# Standard variables
8081
PROGNAME=${0##*/}
81-
VERSION="1.3"
82+
VERSION="1.4"
8283
red=$(tput setaf 1)
8384
green=$(tput setaf 2)
8485
yellow=$(tput setaf 3)

images/minpic.sh

+5-4
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
# Copyright 2021, Ivan Boothe <[email protected]>
99

1010
# This program 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-
# the Free Software Foundation, either version 3 of the License, or
11+
# it under the terms of the GNU Affero General Public License as published
12+
# by the Free Software Foundation, either version 3 of the License, or
1313
# (at your option) any later version.
1414

1515
# This program is distributed in the hope that it will be useful,
1616
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1717
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18-
# GNU General Public License at <http://www.gnu.org/licenses/> for
18+
# GNU Affero General Public License at <http://www.gnu.org/licenses/> for
1919
# more details.
2020

2121
# USAGE
@@ -30,14 +30,15 @@
3030
# $ ./minpic.sh *.jpg pic2.png
3131

3232
# Revision history:
33+
# 2021-11-29 Updating license (1.3)
3334
# 2021-10-15 Adding checks for dependencies, filename (1.2)
3435
# 2021-10-14 Minor cleanup and standardization (1.1)
3536
# 2021-10-11 Initial release (1.0)
3637
# ---------------------------------------------------------------------------
3738

3839
# Standard variables
3940
PROGNAME=${0##*/}
40-
VERSION="1.2"
41+
VERSION="1.3"
4142
red=$(tput setaf 1)
4243
green=$(tput setaf 2)
4344
yellow=$(tput setaf 3)

images/modimg.sh

+5-4
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@
4040
# Copyright 2021 Ivan Boothe <[email protected]>
4141

4242
# This program is free software: you can redistribute it and/or modify
43-
# it under the terms of the GNU General Public License as published by
44-
# the Free Software Foundation, either version 3 of the License, or
43+
# it under the terms of the GNU Affero General Public License as published
44+
# by the Free Software Foundation, either version 3 of the License, or
4545
# (at your option) any later version.
4646

4747
# This program is distributed in the hope that it will be useful,
4848
# but WITHOUT ANY WARRANTY; without even the implied warranty of
4949
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
50-
# GNU General Public License at <http://www.gnu.org/licenses/> for
50+
# GNU Affero General Public License at <http://www.gnu.org/licenses/> for
5151
# more details.
5252

5353
# USAGE
@@ -105,14 +105,15 @@
105105
# https://github.com/varnav/makejxl
106106

107107
# Revision history:
108+
# 2021-11-29 Updating license (1.3)
108109
# 2021-10-19 Improvement of option flags and addition of JXL format (1.2)
109110
# 2021-10-18 Cleanup and standardization (1.1)
110111
# 2021-08-24 Initial release (1.0)
111112
# ---------------------------------------------------------------------------
112113

113114
# Standard variables
114115
PROGNAME=${0##*/}
115-
VERSION="1.2"
116+
VERSION="1.3"
116117
red=$(tput setaf 1)
117118
green=$(tput setaf 2)
118119
yellow=$(tput setaf 3)

images/webpjpg.sh

+5-4
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
# Copyright 2021, Ivan Boothe <[email protected]>
1111

1212
# This program is free software: you can redistribute it and/or modify
13-
# it under the terms of the GNU General Public License as published by
14-
# the Free Software Foundation, either version 3 of the License, or
13+
# it under the terms of the GNU Affero General Public License as published
14+
# by the Free Software Foundation, either version 3 of the License, or
1515
# (at your option) any later version.
1616

1717
# This program is distributed in the hope that it will be useful,
1818
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1919
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20-
# GNU General Public License at <http://www.gnu.org/licenses/> for
20+
# GNU Affero General Public License at <http://www.gnu.org/licenses/> for
2121
# more details.
2222

2323
# USAGE
@@ -26,13 +26,14 @@
2626
# $ ./webpjpg.sh [-h|--help]
2727

2828
# Revision history:
29+
# 2021-11-29 Updating license (1.2)
2930
# 2021-10-15 Minor cleanup and standardization (1.1)
3031
# 2021-10-11 Initial release (1.0)
3132
# ---------------------------------------------------------------------------
3233

3334
# Standard variables
3435
PROGNAME=${0##*/}
35-
VERSION="1.1"
36+
VERSION="1.2"
3637
red=$(tput setaf 1)
3738
green=$(tput setaf 2)
3839
yellow=$(tput setaf 3)

videos/avimp4.sh

+5-4
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
# Copyright 2021, Ivan Boothe <[email protected]>
1010

1111
# This program is free software: you can redistribute it and/or modify
12-
# it under the terms of the GNU General Public License as published by
13-
# the Free Software Foundation, either version 3 of the License, or
12+
# it under the terms of the GNU Affero General Public License as published
13+
# by the Free Software Foundation, either version 3 of the License, or
1414
# (at your option) any later version.
1515

1616
# This program is distributed in the hope that it will be useful,
1717
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1818
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19-
# GNU General Public License at <http://www.gnu.org/licenses/> for
19+
# GNU Affero General Public License at <http://www.gnu.org/licenses/> for
2020
# more details.
2121

2222
# USAGE
@@ -25,13 +25,14 @@
2525
# $ ./avimp4.sh [-h|--help]
2626

2727
# Revision history:
28+
# 2021-11-29 Updating license (1.2)
2829
# 2021-10-15 Adding help, dependency checks, and other standardization (1.1)
2930
# 2021-10-11 Initial release (1.0)
3031
# ---------------------------------------------------------------------------
3132

3233
# Standard variables
3334
PROGNAME=${0##*/}
34-
VERSION="1.1"
35+
VERSION="1.2"
3536
red=$(tput setaf 1)
3637
green=$(tput setaf 2)
3738
yellow=$(tput setaf 3)

videos/convertvid.sh

+5-4
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@
2727
# Copyright 2021, Ivan Boothe <[email protected]>
2828

2929
# This program is free software: you can redistribute it and/or modify
30-
# it under the terms of the GNU General Public License as published by
31-
# the Free Software Foundation, either version 3 of the License, or
30+
# it under the terms of the GNU Affero General Public License as published
31+
# by the Free Software Foundation, either version 3 of the License, or
3232
# (at your option) any later version.
3333

3434
# This program is distributed in the hope that it will be useful,
3535
# but WITHOUT ANY WARRANTY; without even the implied warranty of
3636
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
37-
# GNU General Public License at <http://www.gnu.org/licenses/> for
37+
# GNU Affero General Public License at <http://www.gnu.org/licenses/> for
3838
# more details.
3939

4040
# USAGE
@@ -66,14 +66,15 @@
6666
# https://linuxconfig.org/how-to-use-ffmpeg-to-convert-multiple-media-files-at-once-on-linux
6767

6868
# Revision history:
69+
# 2021-11-29 Updating license (1.3)
6970
# 2021-10-15 Adding help, dependency checks, and other standardization (1.2)
7071
# 2021-10-12 Minor cleanup (1.1)
7172
# 2021-06-29 Initial release (1.0)
7273
# ---------------------------------------------------------------------------
7374

7475
# Standard variables
7576
PROGNAME=${0##*/}
76-
VERSION="1.2"
77+
VERSION="1.3"
7778
red=$(tput setaf 1)
7879
green=$(tput setaf 2)
7980
yellow=$(tput setaf 3)

videos/copyvid.sh

+5-4
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
# Copyright 2021, Ivan Boothe <[email protected]>
99

1010
# This program 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-
# the Free Software Foundation, either version 3 of the License, or
11+
# it under the terms of the GNU Affero General Public License as published
12+
# by the Free Software Foundation, either version 3 of the License, or
1313
# (at your option) any later version.
1414

1515
# This program is distributed in the hope that it will be useful,
1616
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1717
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18-
# GNU General Public License at <http://www.gnu.org/licenses/> for
18+
# GNU Affero General Public License at <http://www.gnu.org/licenses/> for
1919
# more details.
2020

2121
# USAGE
@@ -24,13 +24,14 @@
2424
# $ ./copyvid.sh [-h|--help]
2525

2626
# Revision history:
27+
# 2021-11-29 Updating license (1.2)
2728
# 2021-10-15 Adding help, dependency checks, and other standardization (1.1)
2829
# 2021-10-11 Initial release (1.0)
2930
# ---------------------------------------------------------------------------
3031

3132
# Standard variables
3233
PROGNAME=${0##*/}
33-
VERSION="1.1"
34+
VERSION="1.2"
3435
red=$(tput setaf 1)
3536
green=$(tput setaf 2)
3637
yellow=$(tput setaf 3)

videos/fadevid.sh

+5-4
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
# Copyright 2021, Ivan Boothe <[email protected]>
1212

1313
# This program is free software: you can redistribute it and/or modify
14-
# it under the terms of the GNU General Public License as published by
15-
# the Free Software Foundation, either version 3 of the License, or
14+
# it under the terms of the GNU Affero General Public License as published
15+
# by the Free Software Foundation, either version 3 of the License, or
1616
# (at your option) any later version.
1717

1818
# This program is distributed in the hope that it will be useful,
1919
# but WITHOUT ANY WARRANTY; without even the implied warranty of
2020
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21-
# GNU General Public License at <http://www.gnu.org/licenses/> for
21+
# GNU Affero General Public License at <http://www.gnu.org/licenses/> for
2222
# more details.
2323

2424
# USAGE
@@ -49,14 +49,15 @@
4949
# https://video.stackexchange.com/q/28269
5050

5151
# Revision history:
52+
# 2021-11-29 Updating license (1.3)
5253
# 2021-10-18 Adding time as a command-line option (1.2)
5354
# 2021-10-15 Adding help, dependency checks, and other standardization (1.1)
5455
# 2021-10-06 Initial release (1.0)
5556
# ---------------------------------------------------------------------------
5657

5758
# Standard variables
5859
PROGNAME=${0##*/}
59-
VERSION="1.2"
60+
VERSION="1.3"
6061
red=$(tput setaf 1)
6162
green=$(tput setaf 2)
6263
yellow=$(tput setaf 3)

videos/joinvid.sh

+5-4
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
# Copyright 2021, Ivan Boothe <[email protected]>
1111

1212
# This program is free software: you can redistribute it and/or modify
13-
# it under the terms of the GNU General Public License as published by
14-
# the Free Software Foundation, either version 3 of the License, or
13+
# it under the terms of the GNU Affero General Public License as published
14+
# by the Free Software Foundation, either version 3 of the License, or
1515
# (at your option) any later version.
1616

1717
# This program is distributed in the hope that it will be useful,
1818
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1919
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20-
# GNU General Public License at <http://www.gnu.org/licenses/> for
20+
# GNU Affero General Public License at <http://www.gnu.org/licenses/> for
2121
# more details.
2222

2323
# USAGE
@@ -26,13 +26,14 @@
2626
# $ ./joinvid.sh [-h|--help]
2727

2828
# Revision history:
29+
# 2021-11-29 Updating license (1.2)
2930
# 2021-10-15 Adding help, dependency checks, and other standardization (1.1)
3031
# 2021-10-11 Initial release (1.0)
3132
# ---------------------------------------------------------------------------
3233

3334
# Standard variables
3435
PROGNAME=${0##*/}
35-
VERSION="1.1"
36+
VERSION="1.2"
3637
red=$(tput setaf 1)
3738
green=$(tput setaf 2)
3839
yellow=$(tput setaf 3)

videos/markvid.sh

+5-4
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414
# Copyright 2021, Ivan Boothe <[email protected]>
1515

1616
# This program is free software: you can redistribute it and/or modify
17-
# it under the terms of the GNU General Public License as published by
18-
# the Free Software Foundation, either version 3 of the License, or
17+
# it under the terms of the GNU Affero General Public License as published
18+
# by the Free Software Foundation, either version 3 of the License, or
1919
# (at your option) any later version.
2020

2121
# This program is distributed in the hope that it will be useful,
2222
# but WITHOUT ANY WARRANTY; without even the implied warranty of
2323
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24-
# GNU General Public License at <http://www.gnu.org/licenses/> for
24+
# GNU Affero General Public License at <http://www.gnu.org/licenses/> for
2525
# more details.
2626

2727
# USAGE
@@ -45,13 +45,14 @@
4545
# https://ffmpeg.org/ffmpeg-filters.html#overlay-1
4646

4747
# Revision history:
48+
# 2021-11-29 Updating license (1.2)
4849
# 2021-10-15 Adding help, dependency checks, and other standardization (1.1)
4950
# 2021-10-06 Initial release (1.0)
5051
# ---------------------------------------------------------------------------
5152

5253
# Standard variables
5354
PROGNAME=${0##*/}
54-
VERSION="1.1"
55+
VERSION="1.2"
5556
red=$(tput setaf 1)
5657
green=$(tput setaf 2)
5758
yellow=$(tput setaf 3)

videos/minsmvid.sh

+5-4
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
# Copyright 2021, Ivan Boothe <[email protected]>
99

1010
# This program 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-
# the Free Software Foundation, either version 3 of the License, or
11+
# it under the terms of the GNU Affero General Public License as published
12+
# by the Free Software Foundation, either version 3 of the License, or
1313
# (at your option) any later version.
1414

1515
# This program is distributed in the hope that it will be useful,
1616
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1717
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18-
# GNU General Public License at <http://www.gnu.org/licenses/> for
18+
# GNU Affero General Public License at <http://www.gnu.org/licenses/> for
1919
# more details.
2020

2121
# USAGE
@@ -24,6 +24,7 @@
2424
# $ ./fadevid.sh [-h|--help]
2525

2626
# Revision history:
27+
# 2021-11-29 Updating license (1.3)
2728
# 2021-10-18 Bitrate is now optional; if not provided at runtime the script
2829
# will inform you of the current bitrate to give some guidance (1.2)
2930
# 2021-10-15 Adding help, dependency checks, and other standardization (1.1)
@@ -32,7 +33,7 @@
3233

3334
# Standard variables
3435
PROGNAME=${0##*/}
35-
VERSION="1.2"
36+
VERSION="1.3"
3637
red=$(tput setaf 1)
3738
green=$(tput setaf 2)
3839
yellow=$(tput setaf 3)

0 commit comments

Comments
 (0)