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.7
Browse files Browse the repository at this point in the history
  • Loading branch information
jarun committed Sep 16, 2018
1 parent db47573 commit 1aef6f8
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
googler 3.7
2018-09-16

What's in?
- Support xclip as a clipboard utility on *nix
- Support GNU Screen and tmux as clipboard fallback
- Support Termux clipboard on Android

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

googler 3.6
2018-05-23

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@

`googler` requires Python 3.4 or later. Only the latest patch release of each minor version is supported.

To copy url to clipboard at the omniprompt, `googler` looks for `xsel` or `xclip` or `termux-clipboard-set` (in the same order) on Linux, `pbcopy` (default installed) on OS X and `clip` (default installed) on Windows.
To copy url to clipboard at the omniprompt, `googler` looks for `xsel` or `xclip` or `termux-clipboard-set` (in the same order) on Linux, `pbcopy` (default installed) on OS X and `clip` (default installed) on Windows. It also supports GNU Screen and tmux copy-paste buffers in the absence of X11.

#### From a package manager

Expand Down Expand Up @@ -135,7 +135,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.6/googler && sudo chmod +x /usr/local/bin/googler
$ sudo curl -o /usr/local/bin/googler https://raw.githubusercontent.com/jarun/googler/v3.7/googler && sudo chmod +x /usr/local/bin/googler

You could then let googler upgrade itself by running

Expand Down
4 changes: 2 additions & 2 deletions googler
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ signal.signal(signal.SIGINT, sigint_handler)

# Constants

_VERSION_ = '3.6'
_VERSION_ = '3.7'

COLORMAP = {k: '\x1b[%sm' % v for k, v in {
'a': '30', 'b': '31', 'c': '32', 'd': '33',
Expand All @@ -83,7 +83,7 @@ COLORMAP = {k: '\x1b[%sm' % v for k, v in {
}.items()}

# Disguise as Firefox on Ubuntu
USER_AGENT = ('Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:60.0) Gecko/20100101 Firefox/60.0')
USER_AGENT = ('Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0')
ua = True # User Agent is enabled by default

text_browsers = ['elinks', 'links', 'lynx', 'w3m', 'www-browser']
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" "23 May 2018" "Version 3.6" "User Commands"
.TH "GOOGLER" "1" "16 Sep 2018" "Version 3.7" "User Commands"
.SH NAME
googler \- Google from the command-line
.SH SYNOPSIS
Expand Down

6 comments on commit 1aef6f8

@szlin
Copy link
Collaborator

@szlin szlin commented on 1aef6f8 Sep 16, 2018

Choose a reason for hiding this comment

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

@jarun The new version of googler has been uploaded.

@jarun
Copy link
Owner Author

@jarun jarun commented on 1aef6f8 Sep 16, 2018

Choose a reason for hiding this comment

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

Thanks Lin! That was fast!

@eclipseo, @maxice8, @pabloariasal, @zmwangx googler v3.7 is released!

@maxice8
Copy link
Contributor

@maxice8 maxice8 commented on 1aef6f8 Sep 16, 2018 via email

Choose a reason for hiding this comment

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

@pabloariasal
Copy link

@pabloariasal pabloariasal commented on 1aef6f8 Sep 16, 2018 via email

Choose a reason for hiding this comment

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

@eclipseo
Copy link

Choose a reason for hiding this comment

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

Built on Fedora 27->30.

@jarun
Copy link
Owner Author

@jarun jarun commented on 1aef6f8 Sep 16, 2018

Choose a reason for hiding this comment

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

Thanks guys!

Please sign in to comment.