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

Commit

Permalink
Prepare for release v3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
jarun committed May 30, 2019
1 parent 47d2d84 commit ed66b3c
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 15 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
googler 3.9
2019-05-30

What's in?
- fix issue - `googler` showing "No results."
- show matched keywords in bold in result abstracts
- option `--colorize` for more control on colors
- better support for colors on Windows
- switch to CircleCI from Travis
- option `--noua` is deprecated (noop) and will be removed in future

-------------------------------------------------------------------------------

googler 3.8
2019-03-27

Expand Down
20 changes: 13 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ To remove `googler` and associated docs, run

To install the latest stable version, run

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

You could then let googler upgrade itself by running

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

```
usage: googler [-h] [-s N] [-n N] [-N] [-c TLD] [-l LANG] [-x] [-C]
[--colors COLORS] [-j] [-t dN] [-w SITE] [--unfilter]
[-p PROXY] [--noua] [--notweak] [--json] [--url-handler UTIL]
[--show-browser-logs] [--np] [-u] [--include-git] [-v] [-d]
usage: googler [-h] [-s N] [-n N] [-N] [-c TLD] [-l LANG] [-x]
[--colorize [{auto,always,never}]] [-C] [--colors COLORS] [-j]
[-t dN] [-w SITE] [--unfilter] [-p PROXY] [--noua] [--notweak]
[--json] [--url-handler UTIL] [--show-browser-logs] [--np] [-u]
[--include-git] [-v] [-d]
[KEYWORD [KEYWORD ...]]
Google from the command-line.
Expand All @@ -187,7 +188,12 @@ optional arguments:
e.g., 'in' for India
-l LANG, --lang LANG display in language LANG
-x, --exact disable automatic spelling correction
-C, --nocolor disable color output
--colorize [{auto,always,never}]
whether to colorize output; defaults to 'auto', which
enables color when stdout is a tty device; using
--colorize without an argument is equivalent to
--colorize=always
-C, --nocolor equivalent to --colorize=never
--colors COLORS set output colors (see man page for details)
-j, --first, --lucky open the first result in web browser and exit
-t dN, --time dN time limit search [h5 (5 hrs), d5 (5 days), w5 (5
Expand All @@ -197,7 +203,7 @@ optional arguments:
-p PROXY, --proxy PROXY
tunnel traffic through an HTTP proxy; PROXY is of the
form [http://][user:password@]proxyhost[:port]
--noua disable user agent
--noua legacy option (no effect)
--notweak disable TCP optimizations and forced TLS 1.2
--json output in JSON format; implies --noprompt
--url-handler UTIL custom script or cli utility to open results
Expand Down
2 changes: 1 addition & 1 deletion googler
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ except ValueError:

# Constants

_VERSION_ = '3.8'
_VERSION_ = '3.9'

COLORMAP = {k: '\x1b[%sm' % v for k, v in {
'a': '30', 'b': '31', 'c': '32', 'd': '33',
Expand Down
2 changes: 1 addition & 1 deletion googler.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "GOOGLER" "1" "27 Mar 2019" "Version 3.8" "User Commands"
.TH "GOOGLER" "1" "30 May 2019" "Version 3.9" "User Commands"
.SH NAME
googler \- Google from the command-line
.SH SYNOPSIS
Expand Down
14 changes: 8 additions & 6 deletions packagecore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,20 @@ packages:
deps:
- python
container: "archlinux/base"
centos7.2:
centos7.4:
builddeps:
- make
deps:
- python
commands:
pre:
- yum install epel-release
centos7.3:
centos7.5:
builddeps:
- make
deps:
- python
commands:
pre:
- yum install epel-release
centos7.4:
centos7.6:
builddeps:
- make
deps:
Expand Down Expand Up @@ -69,6 +66,11 @@ packages:
- make
deps:
- python3
fedora30:
builddeps:
- make
deps:
- python3
opensuse42.3:
builddeps:
- make
Expand Down

6 comments on commit ed66b3c

@jarun
Copy link
Owner Author

@jarun jarun commented on ed66b3c May 30, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dilawar, @eclipseo, @maxice8, @pabloariasal, @zmwangx, @szlin googler v3.9 is released!

@eclipseo
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

googler v3.9 pushed to Fedora 29 to 31!

@szlin
Copy link
Collaborator

@szlin szlin commented on ed66b3c Jun 3, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jarun New version of googler has been uploaded to Debian archive, thanks.

@jarun
Copy link
Owner Author

@jarun jarun commented on ed66b3c Jun 3, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks guys!

@dilawar
Copy link
Contributor

@dilawar dilawar commented on ed66b3c Jun 3, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jarun
Copy link
Owner Author

@jarun jarun commented on ed66b3c Jun 3, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you!

Please sign in to comment.