Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
muflone committed Jun 19, 2009
1 parent 7a7d2f9 commit e7f3ff2
Show file tree
Hide file tree
Showing 7 changed files with 221 additions and 220 deletions.
2 changes: 1 addition & 1 deletion DialogAbout.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def DialogAbout(name=None, version=None, comment=None,
if logo:
about.set_logo(gtk.gdk.pixbuf_new_from_file(logo))
if icon:
about.set_icon_from_file('gespeaker.png')
about.set_icon_from_file(icon)

about.run()
about.destroy()
14 changes: 12 additions & 2 deletions doc/changelog
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
gespeaker (0.1-1) jaunty; urgency=low
gespeaker (0.2)

* Changed UI layout according to Gnome HIG specifications
http://library.gnome.org/devel/hig-book/stable/design-window.html.en
* Fixed DialogAbout.set_icon_from_file icon usage, which was wrongly
hardcoded.
* Symlinked copyright file to /usr/share/doc/gespeaker/copyright

-- Muflone <[email protected]> Sun, 14 Jun 2009 22:06:20 +0100

gespeaker (0.1-1)

* Initial release

-- Muflone <[email protected]> Sat, 13 Jun 2009 00:00:00 +0100
-- Muflone <[email protected]> Sat, 13 Jun 2009 23:00:00 +0100

421 changes: 206 additions & 215 deletions gespeaker.glade

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion gespeaker.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

APP_NAME = 'gespeaker'
APP_TITLE = 'Gespeaker'
APP_VERSION = '0.1'
APP_VERSION = '0.2'
LOCALE_DIR = '/usr/share/locale'

if __name__ == '__main__':
Expand Down
2 changes: 1 addition & 1 deletion gespeakerUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ def loadControls(self):
self.winMain = self.gladeFile.get_widget('winMain')
self.winMain.set_title(self.app_title)
self.winMain.set_icon_from_file('gespeaker.png')
self.winMain.set_focus(self.gladeFile.get_widget('txvText'))
self.txvBuffer = self.gladeFile.get_widget('txvText').get_buffer()
self.hscVolume = self.gladeFile.get_widget('hscVolume')
self.hscPitch = self.gladeFile.get_widget('hscPitch')
Expand Down Expand Up @@ -92,7 +93,6 @@ def on_imgmenuEditPlay_activate(self, widget, data=None):
text = text.replace('`', '\\`')
text = text.replace('"', '\\"')
text = text.replace('$', '\\$')
print text
if text:
cmd = '%s %s' % (espeakcmd, espeakargs % (
self.hscVolume.get_value(),
Expand Down
Binary file modified locale/en_US/LC_MESSAGES/gespeaker.mo
Binary file not shown.
Binary file modified locale/it/LC_MESSAGES/gespeaker.mo
Binary file not shown.

0 comments on commit e7f3ff2

Please sign in to comment.