Activity log for bug #44286

Date Who What changed Old value New value Message
2006-05-11 22:26:39 Elliott Hughes bug added bug
2006-05-19 00:00:23 Michael Vogt gdebi: status Unconfirmed Fix Committed
2006-05-19 00:00:23 Michael Vogt gdebi: assignee mvo
2006-05-19 00:00:23 Michael Vogt gdebi: statusexplanation Thanks for your bugreport and your patch. I applied the patch to my bzr repository and it will be part of the next upload.
2006-05-19 12:36:45 Bruce Cowan gdebi: status Fix Committed Fix Released
2006-05-19 12:36:45 Bruce Cowan gdebi: statusexplanation Thanks for your bugreport and your patch. I applied the patch to my bzr repository and it will be part of the next upload.
2008-09-03 02:07:10 Endolith gdebi: status Fix Released Confirmed
2008-09-03 02:07:10 Endolith gdebi: statusexplanation apt/Synaptic and the Installed-Size parameter of .deb files all measure in decimal (1000s of bytes), so "KiB" would be wrong. "KB" is also wrong, though. It should be "kB". http://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Installed-Size patch: === modified file 'GDebi/GDebi.py' --- GDebi/GDebi.py 2008-08-05 14:24:05 +0000 +++ GDebi/GDebi.py 2008-09-03 02:00:11 +0000 @@ -221,7 +221,7 @@ self.label_maintainer.set_text(utf8(self._deb["Maintainer"])) self.label_priority.set_text(self._deb["Priority"]) self.label_section.set_text(utf8(self._deb["Section"])) - self.label_size.set_text(self._deb["Installed-Size"] + " KB") + self.label_size.set_text(self._deb["Installed-Size"] + " kB") # set filelist buf = self.textview_filelist.get_buffer() === modified file 'GDebi/GDebiKDE.py' --- GDebi/GDebiKDE.py 2008-08-05 14:23:57 +0000 +++ GDebi/GDebiKDE.py 2008-09-03 02:03:26 +0000 @@ -257,7 +257,7 @@ self.DetailsMaintainer.setText(utf8(self._deb["Maintainer"])) self.DetailsPriority.setText(self._deb["Priority"]) self.DetailsSection.setText(utf8(self._deb["Section"])) - self.DetailsSize.setText(self._deb["Installed-Size"] + " KB") + self.DetailsSize.setText(self._deb["Installed-Size"] + " kB") # set filelist buf = self.IncFilesEdit
2010-03-09 21:23:44 Luca Falavigna gdebi: importance Medium Low
2010-03-13 00:33:35 Endolith tags units-policy
2011-01-30 02:17:46 Luca Falavigna gdebi: status Confirmed Fix Committed
2011-01-30 02:17:46 Luca Falavigna gdebi: assignee Michael Vogt (mvo)
2011-02-06 10:16:57 Luca Falavigna gdebi: status Fix Committed Fix Released
2011-02-13 16:46:21 Launchpad Janitor branch linked lp:debian/gdebi
2011-02-13 16:47:27 Launchpad Janitor branch linked lp:ubuntu/gdebi