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

Commit da4ea88

Browse files
committed
Prepare for release v3.8
1 parent b4f75be commit da4ea88

File tree

5 files changed

+30
-11
lines changed

5 files changed

+30
-11
lines changed

CHANGELOG

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
googler 3.8
2+
2019-03-27
3+
4+
What's in?
5+
- A complete parser rewrite
6+
- Visual redesign of the output format
7+
- Text-wrapping for CJK wide characters
8+
- Refresh current page on URL expansion toggle
9+
- Available on Raspbian testing and Chocolatey
10+
- Several important fixes
11+
12+
-------------------------------------------------------------------------------
13+
114
googler 3.7.1
215
2018-10-10
316

README.md

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

146146
To install the latest stable version, run
147147

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

150150
You could then let googler upgrade itself by running
151151

@@ -205,7 +205,7 @@ optional arguments:
205205
--show-browser-logs do not suppress browser output (stdout and stderr)
206206
--np, --noprompt search and exit, do not prompt
207207
-u, --upgrade perform in-place self-upgrade
208-
--include-git when used with --upgrade, upgrade to latest git master
208+
--include-git when used with --upgrade, get latest git master
209209
-v, --version show program's version number and exit
210210
-d, --debug enable debugging
211211

googler

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ except ValueError:
7373

7474
# Constants
7575

76-
_VERSION_ = '3.7.1'
76+
_VERSION_ = '3.8'
7777

7878
COLORMAP = {k: '\x1b[%sm' % v for k, v in {
7979
'a': '30', 'b': '31', 'c': '32', 'd': '33',
@@ -3158,7 +3158,7 @@ def parse_args(args=None, namespace=None):
31583158
addarg('-u', '--upgrade', action='store_true',
31593159
help='perform in-place self-upgrade')
31603160
addarg('--include-git', action='store_true',
3161-
help='when used with --upgrade, upgrade to latest git master')
3161+
help='when used with --upgrade, get latest git master')
31623162
addarg('-v', '--version', action='version', version=_VERSION_)
31633163
addarg('-d', '--debug', action='store_true', help='enable debugging')
31643164
# Hidden option for interacting with DOM in an IPython/pdb shell

googler.1

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

packagecore.yaml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ packages:
1212
- make
1313
deps:
1414
- python
15+
container: "archlinux/base"
1516
centos7.0:
1617
builddeps:
1718
- make
@@ -79,16 +80,21 @@ packages:
7980
- make
8081
deps:
8182
- python3
82-
opensuse42.1:
83-
builddeps:
84-
- make
85-
deps:
86-
- python3
87-
opensuse42.2:
83+
fedora29:
8884
builddeps:
8985
- make
9086
deps:
9187
- python3
88+
# opensuse42.1:
89+
# builddeps:
90+
# - make
91+
# deps:
92+
# - python3
93+
# opensuse42.2:
94+
# builddeps:
95+
# - make
96+
# deps:
97+
# - python3
9298
opensuse42.3:
9399
builddeps:
94100
- make

0 commit comments

Comments
 (0)