Skip to content
This repository was archived by the owner on Mar 5, 2022. It is now read-only.

Commit ed66b3c

Browse files
committed
Prepare for release v3.9
1 parent 47d2d84 commit ed66b3c

File tree

5 files changed

+36
-15
lines changed

5 files changed

+36
-15
lines changed

CHANGELOG

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
googler 3.9
2+
2019-05-30
3+
4+
What's in?
5+
- fix issue - `googler` showing "No results."
6+
- show matched keywords in bold in result abstracts
7+
- option `--colorize` for more control on colors
8+
- better support for colors on Windows
9+
- switch to CircleCI from Travis
10+
- option `--noua` is deprecated (noop) and will be removed in future
11+
12+
-------------------------------------------------------------------------------
13+
114
googler 3.8
215
2019-03-27
316

README.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ To remove `googler` and associated docs, run
144144

145145
To install the latest stable version, run
146146

147-
$ sudo curl -o /usr/local/bin/googler https://raw.githubusercontent.com/jarun/googler/v3.8/googler && sudo chmod +x /usr/local/bin/googler
147+
$ sudo curl -o /usr/local/bin/googler https://raw.githubusercontent.com/jarun/googler/v3.9/googler && sudo chmod +x /usr/local/bin/googler
148148

149149
You could then let googler upgrade itself by running
150150

@@ -167,10 +167,11 @@ Search keyword and option completion scripts for Bash, Fish and Zsh can be found
167167
#### Cmdline options
168168

169169
```
170-
usage: googler [-h] [-s N] [-n N] [-N] [-c TLD] [-l LANG] [-x] [-C]
171-
[--colors COLORS] [-j] [-t dN] [-w SITE] [--unfilter]
172-
[-p PROXY] [--noua] [--notweak] [--json] [--url-handler UTIL]
173-
[--show-browser-logs] [--np] [-u] [--include-git] [-v] [-d]
170+
usage: googler [-h] [-s N] [-n N] [-N] [-c TLD] [-l LANG] [-x]
171+
[--colorize [{auto,always,never}]] [-C] [--colors COLORS] [-j]
172+
[-t dN] [-w SITE] [--unfilter] [-p PROXY] [--noua] [--notweak]
173+
[--json] [--url-handler UTIL] [--show-browser-logs] [--np] [-u]
174+
[--include-git] [-v] [-d]
174175
[KEYWORD [KEYWORD ...]]
175176
176177
Google from the command-line.
@@ -187,7 +188,12 @@ optional arguments:
187188
e.g., 'in' for India
188189
-l LANG, --lang LANG display in language LANG
189190
-x, --exact disable automatic spelling correction
190-
-C, --nocolor disable color output
191+
--colorize [{auto,always,never}]
192+
whether to colorize output; defaults to 'auto', which
193+
enables color when stdout is a tty device; using
194+
--colorize without an argument is equivalent to
195+
--colorize=always
196+
-C, --nocolor equivalent to --colorize=never
191197
--colors COLORS set output colors (see man page for details)
192198
-j, --first, --lucky open the first result in web browser and exit
193199
-t dN, --time dN time limit search [h5 (5 hrs), d5 (5 days), w5 (5
@@ -197,7 +203,7 @@ optional arguments:
197203
-p PROXY, --proxy PROXY
198204
tunnel traffic through an HTTP proxy; PROXY is of the
199205
form [http://][user:password@]proxyhost[:port]
200-
--noua disable user agent
206+
--noua legacy option (no effect)
201207
--notweak disable TCP optimizations and forced TLS 1.2
202208
--json output in JSON format; implies --noprompt
203209
--url-handler UTIL custom script or cli utility to open results

googler

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ except ValueError:
7474

7575
# Constants
7676

77-
_VERSION_ = '3.8'
77+
_VERSION_ = '3.9'
7878

7979
COLORMAP = {k: '\x1b[%sm' % v for k, v in {
8080
'a': '30', 'b': '31', 'c': '32', 'd': '33',

googler.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "GOOGLER" "1" "27 Mar 2019" "Version 3.8" "User Commands"
1+
.TH "GOOGLER" "1" "30 May 2019" "Version 3.9" "User Commands"
22
.SH NAME
33
googler \- Google from the command-line
44
.SH SYNOPSIS

packagecore.yaml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,20 @@ packages:
1313
deps:
1414
- python
1515
container: "archlinux/base"
16-
centos7.2:
16+
centos7.4:
1717
builddeps:
1818
- make
1919
deps:
2020
- python
2121
commands:
2222
pre:
2323
- yum install epel-release
24-
centos7.3:
24+
centos7.5:
2525
builddeps:
2626
- make
2727
deps:
2828
- python
29-
commands:
30-
pre:
31-
- yum install epel-release
32-
centos7.4:
29+
centos7.6:
3330
builddeps:
3431
- make
3532
deps:
@@ -69,6 +66,11 @@ packages:
6966
- make
7067
deps:
7168
- python3
69+
fedora30:
70+
builddeps:
71+
- make
72+
deps:
73+
- python3
7274
opensuse42.3:
7375
builddeps:
7476
- make

0 commit comments

Comments
 (0)