Skip to content

Commit f7aacc8

Browse files
author
BoboTiG
committed
Version 0.0.8
1 parent 7e4cb59 commit f7aacc8

5 files changed

Lines changed: 12 additions & 7 deletions

File tree

doc/AUTHORS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
This module is maintained by Mickaël Schoentgen <contact@tiger-222.fr>.
1+
This module is maintained by Mickaël Schoentgen <mickael@jmsinfo.co>.
22
If you find problems, please submit bug reports/patches via the
33
GitHub issue tracker (https://github.com/BoboTiG/python-mss/issues).

doc/CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,11 @@ History:
33
<see Git checkin messages for history>
44

55
devel 201y/mm/dd
6+
7+
0.0.8 2015/02/04
68
- fix #3: filename's dir is not used when saving
79
- fix #4: robustness to MSSWindows.get_pixels
10+
- fix "E713 test for membership should be 'not in'"
811
- raise an exception for unimplemented methods
912
- new contributors: sergey-vin, Alexander 'thehesiod' Mohr
1013

doc/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2013-2014, Mickaël 'Tiger-222' Schoentgen
1+
Copyright (c) 2013-2015, Mickaël 'Tiger-222' Schoentgen
22

33
Permission to use, copy, modify, and distribute this software and its
44
documentation for any purpose and without fee or royalty is hereby

doc/TODO

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1-
Still needed:
2-
* support for additional systems
1+
2+
[ ] GNU/Linux: do not trust XML config files, use pure cpython
3+
[ ] Mac OSX: use pure ctype, no Quartz
4+
[ ] Support for additional systems

mss.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
''' A cross-platform multi-screen shot module in pure python using ctypes.
55
6-
This module is maintained by Mickaël Schoentgen <contact@tiger-222.fr>.
6+
This module is maintained by Mickaël Schoentgen <mickael@jmsinfo.co>.
77
88
Note: please keep this module compatible to Python 2.6.
99
@@ -15,10 +15,10 @@
1515
from __future__ import (unicode_literals, absolute_import,
1616
division, print_function)
1717

18-
__version__ = '0.0.7'
18+
__version__ = '0.0.8'
1919
__author__ = "Mickaël 'Tiger-222' Schoentgen"
2020
__copyright__ = '''
21-
Copyright (c) 2013-2014, Mickaël 'Tiger-222' Schoentgen
21+
Copyright (c) 2013-2015, Mickaël 'Tiger-222' Schoentgen
2222
2323
Permission to use, copy, modify, and distribute this software and its
2424
documentation for any purpose and without fee or royalty is hereby

0 commit comments

Comments
 (0)