Changeset 36
- Timestamp:
- 22/04/06 12:26:41 (6 years ago)
- Files:
-
- 1 added
- 6 modified
-
CHANGELOG (modified) (1 diff)
-
README (modified) (3 diffs)
-
pybackpack.spec (modified) (2 diffs)
-
setup.py (modified) (1 diff)
-
src/pybackpack.sh (added)
-
src/pybackpack/gui.py (modified) (2 diffs)
-
src/pybackpack/version.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
r33 r36 1 1 * = new feature, + = improvement/bug fix, - = feature removed 2 New in v0.4.2 (22/04/2006) 3 -------------------------- 4 + Resolved crash on startup (bug #23) 5 + Updated to work with newer nautilusburn API 6 2 7 New in v0.4.1 (19/09/2005) 3 8 -------------------------- -
README
r33 r36 1 pyBackPack 0.4. 1README1 pyBackPack 0.4.2 README 2 2 ======================= 3 3 A GTK+ tool written in Python to backup files. … … 5 5 Changes in this version (*:new feature, +:improvement/bug fix) 6 6 ----------------------- 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 9 9 10 10 Requires … … 16 16 --------- 17 17 Fedora Core 4 18 Ubuntu 5.04 (with rdiff-backup 0.13.4)18 Ubuntu 6.06 (with rdiff-backup 1.1.5) 19 19 20 20 Known Issues -
pybackpack.spec
r33 r36 4 4 Summary: User oriented backup and restore application 5 5 Name: pybackpack 6 Version: 0.4. 16 Version: 0.4.2 7 7 Release: 1%{?dist} 8 8 License: GPL … … 62 62 63 63 %changelog 64 * Sat Apr 22 2006 Dave Arter <davea@sucs.org> - 0.4.2-1 65 - Updated RPM to 0.4.2 64 66 * Sun Sep 18 2005 Dave Arter <davea@sucs.org> - 0.4.1-1 65 67 - Initial package attempt, using Jeff Spaleta's spec file -
setup.py
r33 r36 10 10 sys.exit(1) 11 11 12 version_string = "0.4. 1"12 version_string = "0.4.2" 13 13 14 14 setup(name="pybackpack", -
src/pybackpack/gui.py
r33 r36 1036 1036 ## MISC HANDLERS ## 1037 1037 ########################## 1038 def on_cdburn_progress_changed(self, recorder, fract ):1038 def on_cdburn_progress_changed(self, recorder, fract, somethingelse): 1039 1039 if fract > 0: 1040 1040 widgets['prog_status'].set_markup("<i>Burning CD...</i>") … … 1229 1229 #self['notebook3'].get_nth_page(2).set_sensitive(False) # disable SSH backups 1230 1230 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. 1231 1234 # horrible hacks to change the layout of the FileChooserWidget 1232 1235 # in the new backup set druid: 1233 1236 # 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() 1236 1239 # 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 box1240 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' button1243 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' button1246 self['hbox36'].hide() # hide the previous parent of the buttons1247 self['filechooserwidget1'].get_children()[0].get_children()[1].\1248 get_children()[0].get_children()[1].get_children()[2].show() # show them1240 #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 1249 1252 1250 1253 # populate the list of recently used backup/restore locations -
src/pybackpack/version.py
r33 r36 1 VERSION = "0.4. 1"1 VERSION = "0.4.2" 2 2 APPNAME = "pyBackPack" # used in dialogues, etc 3 3 APPPATH = "pybackpack" # used for accessing files (eg. ~/.pybackpack) 4 4 AUTHORS = ["Dave Arter <davea@sucs.org>", "Logo by Graham Cole <chckens@sucs.org>"] 5 COPYRIGHT = "Copyright (c) 2005 Dave Arter"5 COPYRIGHT = "Copyright (c) 2005-2006 Dave Arter" 6 6 ABOUT = "%s is a tool for backing up user data for the GNOME Desktop" % APPNAME
