Skip to content

Commit

Permalink
Fix all windows position
Browse files Browse the repository at this point in the history
- fix for the main_dialog window as 'center' instead of 'center-always'.
- ensure that all windows are centered relative to the main_dialog window.
- prepare for new 0.25 release.
  • Loading branch information
SARL ENR-68 committed Oct 28, 2014
1 parent 8117b79 commit a273627
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
The initial state comes from https://launchpad.net/usb-imagewriter
The modifications are:

IsoDumper 0.24
IsoDumper 0.25
------------
- change the name in .img for backup.
- correction of the index not getting 100%.
- not closing the application after the success writing.
- fix wrong progress steps with small images.
- fix security issue writing log file.
- add output on stdout of logs.
- fix all windows position.

IsoDumper 0.23
------------
Expand Down
2 changes: 1 addition & 1 deletion isodumper.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: isodumper
Version: 0.24
Version: 0.25
Release: %mkrel 1
Summary: Tool for writing ISO images on a USB stick
Summary(fr_FR): Outil pour écrire des images ISO sur une clé USB
Expand Down
2 changes: 1 addition & 1 deletion lib/isodumper.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class IsoDumper:
def __init__(self,user):
APP="isodumper"
DIR="/usr/share/locale"
RELEASE="v0.24"
RELEASE="v0.25"

gettext.bindtextdomain(APP, DIR)
gettext.textdomain(APP)
Expand Down
2 changes: 1 addition & 1 deletion po/isodumper.pot
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: isodumper 0.24\n"
"Project-Id-Version: isodumper 0.25\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-10-26 13:49+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
Expand Down
4 changes: 3 additions & 1 deletion share/isodumper/isodumper.glade
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<property name="window_position">center-on-parent</property>
<property name="icon_name">isodumper</property>
<property name="type_hint">dialog</property>
<property name="transient_for">main_dialog</property>
<property name="has_separator">True</property>
<property name="program_name">IsoDumper</property>
<property name="copyright">© 2013-2014 Mageia</property>
Expand Down Expand Up @@ -417,6 +418,7 @@ Public License instead of this License.
<property name="window_position">center-on-parent</property>
<property name="icon_name">isodumper</property>
<property name="type_hint">dialog</property>
<property name="transient_for">main_dialog</property>
<child internal-child="vbox">
<widget class="GtkVBox" id="dialog-vbox6">
<property name="visible">True</property>
Expand Down Expand Up @@ -674,7 +676,7 @@ Public License instead of this License.
<property name="can_focus">False</property>
<property name="title" translatable="yes">IsoDumper</property>
<property name="resizable">False</property>
<property name="window_position">center-always</property>
<property name="window_position">center</property>
<property name="icon_name">isodumper</property>
<property name="type_hint">dialog</property>
<signal name="delete_event" handler="on_main_dialog_delete_event"/>
Expand Down
2 changes: 1 addition & 1 deletion tools/po-update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ fi

cd "$(readlink -f "$(dirname "$0")/..")"

VERSION=(0.24)
VERSION=(0.25)
DOMAIN=(isodumper)

intltool-extract --type=gettext/glade share/isodumper/isodumper.glade
Expand Down

0 comments on commit a273627

Please sign in to comment.