File tree Expand file tree Collapse file tree 8 files changed +26
-11
lines changed
Expand file tree Collapse file tree 8 files changed +26
-11
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ Feel free to join [our Gitter chat room](https://gitter.im/DragonComputer/Lobby)
4646Download the [ latest release] ( https://github.com/DragonComputer/Dragonfire/releases/latest ) (the ` .deb ` file) and:
4747
4848``` Shell
49- sudo dpkg -i dragonfire_1.0.1_amd64 .deb
49+ sudo dpkg -i dragonfire_1.0.2_amd64 .deb
5050```
5151
5252or with Docker: ` docker pull dragoncomputer/dragonfire `
Original file line number Diff line number Diff line change 1+ dragonfire (1.0.2) unstable; urgency=medium
2+
3+ * libgtk2.0-0 and gir1.2-gtk-3.0 dependencies are added
4+ * The issue related to inactive lock in the speech recognizers is fixed
5+ * deepspeech Python package dependency is upgraded from 0.2.0a5 to 0.4.1
6+ * The DeepSpeech the model from 0.1.1 to 0.4.1
7+ * Time telling feature(a built-in command) is added
8+ * Several issues in built-in commands are fixed
9+ * Release version mismatch is fixed
10+
11+ -- Mehmet Mert Yildiran <
[email protected] > Wed, 6 Mar 2019 04:27:54 +0300
12+
113dragonfire (1.0.1) unstable; urgency=medium
214
315 * Dependency issues are fixed
Original file line number Diff line number Diff line change 11[Desktop Entry]
2- Version =1.0.1
2+ Version =1.0.2
33Type =Application
44Name =Dragonfire
55Comment =Virtual Assistant for Linux
Original file line number Diff line number Diff line change 11#!/usr/bin/python3
2- # EASY-INSTALL-ENTRY-SCRIPT: 'dragonfire==1.0.0 ','console_scripts','dragonfire'
3- __requires__ = 'dragonfire==1.0.0 '
2+ # EASY-INSTALL-ENTRY-SCRIPT: 'dragonfire==1.0.2 ','console_scripts','dragonfire'
3+ __requires__ = 'dragonfire==1.0.2 '
44import re
55import sys
66from pkg_resources import load_entry_point
77
88if __name__ == '__main__' :
99 sys .argv [0 ] = re .sub (r'(-script\.pyw?|\.exe)?$' , '' , sys .argv [0 ])
1010 sys .exit (
11- load_entry_point ('dragonfire==1.0.0 ' , 'console_scripts' , 'dragonfire' )()
11+ load_entry_point ('dragonfire==1.0.2 ' , 'console_scripts' , 'dragonfire' )()
1212 )
Original file line number Diff line number Diff line change 22
33# export DH_VERBOSE = 1
44export PYBUILD_NAME = foo
5- export PYBUILD_DISABLE_python3 = test
5+ export PYBUILD_DISABLE_python3 = test
66
77% :
88 dh $@ --with python3 --buildsystem=pybuild
99
10+ override_dh_python3 :
11+ dh_python3 --no-guessing-deps
12+
1013override_dh_installman :
1114 dh_installman debian/dragonfire.1
Original file line number Diff line number Diff line change 2525# -- Project information -----------------------------------------------------
2626
2727project = 'Dragonfire'
28- copyright = '2018 , Mehmet Mert Yıldıran'
28+ copyright = '2019 , Mehmet Mert Yıldıran'
2929author = 'Mehmet Mert Yıldıran'
3030
3131# The short X.Y version
32- version = '1.0.0 '
32+ version = '1.0.2 '
3333# The full version, including alpha/beta/rc tags
34- release = '1.0.0 '
34+ release = '1.0.2 '
3535
3636
3737# -- General configuration ---------------------------------------------------
Original file line number Diff line number Diff line change 5252from sqlalchemy .orm import sessionmaker # ORM submodule of SQLAlchemy
5353
5454
55- __version__ = '1.0.0 '
55+ __version__ = '1.0.2 '
5656
5757DRAGONFIRE_PATH = os .path .dirname (os .path .abspath (inspect .getfile (inspect .currentframe ())))
5858FNULL = open (os .devnull , 'w' )
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ def pkgconfig(*packages):
6464 # Versions should comply with PEP440. For a discussion on single-sourcing
6565 # the version across setup.py and the project code, see
6666 # https://packaging.python.org/en/latest/single_source_version.html
67- version = '1.0.1 ' ,
67+ version = '1.0.2 ' ,
6868 description = 'Dragonfire is an open source virtual assistant project for Ubuntu based Linux distributions' ,
6969 long_description = long_description ,
7070 long_description_content_type = 'text/markdown' ,
You can’t perform that action at this time.
0 commit comments