preparing new release

This commit is contained in:
Radovan Garabík 2021-07-26 18:11:58 +02:00
parent 09793f88a6
commit d8fc493d72
4 changed files with 14 additions and 2 deletions

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
grc (1.13-1) unstable; urgency=low
* do not add sh aliases unless explicitely allowed in /etc/default/grc (closes: #984629)
* several minor improvements
-- Radovan Garabík <garabik@kassiopeia.juls.savba.sk> Mon, 26 Jul 2021 18:08:34 +0200
grc (1.12-1) unstable; urgency=low
* add new configurations

1
debian/grc.default vendored
View File

@ -2,6 +2,7 @@
# true or false
#
# since this is rather invasive, it defaults to false
#
# changing it makes your shell source /etc/profile.d/grc
GRC_ALIASES=false

4
grc
View File

@ -6,11 +6,11 @@ import os, re, string, sys, getopt, signal
def version():
print ("Generic Colouriser 1.12")
print ("Generic Colouriser 1.13")
sys.exit()
def help():
print("""Generic Colouriser 1.12
print("""Generic Colouriser 1.13
grc [options] command [args]
Options:
-e --stderr redirect stderr. If this option is selected,

4
grc.sh
View File

@ -1,5 +1,9 @@
# aliases for grc(1)
# this will execute only if there is a line with
# GRC_ALIASES=true
# in /etc/default/grc
[ -f /etc/default/grc ] && . /etc/default/grc
[ x$GRC_ALIASES = xtrue ] || return 0