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

Commit c91f11d

Browse files
committed
Prepare for release v3.5
1 parent cbf74f8 commit c91f11d

File tree

5 files changed

+39
-17
lines changed

5 files changed

+39
-17
lines changed

CHANGELOG

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
googler 3.5
2+
2018-02-16
3+
4+
What's in?
5+
- URL folding to show only domain name
6+
- Omniprompt key `c` to copy URL to clipboard
7+
- Support env var `DISABLE_PROMPT_COLOR` to disable prompt color (see #203)
8+
9+
Note: Python 3.3 reached EOL, will not be supported anymore.
10+
11+
-------------------------------------------------------------------------------
12+
113
googler 3.4
214
2017-10-02
315

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ before installation.
103103

104104
#### Release packages
105105

106-
Packages for Arch Linux, CentOS, Debian, Fedora and Ubuntu are available with the [latest stable release](https://github.com/jarun/googler/releases/latest).
106+
Packages for Arch Linux, CentOS, Debian, Fedora, openSUSE and Ubuntu are available with the [latest stable release](https://github.com/jarun/googler/releases/latest).
107107

108108
#### From source
109109

@@ -131,7 +131,7 @@ To remove `googler` and associated docs, run
131131

132132
To install the latest stable version, run
133133

134-
$ sudo curl -o /usr/local/bin/googler https://raw.githubusercontent.com/jarun/googler/v3.4/googler && sudo chmod +x /usr/local/bin/googler
134+
$ sudo curl -o /usr/local/bin/googler https://raw.githubusercontent.com/jarun/googler/v3.5/googler && sudo chmod +x /usr/local/bin/googler
135135

136136
You could then let googler upgrade itself by running
137137

@@ -427,7 +427,7 @@ Pull requests are welcome. Please visit [#209](https://github.com/jarun/googler/
427427
### Developers
428428

429429
1. Copyright © 2008 Henri Hakkinen
430-
2. Copyright © 2015-2017 [Arun Prakash Jana](https://github.com/jarun)
430+
2. Copyright © 2015-2018 [Arun Prakash Jana](https://github.com/jarun)
431431
3. [Zhiming Wang](https://github.com/zmwangx)
432432
4. [Johnathan Jenkins](https://github.com/shaggytwodope)
433433
5. [SZ Lin](https://github.com/szlin)

googler

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python3
22
#
33
# Copyright © 2008 Henri Hakkinen
4-
# Copyright © 2015-2017 Arun Prakash Jana <[email protected]>
4+
# Copyright © 2015-2018 Arun Prakash Jana <[email protected]>
55
#
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU General Public License as published by
@@ -68,7 +68,7 @@ signal.signal(signal.SIGINT, sigint_handler)
6868

6969
# Constants
7070

71-
_VERSION_ = '3.4'
71+
_VERSION_ = '3.5'
7272

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

8585
# Disguise as Firefox on Ubuntu
86-
USER_AGENT = ('Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:56.0) Gecko/20100101 Firefox/56.0')
86+
USER_AGENT = ('Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:58.0) Gecko/20100101 Firefox/58.0')
8787
ua = True # User Agent is enabled by default
8888

8989
text_browsers = ['elinks', 'links', 'lynx', 'w3m', 'www-browser']
@@ -2140,7 +2140,7 @@ class GooglerArgumentParser(argparse.ArgumentParser):
21402140
file.write(textwrap.dedent("""
21412141
Version %s
21422142
Copyright © 2008 Henri Hakkinen
2143-
Copyright © 2015-2017 Arun Prakash Jana <[email protected]>
2143+
Copyright © 2015-2018 Arun Prakash Jana <[email protected]>
21442144
Zhiming Wang <[email protected]>
21452145
License: GPLv3
21462146
Webpage: https://github.com/jarun/googler

googler.1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "GOOGLER" "1" "2 Oct 2017" "Version 3.4" "User Commands"
1+
.TH "GOOGLER" "1" "16 Feb 2018" "Version 3.5" "User Commands"
22
.SH NAME
33
googler \- Google from the command-line
44
.SH SYNOPSIS
@@ -398,7 +398,7 @@ Zhiming Wang <[email protected]>
398398
.SH LICENSE
399399
Copyright \(co 2008 Henri Hakkinen
400400
.br
401-
Copyright \(co 2015-2017 Arun Prakash Jana <[email protected]>
401+
Copyright \(co 2015-2018 Arun Prakash Jana <[email protected]>
402402
.PP
403403
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
404404
.br

packagecore.yaml

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,6 @@ packages:
1212
- make
1313
deps:
1414
- python
15-
fedora26:
16-
builddeps:
17-
- make
18-
deps:
19-
- python3
2015
centos7.3:
2116
builddeps:
2217
- make
@@ -25,17 +20,32 @@ packages:
2520
commands:
2621
pre:
2722
- yum install epel-release
28-
ubuntu16.04:
23+
debian9:
2924
builddeps:
3025
- make
3126
deps:
3227
- python3
33-
ubuntu17.10:
28+
fedora26:
3429
builddeps:
3530
- make
3631
deps:
3732
- python3
38-
debian9:
33+
fedora27:
34+
builddeps:
35+
- make
36+
deps:
37+
- python3
38+
opensuse42.3:
39+
builddeps:
40+
- make
41+
deps:
42+
- python3
43+
ubuntu16.04:
44+
builddeps:
45+
- make
46+
deps:
47+
- python3
48+
ubuntu17.10:
3949
builddeps:
4050
- make
4151
deps:

0 commit comments

Comments
 (0)