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)
46
46
Download the [ latest release] ( https://github.com/DragonComputer/Dragonfire/releases/latest ) (the ` .deb ` file) and:
47
47
48
48
``` Shell
49
- sudo dpkg -i dragonfire_1.0.1_amd64 .deb
49
+ sudo dpkg -i dragonfire_1.0.2_amd64 .deb
50
50
```
51
51
52
52
or 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
+
1
13
dragonfire (1.0.1) unstable; urgency=medium
2
14
3
15
* Dependency issues are fixed
Original file line number Diff line number Diff line change 1
1
[Desktop Entry]
2
- Version =1.0.1
2
+ Version =1.0.2
3
3
Type =Application
4
4
Name =Dragonfire
5
5
Comment =Virtual Assistant for Linux
Original file line number Diff line number Diff line change 1
1
#!/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 '
4
4
import re
5
5
import sys
6
6
from pkg_resources import load_entry_point
7
7
8
8
if __name__ == '__main__' :
9
9
sys .argv [0 ] = re .sub (r'(-script\.pyw?|\.exe)?$' , '' , sys .argv [0 ])
10
10
sys .exit (
11
- load_entry_point ('dragonfire==1.0.0 ' , 'console_scripts' , 'dragonfire' )()
11
+ load_entry_point ('dragonfire==1.0.2 ' , 'console_scripts' , 'dragonfire' )()
12
12
)
Original file line number Diff line number Diff line change 2
2
3
3
# export DH_VERBOSE = 1
4
4
export PYBUILD_NAME = foo
5
- export PYBUILD_DISABLE_python3 = test
5
+ export PYBUILD_DISABLE_python3 = test
6
6
7
7
% :
8
8
dh $@ --with python3 --buildsystem=pybuild
9
9
10
+ override_dh_python3 :
11
+ dh_python3 --no-guessing-deps
12
+
10
13
override_dh_installman :
11
14
dh_installman debian/dragonfire.1
Original file line number Diff line number Diff line change 25
25
# -- Project information -----------------------------------------------------
26
26
27
27
project = 'Dragonfire'
28
- copyright = '2018 , Mehmet Mert Yıldıran'
28
+ copyright = '2019 , Mehmet Mert Yıldıran'
29
29
author = 'Mehmet Mert Yıldıran'
30
30
31
31
# The short X.Y version
32
- version = '1.0.0 '
32
+ version = '1.0.2 '
33
33
# The full version, including alpha/beta/rc tags
34
- release = '1.0.0 '
34
+ release = '1.0.2 '
35
35
36
36
37
37
# -- General configuration ---------------------------------------------------
Original file line number Diff line number Diff line change 52
52
from sqlalchemy .orm import sessionmaker # ORM submodule of SQLAlchemy
53
53
54
54
55
- __version__ = '1.0.0 '
55
+ __version__ = '1.0.2 '
56
56
57
57
DRAGONFIRE_PATH = os .path .dirname (os .path .abspath (inspect .getfile (inspect .currentframe ())))
58
58
FNULL = open (os .devnull , 'w' )
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ def pkgconfig(*packages):
64
64
# Versions should comply with PEP440. For a discussion on single-sourcing
65
65
# the version across setup.py and the project code, see
66
66
# https://packaging.python.org/en/latest/single_source_version.html
67
- version = '1.0.1 ' ,
67
+ version = '1.0.2 ' ,
68
68
description = 'Dragonfire is an open source virtual assistant project for Ubuntu based Linux distributions' ,
69
69
long_description = long_description ,
70
70
long_description_content_type = 'text/markdown' ,
You can’t perform that action at this time.
0 commit comments