Merge lp:~rmooney/lubuntu-software-center/bug-907445 into lp:lubuntu-software-center

Proposed by Ryan Mooney
Status: Merged
Merged at revision: 139
Proposed branch: lp:~rmooney/lubuntu-software-center/bug-907445
Merge into: lp:lubuntu-software-center
Diff against target: 47 lines (+11/-0)
3 files modified
debian/changelog (+6/-0)
src/UI.py (+3/-0)
src/control.py (+2/-0)
To merge this branch: bzr merge lp:~rmooney/lubuntu-software-center/bug-907445
Reviewer Review Type Date Requested Status
Lubuntu Software Center Team Pending
Review via email: mp+109532@code.launchpad.net

Description of the change

I hope this fixes bug 907445. I am new to launchpad/bazaar and apologize for any mistakes - but I tested this and it adds the version number to the about panel.

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'debian/changelog'
2--- debian/changelog 2012-02-11 11:48:45 +0000
3+++ debian/changelog 2012-06-10 17:54:17 +0000
4@@ -1,3 +1,9 @@
5+lubuntu-software-center (0.0.5-0ubuntu2) quantal; urgency=low
6+
7+ * Added version number to about panel. (LP: #907445)
8+
9+ -- Ryan Mooney <rmooney@lavabit.com> Sun, 10 Jun 2012 12:47:01 -0500
10+
11 lubuntu-software-center (0.0.5-0ubuntu1) precise; urgency=low
12
13 * New upstream release.
14
15=== modified file 'src/UI.py'
16--- src/UI.py 2012-01-25 13:24:58 +0000
17+++ src/UI.py 2012-06-10 17:54:17 +0000
18@@ -29,6 +29,8 @@
19
20 _ = gettext.gettext
21
22+version = "Version %s" % control.version
23+
24 global license
25 license = '''Lubuntu Software Center
26
27@@ -120,6 +122,7 @@
28 self.about.set_authors(["Julien Lavergne <gilir@ubuntu.com> [Packaging]", "Michael Rawson <michaelrawson76@gmail.com> [Code, Bug Fixing]", "Stephen Smally <eco.stefi@fastwebnet.it> [Code, Bug Fixing, UI]"])
29 self.about.set_comments(_("Light but user-friendly Software Center for Lubuntu"))
30 self.about.set_website("https://www.launchpad.net/lubuntu-software-center")
31+ self.about.set_version(version)
32 self.about.set_license(license)
33 #-------------------------------------------------
34 self.add(self.vbox)
35
36=== modified file 'src/control.py'
37--- src/control.py 2012-03-23 13:31:49 +0000
38+++ src/control.py 2012-06-10 17:54:17 +0000
39@@ -21,6 +21,8 @@
40 from gi.repository import Gtk
41 import os
42
43+version = "0.0.5"
44+
45 default_conf_file = '''
46 [General]
47 app_install_directory = /usr/share/app-install/desktop/

Subscribers

People subscribed via source and target branches