Skip to content

Commit

Permalink
Prepare for release v1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jarun committed Apr 4, 2018
1 parent 788d6c9 commit 141f5b7
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 9 deletions.
16 changes: 13 additions & 3 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
ddgr 1.2
ddgr v1.4
2018-04-05

What's in?
- Copy URL at omniprompt
- Check default stdout encoding at start
- New environment variable DISABLE_PROMPT_COLOR

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

ddgr v1.2
2017-12-08

What's in?
Expand All @@ -8,7 +18,7 @@ What's in?

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

ddgr 1.1
ddgr v1.1
2017-11-29

What's in?
Expand All @@ -21,7 +31,7 @@ What's in?

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

ddgr 1.0
ddgr v1.0
2017-11-05

What's in?
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ The color configuration is similar to that of [`googler` colors](https://github.
- [SZ Lin](https://github.com/szlin)
- [Alex Gontar](https://github.com/mosegontar)

Copyright © 2016-2017 [Arun Prakash Jana](mailto:[email protected])
Copyright © 2016-2018 [Arun Prakash Jana](mailto:[email protected])

### In the Press

Expand Down
6 changes: 3 additions & 3 deletions ddgr
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
#
# Copyright (C) 2016-2017 Arun Prakash Jana <[email protected]>
# Copyright (C) 2016-2018 Arun Prakash Jana <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -55,7 +55,7 @@ signal.signal(signal.SIGINT, sigint_handler)

# Constants

_VERSION_ = '1.2'
_VERSION_ = '1.4'

COLORMAP = {k: '\x1b[%sm' % v for k, v in {
'a': '30', 'b': '31', 'c': '32', 'd': '33',
Expand Down Expand Up @@ -1571,7 +1571,7 @@ class DdgArgumentParser(argparse.ArgumentParser):
file = sys.stderr if file is None else file
file.write(textwrap.dedent("""
Version %s
Copyright © 2016-2017 Arun Prakash Jana <[email protected]>
Copyright © 2016-2018 Arun Prakash Jana <[email protected]>
License: GPLv3
Webpage: https://github.com/jarun/ddgr
""" % _VERSION_))
Expand Down
4 changes: 2 additions & 2 deletions ddgr.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "DDGR" "1" "08 Dec 2017" "Version 1.2" "User Commands"
.TH "DDGR" "1" "05 Apr 2018" "Version 1.4" "User Commands"
.SH NAME
ddgr \- DuckDuckGo from the terminal
.SH SYNOPSIS
Expand Down Expand Up @@ -332,7 +332,7 @@ Arun Prakash Jana <[email protected]>
.SH REPORTING BUGS
.I https://github.com/jarun/ddgr/issues
.SH LICENSE
Copyright \(co 2016-2017 Arun Prakash Jana <[email protected]>
Copyright \(co 2016-2018 Arun Prakash Jana <[email protected]>
.PP
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
.br
Expand Down
10 changes: 10 additions & 0 deletions packagecore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,16 @@ packages:
- make
deps:
- python3
fedora27:
builddeps:
- make
deps:
- python3
opensuse42.2:
builddeps:
- make
deps:
- python3
opensuse42.3:
builddeps:
- make
Expand Down

4 comments on commit 141f5b7

@jarun
Copy link
Owner Author

@jarun jarun commented on 141f5b7 Apr 5, 2018

Choose a reason for hiding this comment

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

@zmwangx, @szlin ddgr v1.4 is released!

@eclipseo
Copy link
Contributor

Choose a reason for hiding this comment

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

Updated on Fedora.

@szlin
Copy link
Collaborator

@szlin szlin commented on 141f5b7 Apr 5, 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 ddgr has been uploaded into Debian archive.
BTW, I am curious to know where is version 1.3?

@jarun
Copy link
Owner Author

@jarun jarun commented on 141f5b7 Apr 5, 2018

Choose a reason for hiding this comment

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

Thanks Lin! I skipped any shadow of unlucky 13. ;)

Please sign in to comment.