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.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jarun committed Mar 27, 2019
1 parent b4f75be commit da4ea88
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 11 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
googler 3.8
2019-03-27

What's in?
- A complete parser rewrite
- Visual redesign of the output format
- Text-wrapping for CJK wide characters
- Refresh current page on URL expansion toggle
- Available on Raspbian testing and Chocolatey
- Several important fixes

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

googler 3.7.1
2018-10-10

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,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.7.1/googler && sudo chmod +x /usr/local/bin/googler
$ sudo curl -o /usr/local/bin/googler https://raw.githubusercontent.com/jarun/googler/v3.8/googler && sudo chmod +x /usr/local/bin/googler

You could then let googler upgrade itself by running

Expand Down Expand Up @@ -205,7 +205,7 @@ optional arguments:
--show-browser-logs do not suppress browser output (stdout and stderr)
--np, --noprompt search and exit, do not prompt
-u, --upgrade perform in-place self-upgrade
--include-git when used with --upgrade, upgrade to latest git master
--include-git when used with --upgrade, get latest git master
-v, --version show program's version number and exit
-d, --debug enable debugging
Expand Down
4 changes: 2 additions & 2 deletions googler
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ except ValueError:

# Constants

_VERSION_ = '3.7.1'
_VERSION_ = '3.8'

COLORMAP = {k: '\x1b[%sm' % v for k, v in {
'a': '30', 'b': '31', 'c': '32', 'd': '33',
Expand Down Expand Up @@ -3158,7 +3158,7 @@ def parse_args(args=None, namespace=None):
addarg('-u', '--upgrade', action='store_true',
help='perform in-place self-upgrade')
addarg('--include-git', action='store_true',
help='when used with --upgrade, upgrade to latest git master')
help='when used with --upgrade, get latest git master')
addarg('-v', '--version', action='version', version=_VERSION_)
addarg('-d', '--debug', action='store_true', help='enable debugging')
# Hidden option for interacting with DOM in an IPython/pdb shell
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" "10 Oct 2018" "Version 3.7.1" "User Commands"
.TH "GOOGLER" "1" "27 Mar 2019" "Version 3.8" "User Commands"
.SH NAME
googler \- Google from the command-line
.SH SYNOPSIS
Expand Down
18 changes: 12 additions & 6 deletions packagecore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ packages:
- make
deps:
- python
container: "archlinux/base"
centos7.0:
builddeps:
- make
Expand Down Expand Up @@ -79,16 +80,21 @@ packages:
- make
deps:
- python3
opensuse42.1:
builddeps:
- make
deps:
- python3
opensuse42.2:
fedora29:
builddeps:
- make
deps:
- python3
# opensuse42.1:
# builddeps:
# - make
# deps:
# - python3
# opensuse42.2:
# builddeps:
# - make
# deps:
# - python3
opensuse42.3:
builddeps:
- make
Expand Down

11 comments on commit da4ea88

@jarun
Copy link
Owner Author

@jarun jarun commented on da4ea88 Mar 27, 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.8 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.

Built on Fedora F29-F31.

@zmwangx
Copy link
Collaborator

Choose a reason for hiding this comment

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

Submitted to both Homebrew and Chocolatey.

@jarun
Copy link
Owner Author

@jarun jarun commented on da4ea88 Mar 27, 2019

Choose a reason for hiding this comment

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

Thanks @eclipseo and @zmwangx!

@dilawar
Copy link
Contributor

Choose a reason for hiding this comment

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

Request is submitted to openSUSE.

@maxice8
Copy link
Contributor

Choose a reason for hiding this comment

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

Void Done

@jarun
Copy link
Owner Author

@jarun jarun commented on da4ea88 Mar 28, 2019

Choose a reason for hiding this comment

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

Thanks @dilawar and @maxice8!

@szlin
Copy link
Collaborator

@szlin szlin commented on da4ea88 Apr 1, 2019

Choose a reason for hiding this comment

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

Uploaded, thanks @jarun .

@jarun
Copy link
Owner Author

@jarun jarun commented on da4ea88 Apr 1, 2019

Choose a reason for hiding this comment

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

Thanks @szlin!

@zmwangx
Copy link
Collaborator

@zmwangx zmwangx commented on da4ea88 Apr 3, 2019

Choose a reason for hiding this comment

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

Lol, update to the Chocolatey package just got approved... one week later.

@jarun
Copy link
Owner Author

@jarun jarun commented on da4ea88 Apr 3, 2019

Choose a reason for hiding this comment

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

Thanks for the update @zmwangx!

BTW, I moved ddgr to CircleCI too! ;)

Please sign in to comment.