Run of fresh-releases for snapper-gui
Try this locally (using silver-platter):
debian-svp new-upstream snapper-gui
Merge these changes:
git pull https://janitor.debian.net/git/snapper-gui fresh-releases/main
Summary
Merged new upstream version: 0.1 (was: 0git.960a94834f).
Diff
=== modified file 'README.md'
--- a/README.md 2018-07-24 11:11:44 +0000
+++ b/README.md 2019-10-17 03:13:58 +0000
@@ -22,7 +22,6 @@
### Ubuntu
python3
libgtksourceview-3.0-1
- gir1.2-gtksource-3.0
python3-dbus
python3-setuptools
=== modified file 'debian/changelog'
--- a/debian/changelog 2018-10-01 07:37:55 +0000
+++ b/debian/changelog 2019-10-17 03:13:58 +0000
@@ -1,8 +1,12 @@
-snapper-gui (0git.960a94834f-4) UNRELEASED; urgency=medium
+snapper-gui (0.1-1) UNRELEASED; urgency=medium
+ [ Ondřej Nový ]
* d/control: Remove ancient X-Python3-Version field
- -- Ondřej Nový <onovy@debian.org> Mon, 01 Oct 2018 09:37:55 +0200
+ [ Debian Janitor ]
+ * New upstream release.
+
+ -- Debian Janitor <janitor@jelmer.uk> Thu, 17 Oct 2019 03:13:51 +0000
snapper-gui (0git.960a94834f-3) unstable; urgency=medium
=== modified file 'snappergui/glade/mainWindow.glade'
--- a/snappergui/glade/mainWindow.glade 2018-07-24 11:11:44 +0000
+++ b/snappergui/glade/mainWindow.glade 2019-10-17 03:13:58 +0000
@@ -78,7 +78,7 @@
<object class="GtkAction" id="view-changes">
<property name="label" translatable="yes">View changes</property>
<property name="short_label" translatable="yes">Changes</property>
- <property name="tooltip" translatable="yes">Show which files have changed between selected snapshots</property>
+ <property name="tooltip" translatable="yes">Show witch files have changed between selected snapshots</property>
<property name="stock_id">gtk-file</property>
<signal name="activate" handler="on_viewchanges_clicked" object="treeview-selection1" swapped="no"/>
</object>
@@ -89,7 +89,6 @@
<property name="height_request">600</property>
<property name="can_focus">False</property>
<property name="icon_name">drive-harddisk</property>
- <signal name="destroy" handler="on_main_destroy" swapped="no"/>
<child>
<object class="GtkBox" id="snapshotsBox">
<property name="visible">True</property>
=== modified file 'snappergui/glade/propertiesDialog.glade'
--- a/snappergui/glade/propertiesDialog.glade 2018-07-24 11:11:44 +0000
+++ b/snappergui/glade/propertiesDialog.glade 2019-10-17 03:13:58 +0000
@@ -262,7 +262,7 @@
</packing>
</child>
<child>
- <object class="GtkEntry" id="TIMELINE_LIMIT_HOURLY">
+ <object class="GtkSpinButton" id="TIMELINE_LIMIT_HOURLY">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="halign">start</property>
@@ -274,7 +274,7 @@
</packing>
</child>
<child>
- <object class="GtkEntry" id="TIMELINE_LIMIT_DAILY">
+ <object class="GtkSpinButton" id="TIMELINE_LIMIT_DAILY">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="halign">start</property>
@@ -285,7 +285,7 @@
</packing>
</child>
<child>
- <object class="GtkEntry" id="TIMELINE_LIMIT_MONTHLY">
+ <object class="GtkSpinButton" id="TIMELINE_LIMIT_MONTHLY">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="halign">start</property>
@@ -297,7 +297,7 @@
</packing>
</child>
<child>
- <object class="GtkEntry" id="TIMELINE_LIMIT_YEARLY">
+ <object class="GtkSpinButton" id="TIMELINE_LIMIT_YEARLY">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="halign">start</property>
@@ -351,7 +351,7 @@
</packing>
</child>
<child>
- <object class="GtkEntry" id="TIMELINE_LIMIT_WEEKLY">
+ <object class="GtkSpinButton" id="TIMELINE_LIMIT_WEEKLY">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="halign">start</property>
@@ -470,7 +470,7 @@
</packing>
</child>
<child>
- <object class="GtkEntry" id="NUMBER_LIMIT">
+ <object class="GtkSpinButton" id="NUMBER_LIMIT">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="halign">start</property>
@@ -493,7 +493,7 @@
</packing>
</child>
<child>
- <object class="GtkEntry" id="NUMBER_LIMIT_IMPORTANT">
+ <object class="GtkSpinButton" id="NUMBER_LIMIT_IMPORTANT">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="halign">start</property>
=== modified file 'snappergui/mainWindow.py'
--- a/snappergui/mainWindow.py 2018-07-24 11:11:44 +0000
+++ b/snappergui/mainWindow.py 2019-10-17 03:13:58 +0000
@@ -9,6 +9,7 @@
from time import strftime, localtime
from pwd import getpwuid
+
class SnapperGUI():
"""docstring for SnapperGUI"""
@@ -42,7 +43,7 @@
if(snapshot[3] == -1):
date = "Now"
else:
- date = strftime("%a %x %R", localtime(snapshot[3]))
+ date = strftime("%a %R %e/%m/%Y", localtime(snapshot[3]))
return [snapshot[0],
snapshot[1],
snapshot[2],
@@ -135,8 +136,6 @@
for path in paths:
treeiter = model.get_iter(path)
mountpoint = snapper.GetMountPoint(config, model[treeiter][0])
- if model[treeiter][6] != '':
- snapper.MountSnapshot(config,model[treeiter][0],'true')
subprocess.Popen(['xdg-open', mountpoint])
self.statusbar.push(True,
"The mount point for the snapshot %s from %s is %s"%
@@ -197,10 +196,3 @@
def on_dbus_config_deleted(self,args):
print("Config Deleted")
-
- def on_main_destroy(self,args):
- for config in snapper.ListConfigs():
- for snapshot in snapper.ListSnapshots(config[0]):
- if snapshot[6] != '':
- snapper.UmountSnapshot(config[0],snapshot[0],'true')
-
=== modified file 'snappergui/propertiesDialog.py'
--- a/snappergui/propertiesDialog.py 2018-07-24 11:11:44 +0000
+++ b/snappergui/propertiesDialog.py 2019-10-17 03:13:58 +0000
@@ -71,7 +71,7 @@
changed = {}
for k, v in snapper.GetConfig(config)[2].items():
currentValue = self.tabs[config].get_current_value(k)
- if currentValue and v != currentValue:
+ if v != currentValue:
changed[k] = currentValue
return changed
=== modified file 'snappergui/snapshotsView.py'
--- a/snappergui/snapshotsView.py 2018-07-24 11:11:44 +0000
+++ b/snappergui/snapshotsView.py 2019-10-17 03:13:58 +0000
@@ -28,7 +28,7 @@
if(snapshot[3] == -1):
date = "Now"
else:
- date = strftime("%a %x %R", localtime(snapshot[3]))
+ date = strftime("%a %R %e/%m/%Y", localtime(snapshot[3]))
return [snapshot[0],
snapshot[1],
snapshot[2],
Debdiff
File lists identical (after any substitutions)
No differences were encountered in the control files