Changeset 36

Show
Ignore:
Timestamp:
22/04/06 12:26:41 (6 years ago)
Author:
davea
Message:

release 0.4.2. fixes bug #23 (crash on startup) and also works with slightly updated nautilusburn

Files:
1 added
6 modified

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    r33 r36  
    11* = new feature, + = improvement/bug fix, - = feature removed 
     2New in v0.4.2 (22/04/2006) 
     3-------------------------- 
     4+ Resolved crash on startup (bug #23) 
     5+ Updated to work with newer nautilusburn API 
     6 
    27New in v0.4.1 (19/09/2005) 
    38-------------------------- 
  • README

    r33 r36  
    1 pyBackPack 0.4.1 README 
     1pyBackPack 0.4.2 README 
    22======================= 
    33A GTK+ tool written in Python to backup files. 
     
    55Changes in this version (*:new feature, +:improvement/bug fix) 
    66----------------------- 
    7 * pyBackPack logo in the about box - credit goes to Graham Cole <chckens@sucs.org> 
    8 + Fixed bug #17 (spacing between actions in output log) 
     7+ Resolved crash on startup (bug #23) 
     8+ Updated to work with newer nautilusburn API 
    99 
    1010Requires 
     
    1616--------- 
    1717Fedora Core 4 
    18 Ubuntu 5.04 (with rdiff-backup 0.13.4) 
     18Ubuntu 6.06 (with rdiff-backup 1.1.5) 
    1919 
    2020Known Issues 
  • pybackpack.spec

    r33 r36  
    44Summary: User oriented backup and restore application 
    55Name: pybackpack 
    6 Version: 0.4.1 
     6Version: 0.4.2 
    77Release: 1%{?dist} 
    88License: GPL 
     
    6262 
    6363%changelog 
     64* Sat Apr 22 2006 Dave Arter <davea@sucs.org> - 0.4.2-1 
     65- Updated RPM to 0.4.2 
    6466* Sun Sep 18 2005 Dave Arter <davea@sucs.org> - 0.4.1-1 
    6567- Initial package attempt, using Jeff Spaleta's spec file 
  • setup.py

    r33 r36  
    1010        sys.exit(1) 
    1111 
    12 version_string = "0.4.1" 
     12version_string = "0.4.2" 
    1313 
    1414setup(name="pybackpack", 
  • src/pybackpack/gui.py

    r33 r36  
    10361036        ##     MISC HANDLERS    ## 
    10371037        ########################## 
    1038         def on_cdburn_progress_changed(self, recorder, fract): 
     1038        def on_cdburn_progress_changed(self, recorder, fract, somethingelse): 
    10391039                if fract > 0: 
    10401040                        widgets['prog_status'].set_markup("<i>Burning CD...</i>") 
     
    12291229                #self['notebook3'].get_nth_page(2).set_sensitive(False) # disable SSH backups 
    12301230 
     1231                # this following commented out block of code caused all manner of 
     1232                # trouble when gtk+ got upgraded. serves me right for smoking crack 
     1233                # when I wrote it, I guess. 
    12311234                # horrible hacks to change the layout of the FileChooserWidget 
    12321235                # in the new backup set druid: 
    12331236                # remove the folder shortcut buttons from the left pane 
    1234                 self['filechooserwidget1'].get_children()[0].get_children()[1].\ 
    1235                         get_children()[0].get_children()[0].get_children()[1].hide() 
     1237                #self['filechooserwidget1'].get_children()[0].get_children()[1].\ 
     1238                #       get_children()[0].get_children()[0].get_children()[1].hide() 
    12361239                # add the 'include' and 'exclude' buttons under the file browser 
    1237                 self['filechooserwidget1'].get_children()[0].get_children()[1].\ 
    1238                         get_children()[0].get_children()[1].get_children()[2].\ 
    1239                         get_children()[0].hide() # hide the existing combo box 
    1240                 self['button_add_to_set'].reparent(self['filechooserwidget1'].\ 
    1241                         get_children()[0].get_children()[1].get_children()[0].get_children()\ 
    1242                         [1].get_children()[2]) # 'include' button 
    1243                 self['button_exc_from_set'].reparent(self['filechooserwidget1'].\ 
    1244                         get_children()[0].get_children()[1].get_children()[0].get_children()\ 
    1245                         [1].get_children()[2]) # 'exclude' button 
    1246                 self['hbox36'].hide() # hide the previous parent of the buttons 
    1247                 self['filechooserwidget1'].get_children()[0].get_children()[1].\ 
    1248                         get_children()[0].get_children()[1].get_children()[2].show() # show them 
     1240                #self['filechooserwidget1'].get_children()[0].get_children()[1].\ 
     1241                #       get_children()[0].get_children()[1].get_children()[2].\ 
     1242                #       get_children()[0].hide() # hide the existing combo box 
     1243                #self['button_add_to_set'].reparent(self['filechooserwidget1'].\ 
     1244                #       get_children()[0].get_children()[1].get_children()[0].get_children()\ 
     1245                #       [1].get_children()[2]) # 'include' button 
     1246                #self['button_exc_from_set'].reparent(self['filechooserwidget1'].\ 
     1247                #       get_children()[0].get_children()[1].get_children()[0].get_children()\ 
     1248                #       [1].get_children()[2]) # 'exclude' button 
     1249                #self['hbox36'].hide() # hide the previous parent of the buttons 
     1250                #self['filechooserwidget1'].get_children()[0].get_children()[1].\ 
     1251                #       get_children()[0].get_children()[1].get_children()[2].show() # show them 
    12491252                 
    12501253                # populate the list of recently used backup/restore locations 
  • src/pybackpack/version.py

    r33 r36  
    1 VERSION = "0.4.1" 
     1VERSION = "0.4.2" 
    22APPNAME = "pyBackPack" # used in dialogues, etc 
    33APPPATH = "pybackpack" # used for accessing files (eg. ~/.pybackpack) 
    44AUTHORS = ["Dave Arter <davea@sucs.org>", "Logo by Graham Cole <chckens@sucs.org>"] 
    5 COPYRIGHT = "Copyright (c) 2005 Dave Arter" 
     5COPYRIGHT = "Copyright (c) 2005-2006 Dave Arter" 
    66ABOUT = "%s is a tool for backing up user data for the GNOME Desktop" % APPNAME