Skip to content

Commit 8b02a8e

Browse files
author
BoboTiG
committed
Add more documents
1 parent d091138 commit 8b02a8e

8 files changed

Lines changed: 42 additions & 31 deletions

File tree

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ When initalising an instance of MSS, you can enable debug output::
5454

5555

5656
save(output='mss', oneshot=False)
57-
-----------------------------------------------------
57+
---------------------------------
5858

5959
For each monitor, grab a screen shot and save it to a file.
6060

doc/AUTHORS

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

doc/CHANGELOG

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
History:
2+
3+
<see Git checkin messages for history>
4+
5+
0.0.6 - review module structure to fit the "Code Like a Pythonista: Idiomatic Python"
6+
- refactoring of all enum_display_monitors() methods
7+
- MSSLinux: add XFCE4 support
8+
- several fixes here and there
9+
10+
0.0.4 - MSSLinux: use of memoization => huge time/operations gains
11+
12+
0.0.5 - MSSWindows: few optimizations into _arrange()
13+
- MSSImage: code simplified
14+
15+
0.0.3 - MSSImage: remove PNG filters
16+
- MSSImage: remove 'ext' argument, using only PNG
17+
- MSSImage: do not overwrite existing image files
18+
- MSSImage: few optimizations into png()
19+
- MSSLinux: few optimizations into get_pixels()
20+
21+
0.0.2 - add support for python 3 on Windows and GNU/Linux
22+
23+
0.0.1 - first release

doc/LICENSE

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Copyright (c) 2013, Mickaël 'Tiger-222' Schoentgen
2+
3+
Permission to use, copy, modify, and distribute this software and its
4+
documentation for any purpose and without fee or royalty is hereby
5+
granted, provided that the above copyright notice appear in all copies
6+
and that both that copyright notice and this permission notice appear
7+
in supporting documentation or portions thereof, including
8+
modifications, that you make.

doc/THANKS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Many thanks to all those who helped (in no particular order):
2+
3+
Oros, Eownis

doc/TODO

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Still needed:
2+
* support for additional systems

mss.py

Lines changed: 1 addition & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -4,40 +4,11 @@
44
''' A cross-platform multi-screen shot module in pure python using ctypes.
55
66
This module is maintained by Mickaël Schoentgen <contact@tiger-222.fr>.
7-
If you find problems, please submit bug reports/patches via the
8-
GitHub issue tracker (https://github.com/BoboTiG/python-mss/issues).
97
108
Note: please keep this module compatible to Python 2.6.
119
12-
Still needed:
13-
* support for additional systems
14-
15-
Many thanks to all those who helped (in no particular order):
16-
17-
Oros, Eownis
18-
19-
History:
20-
21-
<see Git checkin messages for history>
22-
23-
0.0.1 - first release
24-
0.0.2 - add support for python 3 on Windows and GNU/Linux
25-
0.0.3 - MSSImage: remove PNG filters
26-
- MSSImage: remove 'ext' argument, using only PNG
27-
- MSSImage: do not overwrite existing image files
28-
- MSSImage: few optimizations into png()
29-
- MSSLinux: few optimizations into get_pixels()
30-
0.0.4 - MSSLinux: use of memoization => huge time/operations gains
31-
0.0.5 - MSSWindows: few optimizations into _arrange()
32-
- MSSImage: code simplified
33-
0.0.6 - review module structure to fit the "Code Like a Pythonista: Idiomatic Python"
34-
- refactoring of all enum_display_monitors() methods
35-
- MSSLinux: add XFCE4 support
36-
3710
You can always get the latest version of this module at:
38-
39-
https://raw.github.com/BoboTiG/python-mss/master/mss.py
40-
11+
https://raw.github.com/BoboTiG/python-mss/master/mss.py
4112
If that URL should fail, try contacting the author.
4213
'''
4314

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
open('MANIFEST.in', 'w').write("\n".join((
88
'include *.rst',
9+
'doc/*'
910
)))
1011

1112
from mss import __version__

0 commit comments

Comments
 (0)