Changeset 280
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r274 r280 1 1 0.3 (Two years later, I am still here): 2 * Fixed a fatal bug with some recent versions of Python/PyGTK3 * Fixed some minor window width issues with popular GTK themes4 2 * Added interface translations 3 * Added timestamps and enhanced error reporting to the log 5 4 * Added a favicon to the server 6 5 * Added RPM packages 7 6 * Switch to GPLv3 8 * Better error reporting on the main log 9 * Better console help and internal functions 10 * Don't clean out status labels when restarting server 7 * Fixed a fatal bug with some recent versions of Python/PyGTK affecting most distributions 8 * Fixed preference pane issues for low resolution displays and some minor issues with popular GTK themes 9 * Fixed a bug where screenshot files would be saved under the wrong extension and not erased after quitting 10 * Fixed duplication of Twisted reactor 11 * Better console help and handling of SIGINT 11 12 * Don't check for system compatibility of Libnotify 12 13 * Code cleanup towards PEP-8 compliance -
trunk/server.py
r278 r280 481 481 import pynotify 482 482 # 48x48 image by default looks bad in Ubuntu 483 uri = "file://" + (os.path.join(self.itaka_globals.image_dir, "itaka 512x512-take.png"))483 uri = "file://" + (os.path.join(self.itaka_globals.image_dir, "itaka-take.png")) 484 484 485 485 n = pynotify.Notification(_('Screenshot taken'), _('%s captured the screen' % (self.ip)), uri) -
trunk/uigtk.py
r279 r280 807 807 # start timer, resize, catch configure-notify, set up idle handler, when idle resize to what the size should be at this point of time, repeat 808 808 if not self.preferences_expanded: 809 if ((gtk.gdk.screen_height() < 800) and self.expander.get_property("expanded")): 810 self.expander.set_expanded(False) 809 811 if self.timeout_expand is not None: 810 812 """NOTE: GTK+ GtkWidget.size_request() method can give you the amount of size a widget will take
Note: See TracChangeset
for help on using the changeset viewer.

