Removed dependency on mintinstall
This commit is contained in:
parent
4f0861abc3
commit
07432a39b2
1
debian/changelog
vendored
1
debian/changelog
vendored
@ -3,6 +3,7 @@ mintmenu (4.8.1) helena; urgency=low
|
|||||||
* Dependency on mint-common
|
* Dependency on mint-common
|
||||||
* Updated calls to newer pyinotify API
|
* Updated calls to newer pyinotify API
|
||||||
* Updated path of keybinder API
|
* Updated path of keybinder API
|
||||||
|
* Removed dependency on mintinstall
|
||||||
|
|
||||||
-- Clement Lefebvre <root@linuxmint.com> Thu, 8 Oct 2009 10:26:00 +0000
|
-- Clement Lefebvre <root@linuxmint.com> Thu, 8 Oct 2009 10:26:00 +0000
|
||||||
|
|
||||||
|
2
debian/control
vendored
2
debian/control
vendored
@ -7,6 +7,6 @@ Standards-Version: 3.7.2
|
|||||||
|
|
||||||
Package: mintmenu
|
Package: mintmenu
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Depends: python (>= 2.4), python (<< 3), python-gtk2, python-glade2, mintinstall, deskbar-applet, mint-common
|
Depends: python (>= 2.4), python (<< 3), python-gtk2, python-glade2, deskbar-applet, mint-common
|
||||||
Description: Advanced Gnome menu
|
Description: Advanced Gnome menu
|
||||||
One of the most advanced menus under Linux. MintMenu supports filtering, favorites, easy-uninstallation, autosession, and many other features.
|
One of the most advanced menus under Linux. MintMenu supports filtering, favorites, easy-uninstallation, autosession, and many other features.
|
||||||
|
@ -97,11 +97,12 @@ class pluginclass( object ):
|
|||||||
#Add standard items
|
#Add standard items
|
||||||
def do_standard_items( self ):
|
def do_standard_items( self ):
|
||||||
|
|
||||||
Button1 = easyButton( "/usr/lib/linuxmint/mintInstall/icon.svg", self.iconsize, [_("Software manager")], -1, -1 )
|
if os.path.exists("/usr/lib/linuxmint/mintInstall/icon.svg"):
|
||||||
Button1.connect( "clicked", self.ButtonClicked, "mintinstall" )
|
Button1 = easyButton( "/usr/lib/linuxmint/mintInstall/icon.svg", self.iconsize, [_("Software manager")], -1, -1 )
|
||||||
Button1.show()
|
Button1.connect( "clicked", self.ButtonClicked, "mintinstall" )
|
||||||
self.systemBtnHolder.pack_start( Button1, False, False )
|
Button1.show()
|
||||||
self.mintMenuWin.setTooltip( Button1, _("Browse and install available software") )
|
self.systemBtnHolder.pack_start( Button1, False, False )
|
||||||
|
self.mintMenuWin.setTooltip( Button1, _("Browse and install available software") )
|
||||||
|
|
||||||
Button2 = easyButton( "synaptic", self.iconsize, [_("Package manager")], -1, -1 )
|
Button2 = easyButton( "synaptic", self.iconsize, [_("Package manager")], -1, -1 )
|
||||||
Button2.connect( "clicked", self.ButtonClicked, "gksu /usr/sbin/synaptic" )
|
Button2.connect( "clicked", self.ButtonClicked, "gksu /usr/sbin/synaptic" )
|
||||||
|
Loading…
Reference in New Issue
Block a user