|
4 | 4 | ''' A cross-platform multi-screen shot module in pure python using ctypes. |
5 | 5 |
|
6 | 6 | 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). |
9 | 7 |
|
10 | 8 | Note: please keep this module compatible to Python 2.6. |
11 | 9 |
|
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 | | -
|
37 | 10 | 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 |
41 | 12 | If that URL should fail, try contacting the author. |
42 | 13 | ''' |
43 | 14 |
|
|
0 commit comments