├── debian ├── compat ├── install ├── source │ └── format ├── rules ├── control ├── postinst ├── copyright └── changelog ├── test ├── usr ├── bin │ ├── mintinstall │ ├── mintinstall-update-flatpak │ ├── mintinstall-update-pkgcache │ ├── mintinstall-fp-handler │ └── mintinstall-remove-app └── share │ ├── linuxmint │ └── mintinstall │ │ ├── categories │ │ ├── graphics-publishing.list │ │ ├── games-rts.list │ │ ├── games.list │ │ ├── graphics-scanning.list │ │ ├── graphics-3d.list │ │ ├── games-tbs.list │ │ ├── internet-web.list │ │ ├── games-simulations.list │ │ ├── fonts.list │ │ ├── development-essentials.list │ │ ├── games-fps.list │ │ ├── system-tools.list │ │ ├── graphics.list │ │ ├── graphics-photography.list │ │ ├── graphics-drawing.list │ │ ├── games-emulators.list │ │ ├── internet-email.list │ │ ├── internet-chat.list │ │ ├── internet-filesharing.list │ │ ├── picks-kde.list │ │ ├── graphics-viewers.list │ │ ├── picks.list │ │ ├── games-board.list │ │ ├── sound-video.list │ │ └── education.list │ │ ├── featured │ │ ├── gimp.png │ │ ├── chess.png │ │ ├── pia-bg.png │ │ ├── blender.png │ │ ├── firefox.png │ │ ├── inkscape.png │ │ ├── maps-bg.png │ │ ├── steam-bg.png │ │ ├── weather.png │ │ ├── weather-bg.png │ │ ├── gnome-weather.png │ │ ├── transmission.png │ │ ├── featured.list │ │ └── joystick.svg │ │ ├── data │ │ └── available.png │ │ ├── flatpak │ │ └── icons │ │ │ └── 64x64 │ │ │ ├── im.riot.Riot.png │ │ │ ├── com.slack.Slack.png │ │ │ ├── com.viber.Viber.png │ │ │ ├── com.skype.Client.png │ │ │ ├── com.spotify.Client.png │ │ │ ├── io.elementary.code.png │ │ │ ├── org.gnome.Fractal.png │ │ │ ├── org.gnome.Weather.png │ │ │ ├── org.gnome.Calculator.png │ │ │ ├── org.gnome.Dictionary.png │ │ │ ├── com.discordapp.Discord.png │ │ │ ├── com.github.quaternion.png │ │ │ ├── com.visualstudio.code.png │ │ │ ├── io.atom.electron.BaseApp.png │ │ │ ├── com.albiononline.AlbionOnline.png │ │ │ ├── io.github.Cockatrice.cockatrice.png │ │ │ └── com.github.bajoja.indicator-kdeconnect.png │ │ └── mintinstall.glade │ ├── icons │ └── hicolor │ │ ├── 16x16 │ │ └── emblems │ │ │ └── emblem-installed.png │ │ └── 32x32 │ │ └── emblems │ │ └── emblem-installed.png │ ├── applications │ ├── mintinstall-fp-handler.desktop │ ├── mintinstall.desktop │ └── mintinstall-kde.desktop │ └── glib-2.0 │ └── schemas │ └── com.linuxmint.install.gschema.xml ├── export_flatpak ├── README.md ├── etc └── xdg │ └── autostart │ └── mintinstall-update-flatpak.desktop ├── makepot ├── generate_desktop_files └── .gitignore /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/install: -------------------------------------------------------------------------------- 1 | usr 2 | etc 3 | -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | sudo rm -rf /usr/lib/debian/mintinstall 4 | sudo cp -R usr / 5 | mintinstall 6 | -------------------------------------------------------------------------------- /usr/bin/mintinstall: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | import subprocess 4 | 5 | subprocess.call("/usr/lib/linuxmint/mintinstall/mintinstall.py") 6 | -------------------------------------------------------------------------------- /usr/bin/mintinstall-update-flatpak: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | mkdir -p ~/.cache/mintinstall 3 | flatpak update -y > ~/.cache/mintinstall/flatpak-update.log 4 | -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/categories/graphics-publishing.list: -------------------------------------------------------------------------------- 1 | scribus 2 | fotowall 3 | kile 4 | scribus-ng 5 | gnome-specimen 6 | texmaker 7 | 8 | -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/categories/games-rts.list: -------------------------------------------------------------------------------- 1 | boson 2 | boswars 3 | glest 4 | glob2 5 | lightyears 6 | warzone2100 7 | widelands 8 | teeworlds 9 | -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/categories/games.list: -------------------------------------------------------------------------------- 1 | steam-launcher 2 | steam:i386 3 | steam 4 | minecraft 5 | minecraft-installer 6 | worldofgoodemo 7 | -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/featured/gimp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurelabmx/debinstall/master/usr/share/linuxmint/mintinstall/featured/gimp.png -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/categories/graphics-scanning.list: -------------------------------------------------------------------------------- 1 | gscan2pdf 2 | hocr-gtk 3 | scantailor 4 | simple-scan 5 | skanlite 6 | xsane 7 | flegita 8 | 9 | -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/data/available.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurelabmx/debinstall/master/usr/share/linuxmint/mintinstall/data/available.png -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/featured/chess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurelabmx/debinstall/master/usr/share/linuxmint/mintinstall/featured/chess.png -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/featured/pia-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurelabmx/debinstall/master/usr/share/linuxmint/mintinstall/featured/pia-bg.png -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/featured/blender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurelabmx/debinstall/master/usr/share/linuxmint/mintinstall/featured/blender.png -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/featured/firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurelabmx/debinstall/master/usr/share/linuxmint/mintinstall/featured/firefox.png -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/featured/inkscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurelabmx/debinstall/master/usr/share/linuxmint/mintinstall/featured/inkscape.png -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/featured/maps-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurelabmx/debinstall/master/usr/share/linuxmint/mintinstall/featured/maps-bg.png -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/featured/steam-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurelabmx/debinstall/master/usr/share/linuxmint/mintinstall/featured/steam-bg.png -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/featured/weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurelabmx/debinstall/master/usr/share/linuxmint/mintinstall/featured/weather.png -------------------------------------------------------------------------------- /export_flatpak: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | LANGUAGE=C usr/lib/linuxmint/mintinstall/mintinstall.py list-flatpak > list.list 4 | 5 | echo "Flatpaks were exported to list.list" 6 | -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/featured/weather-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurelabmx/debinstall/master/usr/share/linuxmint/mintinstall/featured/weather-bg.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # DebInstall 2 | 3 | Software Manager ported from Linux Mint to work on Debian 4 | 5 | ## Dependencies 6 | 7 | Python3.x 8 | configobj (`pip3 install configobj`) 9 | -------------------------------------------------------------------------------- /usr/bin/mintinstall-update-pkgcache: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | import subprocess 4 | 5 | subprocess.call("/usr/lib/linuxmint/mintinstall/mintinstall-update-pkgcache.py") 6 | -------------------------------------------------------------------------------- /usr/share/icons/hicolor/16x16/emblems/emblem-installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurelabmx/debinstall/master/usr/share/icons/hicolor/16x16/emblems/emblem-installed.png -------------------------------------------------------------------------------- /usr/share/icons/hicolor/32x32/emblems/emblem-installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurelabmx/debinstall/master/usr/share/icons/hicolor/32x32/emblems/emblem-installed.png -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/featured/gnome-weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurelabmx/debinstall/master/usr/share/linuxmint/mintinstall/featured/gnome-weather.png -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/featured/transmission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurelabmx/debinstall/master/usr/share/linuxmint/mintinstall/featured/transmission.png -------------------------------------------------------------------------------- /usr/bin/mintinstall-fp-handler: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | import subprocess 4 | import sys 5 | 6 | subprocess.call(["/usr/lib/linuxmint/mintinstall/mintinstall.py", "install"] + sys.argv[1:]) 7 | -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/categories/graphics-3d.list: -------------------------------------------------------------------------------- 1 | blender 2 | aqsis 3 | g3dviewer 4 | k3d 5 | meshlab 6 | opencascade-draw 7 | structure-synth 8 | sunflow 9 | wings3d 10 | 11 | -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/flatpak/icons/64x64/im.riot.Riot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurelabmx/debinstall/master/usr/share/linuxmint/mintinstall/flatpak/icons/64x64/im.riot.Riot.png -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/flatpak/icons/64x64/com.slack.Slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurelabmx/debinstall/master/usr/share/linuxmint/mintinstall/flatpak/icons/64x64/com.slack.Slack.png -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/flatpak/icons/64x64/com.viber.Viber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurelabmx/debinstall/master/usr/share/linuxmint/mintinstall/flatpak/icons/64x64/com.viber.Viber.png -------------------------------------------------------------------------------- /usr/bin/mintinstall-remove-app: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | import subprocess 4 | import sys 5 | 6 | sys.exit(subprocess.call(["/usr/lib/linuxmint/mintinstall/mintinstall-remove-app.py"] + sys.argv[1:])) 7 | -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/flatpak/icons/64x64/com.skype.Client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurelabmx/debinstall/master/usr/share/linuxmint/mintinstall/flatpak/icons/64x64/com.skype.Client.png -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/flatpak/icons/64x64/com.spotify.Client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurelabmx/debinstall/master/usr/share/linuxmint/mintinstall/flatpak/icons/64x64/com.spotify.Client.png -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/flatpak/icons/64x64/io.elementary.code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurelabmx/debinstall/master/usr/share/linuxmint/mintinstall/flatpak/icons/64x64/io.elementary.code.png -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/flatpak/icons/64x64/org.gnome.Fractal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurelabmx/debinstall/master/usr/share/linuxmint/mintinstall/flatpak/icons/64x64/org.gnome.Fractal.png -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/flatpak/icons/64x64/org.gnome.Weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurelabmx/debinstall/master/usr/share/linuxmint/mintinstall/flatpak/icons/64x64/org.gnome.Weather.png -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/flatpak/icons/64x64/org.gnome.Calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurelabmx/debinstall/master/usr/share/linuxmint/mintinstall/flatpak/icons/64x64/org.gnome.Calculator.png -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/flatpak/icons/64x64/org.gnome.Dictionary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurelabmx/debinstall/master/usr/share/linuxmint/mintinstall/flatpak/icons/64x64/org.gnome.Dictionary.png -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/flatpak/icons/64x64/com.discordapp.Discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurelabmx/debinstall/master/usr/share/linuxmint/mintinstall/flatpak/icons/64x64/com.discordapp.Discord.png -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/flatpak/icons/64x64/com.github.quaternion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurelabmx/debinstall/master/usr/share/linuxmint/mintinstall/flatpak/icons/64x64/com.github.quaternion.png -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/flatpak/icons/64x64/com.visualstudio.code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurelabmx/debinstall/master/usr/share/linuxmint/mintinstall/flatpak/icons/64x64/com.visualstudio.code.png -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/flatpak/icons/64x64/io.atom.electron.BaseApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurelabmx/debinstall/master/usr/share/linuxmint/mintinstall/flatpak/icons/64x64/io.atom.electron.BaseApp.png -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/flatpak/icons/64x64/com.albiononline.AlbionOnline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurelabmx/debinstall/master/usr/share/linuxmint/mintinstall/flatpak/icons/64x64/com.albiononline.AlbionOnline.png -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/categories/games-tbs.list: -------------------------------------------------------------------------------- 1 | asc 2 | attal 3 | crimson 4 | freeciv-client-gtk 5 | freeciv-client-sdl 6 | freecol 7 | hedgewars 8 | konquest 9 | lordsawar 10 | teg 11 | wesnoth 12 | wormux 13 | 14 | -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/flatpak/icons/64x64/io.github.Cockatrice.cockatrice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurelabmx/debinstall/master/usr/share/linuxmint/mintinstall/flatpak/icons/64x64/io.github.Cockatrice.cockatrice.png -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/flatpak/icons/64x64/com.github.bajoja.indicator-kdeconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurelabmx/debinstall/master/usr/share/linuxmint/mintinstall/flatpak/icons/64x64/com.github.bajoja.indicator-kdeconnect.png -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/categories/internet-web.list: -------------------------------------------------------------------------------- 1 | firefox 2 | seamonkey-browser 3 | midori 4 | epiphany-browser 5 | galeon 6 | prism 7 | konqueror 8 | w3m 9 | elinks 10 | lynx 11 | arora 12 | conkeror 13 | dooble 14 | rekonq 15 | -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/categories/games-simulations.list: -------------------------------------------------------------------------------- 1 | armagetron 2 | antigravitaattori 3 | bloboats 4 | extremetuxracer 5 | flightgear 6 | freetennis 7 | lincity 8 | planetpenguin-racer 9 | supertuxkart 10 | torcs 11 | trigger-rally 12 | trophy 13 | xracer 14 | -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/categories/fonts.list: -------------------------------------------------------------------------------- 1 | ttf-mscorefonts-installer 2 | ttf-telugu-fonts 3 | ttf-farsiweb 4 | ttf-droid 5 | ttf-freefarsi 6 | ttf-indic-fonts-core 7 | ttf-linux-libertine 8 | ttf-monapo 9 | ttf-sil-gentium 10 | ttf-sil-gentium-basic 11 | ttf-wqy-microhei 12 | -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/categories/development-essentials.list: -------------------------------------------------------------------------------- 1 | sublime-text 2 | gitk 3 | gitg 4 | git-buildpackage 5 | meld 6 | devhelp 7 | glade 8 | regexxer 9 | pyrenamer 10 | d-feet 11 | gdb 12 | awf 13 | gconf-editor 14 | dconf-editor 15 | gnome-dbg 16 | devscripts 17 | mint-dev-tools 18 | 19 | -------------------------------------------------------------------------------- /etc/xdg/autostart/mintinstall-update-flatpak.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Encoding=UTF-8 3 | Name=Flatpak 4 | Comment=Apply Flatpak updates 5 | Icon=stock_lock 6 | Exec=mintinstall-update-flatpak 7 | Terminal=false 8 | Type=Application 9 | Categories= 10 | X-GNOME-Autostart-Delay=20 11 | X-MATE-Autostart-Delay=20 12 | -------------------------------------------------------------------------------- /usr/share/applications/mintinstall-fp-handler.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Software Manager 3 | Comment=Mime handler for mintinstall 4 | Exec=mintinstall-fp-handler %u 5 | Icon=mintinstall 6 | Terminal=false 7 | Type=Application 8 | Encoding=UTF-8 9 | NoDisplay=true 10 | MimeType=application/vnd.flatpak.ref;application/vnd.flatpak.repo 11 | -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/categories/games-fps.list: -------------------------------------------------------------------------------- 1 | assaultcube 2 | alien-arena 3 | minetest 4 | nexuiz 5 | open-arena 6 | rott 7 | sauerbraten 8 | urban-terror 9 | warsow 10 | openarena 11 | minecraft-installer 12 | redeclipse 13 | cube2 14 | cytadela 15 | enemylines3 16 | enemylines7 17 | assaultcube 18 | quake 19 | quake2 20 | ioquake3 21 | bzflag 22 | -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/categories/system-tools.list: -------------------------------------------------------------------------------- 1 | gnome-do 2 | guake 3 | wine1.2 4 | wine 5 | docky 6 | virtualbox-guest-additions 7 | virtualbox-ose 8 | virtualbox-3.1 9 | screen 10 | parcellite 11 | openbox 12 | terminator 13 | gnome-commander 14 | screenlets 15 | meld 16 | gedit 17 | xed 18 | nvidia-settings 19 | compizconfig-settings-manager 20 | yakuake 21 | 22 | -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/categories/graphics.list: -------------------------------------------------------------------------------- 1 | agave 2 | blender 3 | dia 4 | flegita 5 | fontforge 6 | gimp 7 | gtkmorph 8 | inkscape 9 | karbon 10 | kcoloredit 11 | kiconedit 12 | kivio 13 | kolourpaint 14 | kover 15 | koverartist 16 | krita 17 | kruler 18 | ksnapshot 19 | mtpaint 20 | openoffice.org-draw 21 | rgbpaint 22 | ristretto 23 | skencil 24 | tuxpaint 25 | xaralx 26 | xsane 27 | -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/categories/graphics-photography.list: -------------------------------------------------------------------------------- 1 | camera.app 2 | darktable 3 | digikam 4 | eog 5 | f-spot 6 | gliv 7 | gpicview 8 | gpixpod 9 | gqview 10 | gthumb 11 | gtkam 12 | gwenview 13 | kflickr 14 | kphotoalbum 15 | luciole 16 | phatch 17 | photoprint 18 | picasa 19 | pix 20 | postr 21 | qiv 22 | qtpfsgui 23 | rawstudio 24 | ristretto 25 | shotwell 26 | showfoto 27 | ufraw 28 | 29 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | DEB_VERSION := $(shell dpkg-parsechangelog | egrep '^Version:' | cut -f 2 -d ' ') 4 | 5 | %: 6 | dh ${@} 7 | 8 | override_dh_builddeb: 9 | dh_builddeb -- -Zxz -z9 10 | 11 | # Inject version number in the code 12 | override_dh_installdeb: 13 | dh_installdeb 14 | for pkg in $$(dh_listpackages -i); do \ 15 | find debian/$$pkg -type f -exec sed -i -e s/__DEB_VERSION__/$(DEB_VERSION)/g {} +; \ 16 | done 17 | -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/categories/graphics-drawing.list: -------------------------------------------------------------------------------- 1 | agave 2 | gtkmorph 3 | karbon 4 | kivio 5 | kolourpaint 6 | krita 7 | mtpaint 8 | rgbpaint 9 | skencil 10 | tuxpaint 11 | kcoloredit 12 | kiconedit 13 | kover 14 | koverartist 15 | kruler 16 | cenon.app 17 | fontmatrix 18 | inkscape 19 | latexdraw 20 | openoffice.org-draw 21 | pencil 22 | qelectrotech 23 | salasaga 24 | synfigstudio 25 | xaralx 26 | dia 27 | gimp 28 | pinta 29 | gnome-paint 30 | mypaint 31 | gcolor2 32 | -------------------------------------------------------------------------------- /makepot: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | intltool-extract --type=gettext/glade usr/share/linuxmint/mintinstall/mintinstall.glade 4 | xgettext --language=Python --keyword=_ --keyword=N_ --output=mintinstall.pot \ 5 | usr/lib/linuxmint/mintinstall/mintinstall.py \ 6 | generate_desktop_files \ 7 | usr/share/linuxmint/mintinstall/mintinstall.glade.h 8 | 9 | rm -f usr/share/linuxmint/mintinstall/mintinstall.glade.h 10 | -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/categories/games-emulators.list: -------------------------------------------------------------------------------- 1 | zsnes:i386 2 | wine 3 | visualboyadvance-gtk 4 | vice 5 | uae 6 | stella 7 | spectemu-x11 8 | sdlmame 9 | pearpc 10 | pcsxr 11 | pose-skins 12 | openmsx-catapult 13 | nestra 14 | xmess-sdl 15 | mednafen 16 | kxmame 17 | hatari 18 | gnuboy-sdl 19 | snes9express 20 | gngb 21 | gfceu 22 | dosemu 23 | dosbox 24 | dgen 25 | desmume 26 | basilisk2 27 | atari800 28 | playonlinux 29 | higan 30 | dolphin-emu 31 | mupen64plus 32 | nestopia 33 | mame 34 | hercules 35 | -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/categories/internet-email.list: -------------------------------------------------------------------------------- 1 | balsa 2 | claws-mail 3 | anjal 4 | evolution 5 | prism-google-mail 6 | kmail 7 | mail-notification 8 | seamonkey-mailnews 9 | syncmaildir-applet 10 | alpine 11 | thunderbird 12 | checkgmail 13 | freepops 14 | fetchyahoo 15 | sylpheed 16 | enigmail 17 | fetchmail 18 | gmail-notify 19 | gotmail 20 | mutt 21 | yahoo2mbox 22 | kontact 23 | getmail4 24 | nautilus-sendto 25 | exim4 26 | mailody 27 | sendmail 28 | kcheckmail 29 | postfix 30 | spamassassin 31 | spambayes 32 | 33 | -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/categories/internet-chat.list: -------------------------------------------------------------------------------- 1 | skype 2 | amsn 3 | ayttm 4 | emesene 5 | gajim 6 | gossip 7 | jwchat 8 | kadu 9 | kmess 10 | kopete 11 | quassel 12 | licq 13 | pidgin 14 | empathy 15 | psi 16 | sim 17 | centerim 18 | cgiirc 19 | epic4 20 | erc 21 | finch 22 | ircii 23 | irssi 24 | konversation 25 | kvirc 26 | liece 27 | loqui 28 | lostirc 29 | naim 30 | pork 31 | riece 32 | scrollz 33 | seamonkey-chatzilla 34 | sic 35 | sirc 36 | tinyirc 37 | weechat 38 | xchat 39 | xchat-gnome 40 | eva 41 | prism-google-talk 42 | qutim 43 | tkabber 44 | 45 | -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/categories/internet-filesharing.list: -------------------------------------------------------------------------------- 1 | filezilla 2 | gftp 3 | kftpgrabber 4 | kasablanca 5 | amule 6 | bittornado-gui 7 | deluge 8 | bittorrent-gui 9 | frostwire 10 | ktorrent 11 | transmission-gtk 12 | vuze 13 | rtorrent 14 | axel-kapt 15 | foff 16 | ftp.app 17 | giver 18 | gnunet-qt 19 | gnunet-gtk 20 | gtk-gnutella 21 | gwget 22 | kbluetooth 23 | kepas 24 | kflickr 25 | kget 26 | kmldonkey 27 | kradioripper 28 | lottanzb 29 | miro 30 | mldonkey-gui 31 | moserial 32 | tork 33 | transmission-qt 34 | tucan 35 | uget 36 | valknut 37 | 38 | 39 | -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/categories/picks-kde.list: -------------------------------------------------------------------------------- 1 | dropbox 2 | googleearth 3 | virtualbox-qt 4 | miro 5 | vuze 6 | gparted 7 | audacity 8 | amarok 9 | stellarium 10 | firefox 11 | filezilla 12 | skype 13 | thunderbird 14 | vlc 15 | cheese 16 | mpv 17 | xfburn 18 | gimp 19 | inkscape 20 | blender 21 | calibre 22 | shutter 23 | picasa 24 | scribus 25 | avidemux 26 | gtk-recordmydesktop 27 | wine 28 | steam-launcher 29 | steam 30 | steam:i386 31 | minecraft-installer 32 | spotify 33 | spotify-client-0.9.17 34 | spotify-client 35 | sublime-text 36 | mint-meta-codecs-kde 37 | -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/categories/graphics-viewers.list: -------------------------------------------------------------------------------- 1 | acroread 2 | aeskulap 3 | apvlv 4 | aqsis 5 | buxon 6 | calibre 7 | camorama 8 | cbrpager 9 | comix 10 | djview3 11 | djview4 12 | eog 13 | epdfview 14 | evince 15 | fbreader 16 | feh 17 | flpsed 18 | fslview 19 | geeqie 20 | gnome-specimen 21 | gpicview 22 | gthumb 23 | gtkam 24 | gv 25 | gwenview 26 | kchmviewer 27 | meshlab 28 | mirage 29 | nfoview 30 | okular 31 | omaque 32 | pdfedit 33 | preview.app 34 | qcomicbook 35 | qtpfsgui 36 | ristretto 37 | txtreader 38 | viewpdf.app 39 | xchm 40 | xpdf-reader 41 | xreader 42 | xviewer 43 | yorick-cubeview 44 | 45 | -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/categories/picks.list: -------------------------------------------------------------------------------- 1 | dropbox 2 | googleearth 3 | google-earth-pro-stable 4 | virtualbox-qt 5 | miro 6 | vuze 7 | gparted 8 | audacity 9 | rhythmbox 10 | stellarium 11 | firefox 12 | filezilla 13 | skype 14 | skypeforlinux 15 | thunderbird 16 | vlc 17 | cheese 18 | mpv 19 | gimp 20 | inkscape 21 | blender 22 | calibre 23 | shutter 24 | picasa 25 | scribus 26 | avidemux 27 | banshee 28 | wine 29 | wine-installer 30 | steam-launcher 31 | steam 32 | steam:i386 33 | minecraft-installer 34 | spotify 35 | spotify-client 36 | sublime-text 37 | mint-meta-codecs 38 | gnome-maps 39 | gnome-clock 40 | pia-manager 41 | whatsapp-desktop 42 | timeshift 43 | -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/categories/games-board.list: -------------------------------------------------------------------------------- 1 | 3dchess 2 | biloba 3 | bovo 4 | brutalchess 5 | cgoban 6 | glchess 7 | gnome-chess 8 | dreamchess 9 | eboard 10 | ggz-python-games 11 | fltk1.1-games 12 | gamazons 13 | gnubg 14 | gnudoq 15 | gomoku.app 16 | grhino 17 | gtkatlantic 18 | gtkboard 19 | iagno 20 | kblackbox 21 | ggz-kde-games 22 | kfourinline 23 | kigo 24 | kiriki 25 | kmahjongg 26 | kreversi 27 | ksquares 28 | londonlaw 29 | mah-jong 30 | gnome-mahjongg 31 | gnome-mastermind 32 | openyahtzee 33 | ace-of-penguins 34 | pioneers 35 | pouetchess 36 | pokerth 37 | pychess 38 | pyscrabble 39 | qgo 40 | quarry 41 | kshisen 42 | stroq 43 | tagua 44 | xboard 45 | yahtzeesharp 46 | gnome-games 47 | 48 | -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/categories/sound-video.list: -------------------------------------------------------------------------------- 1 | vlc 2 | minitunes 3 | minitube 4 | smplayer 5 | mplayer 6 | totem 7 | xplayer 8 | xine 9 | acidrip 10 | brasero 11 | lastfm 12 | easytag 13 | audacious 14 | banshee 15 | rhythmbox 16 | exaile 17 | cheese 18 | decibel-audio-player 19 | soundconverter 20 | sound-juicer 21 | radiotray 22 | gpodder 23 | pitivi 24 | xfburn 25 | k9copy 26 | k3b 27 | acetoneiso 28 | gnomebaker 29 | amarok 30 | ardour 31 | listen 32 | aqualung 33 | cmus 34 | xmms2 35 | guayadeque 36 | openshot 37 | kino 38 | gimp-gap 39 | mencoder 40 | kmplayer 41 | mplayer-gui 42 | dumphd 43 | audacity 44 | spotify 45 | spotify-client 46 | mint-meta-codecs 47 | mint-meta-codecs-kde 48 | mint-meta-debian-codecs 49 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- 1 | Source: mintinstall 2 | Section: admin 3 | Priority: optional 4 | Maintainer: Linux Mint 5 | Build-Depends: debhelper (>= 9) 6 | Standards-Version: 3.9.5 7 | 8 | Package: mintinstall 9 | Architecture: all 10 | Depends: python3 (>= 3.4), 11 | python3-apt, 12 | python3-aptdaemon, 13 | python3-aptdaemon.gtk3widgets, 14 | python3-bs4, 15 | python3-configobj, 16 | python3-setproctitle, 17 | gir1.2-appstream-1.0, 18 | gir1.2-gdkpixbuf-2.0, 19 | gir1.2-glib-2.0, 20 | gir1.2-gtk-3.0, 21 | gir1.2-xapp-1.0, 22 | libgtk2-perl, 23 | mint-common (>= 2), 24 | app-install-data 25 | Recommends: gir1.2-flatpak-1.0, flatpak, xdg-desktop-portal-gtk 26 | Description: Software Manager 27 | A software manager to easily install new applications. 28 | -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/categories/education.list: -------------------------------------------------------------------------------- 1 | anki 2 | bauble 3 | bibletime 4 | blinken 5 | boats 6 | cantor 7 | carmetal 8 | celestia-gnome 9 | childsplay 10 | controlaula 11 | drgeo 12 | edubuntu-desktop-kde 13 | edubuntu-desktop 14 | electric 15 | etoys 16 | freespeak 17 | gns3 18 | denemo 19 | solfege 20 | goldendict 21 | graphmonkey 22 | gvrng 23 | jclic 24 | k3dsurf 25 | kalcul 26 | kalgebra 27 | kanagram 28 | kanatest 29 | kayali 30 | kbruch 31 | kdrill 32 | kgeography 33 | khangman 34 | kig 35 | kiten 36 | klavaro 37 | klettres 38 | kmplot 39 | ktouch 40 | kturtle 41 | kwordquiz 42 | lletters 43 | littlewizard 44 | lybniz 45 | marble 46 | mathwar 47 | xmaxima 48 | mnemosyne 49 | netemul 50 | parley 51 | pauker 52 | planets 53 | ubuntu-edu-preschool 54 | ubuntu-edu-primary 55 | pysycache 56 | qliss3d 57 | qucs 58 | regina-normal 59 | rlplot 60 | score-reading-trainer 61 | ubuntu-edu-secondary 62 | squeak 63 | step 64 | sugar-emulator-0.88 65 | ubuntu-edu-tertiary 66 | tipptrainer 67 | tkgate 68 | tuxpaint 69 | tuxtype 70 | vym 71 | xabacus 72 | xmabacus 73 | gcompris 74 | kdeedu 75 | stellarium 76 | tuxmath 77 | 78 | -------------------------------------------------------------------------------- /generate_desktop_files: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | DOMAIN = "mintinstall" 4 | PATH = "/usr/share/linuxmint/locale" 5 | 6 | import os 7 | import gettext 8 | import mintcommon.additionalfiles as additionalfiles 9 | 10 | os.environ['LANGUAGE'] = "en_US.UTF-8" 11 | gettext.install(DOMAIN, PATH) 12 | 13 | prefix = "[Desktop Entry]\n" 14 | 15 | suffix = """Exec=mintinstall 16 | Icon=mintinstall 17 | Terminal=false 18 | Type=Application 19 | Encoding=UTF-8 20 | Categories=Application;System;Settings;XFCE;X-XFCE-SettingsDialog;X-XFCE-SystemSettings; 21 | NotShowIn=KDE; 22 | """ 23 | 24 | additionalfiles.generate(DOMAIN, PATH, "usr/share/applications/mintinstall.desktop", prefix, _("Software Manager"), _("Install new applications"), suffix) 25 | 26 | suffix = """Exec=mintinstall 27 | Icon=software-properties-mint 28 | Terminal=false 29 | Type=Application 30 | Encoding=UTF-8 31 | Categories=System; 32 | OnlyShowIn=KDE; 33 | """ 34 | 35 | additionalfiles.generate(DOMAIN, PATH, "usr/share/applications/mintinstall-kde.desktop", prefix, _("Software Manager"), _("Install new applications"), suffix, genericName=_("Install new applications")) 36 | -------------------------------------------------------------------------------- /usr/share/glib-2.0/schemas/com.linuxmint.install.gschema.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | true 6 | 7 | 8 | 9 | 10 | false 11 | 12 | 13 | 14 | 15 | [] 16 | 17 | 18 | 19 | 20 | true 21 | Remembers the state of the 'search in category' button 22 | 23 | 24 | [] 25 | Check this against the FlatpakInstallation to determine if we need to refresh the cache at startup. 26 | name::uri::disabled tuples 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | wheels/ 23 | *.egg-info/ 24 | .installed.cfg 25 | *.egg 26 | MANIFEST 27 | 28 | # PyInstaller 29 | # Usually these files are written by a python script from a template 30 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 31 | *.manifest 32 | *.spec 33 | 34 | # Installer logs 35 | pip-log.txt 36 | pip-delete-this-directory.txt 37 | 38 | # Unit test / coverage reports 39 | htmlcov/ 40 | .tox/ 41 | .coverage 42 | .coverage.* 43 | .cache 44 | nosetests.xml 45 | coverage.xml 46 | *.cover 47 | .hypothesis/ 48 | .pytest_cache/ 49 | 50 | # Translations 51 | *.mo 52 | *.pot 53 | 54 | # Django stuff: 55 | *.log 56 | local_settings.py 57 | db.sqlite3 58 | 59 | # Flask stuff: 60 | instance/ 61 | .webassets-cache 62 | 63 | # Scrapy stuff: 64 | .scrapy 65 | 66 | # Sphinx documentation 67 | docs/_build/ 68 | 69 | # PyBuilder 70 | target/ 71 | 72 | # Jupyter Notebook 73 | .ipynb_checkpoints 74 | 75 | # pyenv 76 | .python-version 77 | 78 | # celery beat schedule file 79 | celerybeat-schedule 80 | 81 | # SageMath parsed files 82 | *.sage.py 83 | 84 | # Environments 85 | .env 86 | .venv 87 | env/ 88 | venv/ 89 | ENV/ 90 | env.bak/ 91 | venv.bak/ 92 | 93 | # Spyder project settings 94 | .spyderproject 95 | .spyproject 96 | 97 | # Rope project settings 98 | .ropeproject 99 | 100 | # mkdocs documentation 101 | /site 102 | 103 | # mypy 104 | .mypy_cache/ 105 | -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/featured/featured.list: -------------------------------------------------------------------------------- 1 | #package----background----border-color----text-color----text-shadow 2 | blender----url('@prefix@blender.png') 10% 40% / 50% auto no-repeat, -gtk-gradient (radial, center bottom, 0, center center, 1, from(#fcbf83), to(#c06105))----#783d03----#ffffff----0 1px 1px rgba(0,0,0,0.5) 3 | gnome-chess----url('@prefix@chess.png') 10% center / 40% auto no-repeat, linear-gradient(to bottom, #555753, #888a85)----#2e3436----#ffffff----0 1px 1px rgba(0,0,0,0.5) 4 | firefox----url('@prefix@firefox.png') 10% center / 40% auto no-repeat, linear-gradient(to bottom, #d3d7cf, #eeeeec)----#babdb6----#888a85----0 1px 1px rgba(255,255,255,0.7) 5 | gimp----url('@prefix@gimp.png') left 50% / 50% auto no-repeat, linear-gradient(to bottom, #8ac674, #cbddc3)----#2a6c10----#333----0 1px 1px rgba(255,255,255,0.7) 6 | inkscape----url('@prefix@inkscape.png') 20% / 60% auto no-repeat, linear-gradient(to bottom, #ccd6c3, #a7b797)----#819a6b----#ffffff----0 1px 3px rgba(0,0,0,0.9),0 1px 2px rgba(0,0,0,0.7) 7 | gnome-weather----url('@prefix@weather.png') left 80% / 50% auto no-repeat, url('@prefix@weather-bg.png'), linear-gradient(to bottom, #25486d, #6693ce)----#d8e0ef----#ffffff----0 1px 1px rgba(0,0,0,0.5) 8 | transmission-gtk----url('@prefix@transmission.png') 10% 20% / 427px auto no-repeat, -gtk-gradient (radial, center bottom, 0, center center, 0.8, from(#ffc124), to(#b75200))----#a40000----#ffffff----0 1px 1px rgba(0,0,0,0.5) 9 | gnome-maps----url('@prefix@maps-bg.png') center / cover no-repeat----#000000----#ffffff----0 1px 3px #000000,0 1px 2px #000000 10 | steam:i386----url('@prefix@joystick.svg') left center / 30% auto no-repeat, url('@prefix@steam-bg.png') center / cover no-repeat----#000000----#ffffff----0 1px 1px rgba(0,0,0,0.5) 11 | pia-manager----url('@prefix@pia-bg.png') 10px 10px / 452px auto no-repeat, linear-gradient(to bottom, #119c46, #086b2d)----#d8e0ef----#ffffff----0 1px 1px rgba(0,0,0,0.5) 12 | -------------------------------------------------------------------------------- /debian/postinst: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # postinst script for mintinstall 3 | # 4 | # see: dh_installdeb(1) 5 | 6 | set -e 7 | 8 | # summary of how this script can be called: 9 | # * `configure' 10 | # * `abort-upgrade' 11 | # * `abort-remove' `in-favour' 12 | # 13 | # * `abort-deconfigure' `in-favour' 14 | # `removing' 15 | # 16 | # for details, see http://www.debian.org/doc/debian-policy/ or 17 | # the debian-policy package 18 | # 19 | 20 | case "$1" in 21 | configure) 22 | if which update-mime-database > /dev/null 2>&1 23 | then 24 | update-mime-database /usr/share/mime 25 | fi 26 | if which /usr/bin/update-desktop-database > /dev/null 2>&1 27 | then 28 | update-desktop-database 29 | fi 30 | if which glib-compile-schemas >/dev/null 2>&1 31 | then 32 | glib-compile-schemas /usr/share/glib-2.0/schemas 33 | fi 34 | if which flatpak >/dev/null 2>&1 35 | then 36 | # flatpak remote-add --if-not-exists gnome https://sdk.gnome.org/gnome.flatpakrepo 37 | # flatpak remote-add --if-not-exists gnome-apps https://sdk.gnome.org/gnome-apps.flatpakrepo 38 | flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo 39 | # Create share dirs for flatpak, they're in XDG_DATA_DIRS already but if they don't exist 40 | # they won't be monitored by some of the DEs and the first apps installed with Flatpak won't 41 | # show in the menu until the user logs out. 42 | mkdir -p /var/lib/flatpak/exports/share/applications 43 | mkdir -p /var/lib/flatpak/exports/share/icons 44 | fi 45 | 46 | python3 -m compileall /usr/lib/linuxmint/mintinstall 47 | ;; 48 | 49 | abort-upgrade|abort-remove|abort-deconfigure) 50 | 51 | ;; 52 | 53 | *) 54 | echo "postinst called with unknown argument \`$1'" >&2 55 | exit 1 56 | ;; 57 | esac 58 | 59 | # dh_installdeb will replace this with shell code automatically 60 | # generated by other debhelper scripts. 61 | 62 | #DEBHELPER# 63 | 64 | 65 | 66 | -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- 1 | Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ 2 | Upstream-Name: mintinstall 3 | Upstream-Contact: Clement Lefebvre 4 | 5 | Files: * 6 | Copyright: 2007-2014 Clement Lefebvre 7 | License: GPL-2+ 8 | This program is free software; you can redistribute it and/or modify 9 | it under the terms of the GNU General Public License as published by 10 | the Free Software Foundation; either version 2 of the License, or 11 | (at your option) any later version. 12 | . 13 | This program is distributed in the hope that it will be useful, 14 | but WITHOUT ANY WARRANTY; without even the implied warranty of 15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 | GNU General Public License for more details. 17 | . 18 | You should have received a copy of the GNU General Public License 19 | along with this program. If not, see . 20 | . 21 | On Debian GNU/Linux systems, the complete text of the GNU General Public 22 | License version 2 can be found in '/usr/share/common-licenses/GPL-2'. 23 | 24 | Files: usr/lib/linuxmint/mintInstall/widgets/* 25 | Copyright: 2009 Canonical 26 | License: GPL-3+ 27 | 28 | Files: usr/lib/linuxmint/mintInstall/widgets/{pathbar2.py,rgb.py} 29 | Copyright: 2009 Matthew McGowan 30 | License: GPL-3+ 31 | 32 | Files: usr/lib/linuxmint/mintInstall/widgets/urltextview.py 33 | Copyright: 2006 Sebastian Heinlein 34 | License: GPL-3+ 35 | 36 | License: GPL-3+ 37 | This program is free software: you can redistribute it and/or modify 38 | it under the terms of the GNU General Public License as published by 39 | the Free Software Foundation, either version 3 of the License, or (at 40 | your option) any later version. 41 | . 42 | This program is distributed in the hope that it will be useful, but 43 | WITHOUT ANY WARRANTY; without even the implied warranty of 44 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 45 | General Public License for more details. 46 | . 47 | You should have received a copy of the GNU General Public License 48 | along with this program. If not, see . 49 | . 50 | On Debian systems, the complete text of the GNU General 51 | Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". -------------------------------------------------------------------------------- /usr/share/applications/mintinstall.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Software Manager 3 | Name[af]=Sagteware Bestuurder 4 | Name[am]=የሶፍትዌር አስተዳዳሪ 5 | Name[ar]=مدير البرامج 6 | Name[ast]=Xestor de software 7 | Name[az]=Proqram İdarəçisi 8 | Name[be]=Кіраўнік праграм 9 | Name[bg]=Софтуерен мениджър 10 | Name[bn]=সফটওয়্যার ব্যবস্থাপক 11 | Name[bs]=Upravljanje aplikacijama 12 | Name[ca]=Gestor de programari 13 | Name[ca@valencia]=Gestor de programes 14 | Name[cs]=Správa software 15 | Name[csb]=Menedżera softwôrë 16 | Name[cy]=Rheolwr Meddalwedd 17 | Name[da]=Programhåndtering 18 | Name[de]=Anwendungsverwaltung 19 | Name[el]=Διαχειριστής Λογισμικού 20 | Name[eo]=Programarmastrumilo 21 | Name[es]=Gestor de software 22 | Name[et]=Tarkvarahaldur 23 | Name[eu]=Software-kudeatzailea 24 | Name[fa]=مدیریت نرم‌افزارها 25 | Name[fi]=Ohjelmistohallinta 26 | Name[fil]=Tagapamahala ng Software 27 | Name[fo]=Ritbúnaðar fyristiting 28 | Name[fr]=Gestionnaire de logiciels 29 | Name[fr_CA]=Gestionnaire de logiciels 30 | Name[frp]=Gestionèro de logicièls 31 | Name[ga]=Bainisteoir bogearraí 32 | Name[gd]=Manaidsear a' bhathair-bhog 33 | Name[gl]=Xestor de software 34 | Name[gv]=Reireyder Claaghyn 35 | Name[he]=מנהל החבילות 36 | Name[hi]=सॉफ्टवेयर प्रबंधक 37 | Name[hr]=Upravitelj softvera 38 | Name[hu]=Szoftverkezelő 39 | Name[hy]=Ծրագրերի կառավարիչ 40 | Name[ia]=Gestor de software 41 | Name[id]=Pengelola Perangkat Lunak 42 | Name[is]=Hugbúnaðarstjórnun 43 | Name[it]=Gestore Applicazioni 44 | Name[ja]=ソフトウェアの管理 45 | Name[jv]=Pangelola prangkat-renyah 46 | Name[ka]=პროგრამების მენეჯერი 47 | Name[kab]=Amsefrak n iseɣẓanen 48 | Name[kk]=Бағдарламалар менеджері 49 | Name[km]=កម្មវិធីគ្រប់គ្រងកម្មវិធី 50 | Name[kn]=ತಂತ್ರಾಂಶ ವ್ಯವಸ್ಥಾಪಕ 51 | Name[ko]=소프트웨어 매니저 52 | Name[ku]=Rêvebirê Nermalavê 53 | Name[ky]=Программа менеджери 54 | Name[lo]=ຜູ້ກໍາກັບຊອບເເວລ 55 | Name[lt]=Programų tvarkytuvė 56 | Name[lv]=Programmatūras pārvaldnieks 57 | Name[mg]=Mpikirakira rindrankajy 58 | Name[mk]=Менаџер на софтвер 59 | Name[ml]=സോഫ്റ്റ്‌വേർ മാനേജർ 60 | Name[mr]=सॉफ्टवेयर व्यवस्थापक 61 | Name[ms]=Pengurus Perisian 62 | Name[nb]=Programvarebehandler 63 | Name[ne]=सफ्टवेयर प्रबन्धक 64 | Name[nl]=Programmabeheer 65 | Name[nn]=Programvarebehandlar 66 | Name[oc]=Gestionari de logicials 67 | Name[om]=Bulchiinsa furguugaa 68 | Name[pa]=ਸਾਫਟਵੇਅਰ ਮੈਨੇਜਰ 69 | Name[pap]=Atministrado di programa 70 | Name[pl]=Menedżer oprogramowania 71 | Name[pt]=Gestor de Programas 72 | Name[pt_BR]=Gerenciador de Aplicativos 73 | Name[pt_PT]=Gestor de Programas 74 | Name[ro]=Administrator software 75 | Name[ru]=Менеджер программ 76 | Name[sc]=Manigiadore de Aplicatziones 77 | Name[si]=මෘදුකාංග කළමනාකරනය 78 | Name[sk]=Správca softvéru 79 | Name[sl]=Upravljalnik programske opreme 80 | Name[so]=Agaasimaha softwieerka 81 | Name[sq]=Menaxhuesi i Programeve 82 | Name[sr]=Управник програма 83 | Name[sr@latin]=Menadžer programa 84 | Name[sv]=Programhanterare 85 | Name[ta]=மென்பொருள் மேலாண்மை 86 | Name[te]=సాప్ట్‍వేర్ నిర్వాహకం 87 | Name[tg]=Мудири нармафзор 88 | Name[th]=การจัดการ Software 89 | Name[tl]=Tagapamahala ng Software 90 | Name[tr]=Yazılım Yöneticisi 91 | Name[uk]=Керування програмами 92 | Name[ur]=سوفٹویئر منتظم 93 | Name[uz]=Дастурлар менежери 94 | Name[vi]=Trình Quản lý Phần mềm 95 | Name[zh_CN]=软件管理器 96 | Name[zh_HK]=軟件管理員 97 | Name[zh_TW]=軟體管理員 98 | Comment=Install new applications 99 | Comment[af]=Installeer nuwe program 100 | Comment[am]=አዲስ መተግበሪያዎችን መግጠሚያ 101 | Comment[ar]=تثبيت التطبيقات الجديدة 102 | Comment[ast]=Instalar nueves aplicaciones 103 | Comment[az]=Yeni tətbiqetmələr quraşdır 104 | Comment[be]=Усталяваць новыя праграмы 105 | Comment[bg]=Инсталиране на нови приложения 106 | Comment[bn]=নতুন অ্যাপলিকেশন ইনস্টল করুন 107 | Comment[bs]=Instaliraj nove aplikacije 108 | Comment[ca]=Instal·leu aplicacions noves 109 | Comment[ca@valencia]=Instal·lar nous programes 110 | Comment[cs]=Nainstalovat nové aplikace 111 | Comment[csb]=Instalëjë nową aplikacëjã 112 | Comment[cy]=Gosod rhaglenni newydd 113 | Comment[da]=Installér nye programmer 114 | Comment[de]=Neue Anwendungen installieren 115 | Comment[el]=Εγκατάσταση νέων εφαρμογών 116 | Comment[eo]=Instali novajn aplikaĵojn 117 | Comment[es]=Instalar nuevas aplicaciones 118 | Comment[et]=Paigalda uusi rakendusi 119 | Comment[eu]=Instalatu aplikazio berriak 120 | Comment[fa]=نصب برنامه‌های جدید 121 | Comment[fi]=Asenna uusia ohjelmia 122 | Comment[fil]=Mag-install ng mga bagong application 123 | Comment[fo]=Legg inn nýggjar nýtsluskipanir 124 | Comment[fr]=Installer de nouvelles applications 125 | Comment[fr_CA]=Installer de nouvelles applications 126 | Comment[ga]=Suiteáil feidhmchláir nua 127 | Comment[gd]=Stàlaich aplacaidean ùra 128 | Comment[gl]=Instalar novos aplicativos 129 | Comment[gv]=Cur claaghyn noa 'sy co`earrooder 130 | Comment[he]=התקנת יישומים חדשים 131 | Comment[hi]=नए अनुप्रयोग इंस्टॉल करें 132 | Comment[hr]=Instaliraj nove aplikacije 133 | Comment[hu]=Új alkalmazások telepítése 134 | Comment[hy]=Տեղադրել նոր ծրագիր 135 | Comment[ia]=Installar nove applicationes 136 | Comment[id]=Memasang aplikasi baru 137 | Comment[is]=Setja upp ný forrit 138 | Comment[it]=Installa nuove applicazioni 139 | Comment[ja]=新しいアプリケーションをインストール 140 | Comment[jv]=Masang aplikasi anyar 141 | Comment[ka]=ახალი აპლიკაციების დაყენება 142 | Comment[kab]=Sebded isnasen imaynuten 143 | Comment[kk]=Жаңа бағдарламаларды орнату 144 | Comment[kn]=ಹೊಸ ಅನ್ವಯಿಕಗಳನ್ನು ಅನುಸ್ಥಾಪಿಸು 145 | Comment[ko]=새로운 소프트웨어를 설치합니다 146 | Comment[ky]=Жаңы тиркемелерди орнотуу 147 | Comment[lo]=ຕິດຕັ້ງ ໂປຣແກຣມໃໝ່ 148 | Comment[lt]=Diegti naujas programas 149 | Comment[lv]=Uzstādīt jaunas lietotnes 150 | Comment[mg]=Hanampy rindrankajy vaovao 151 | Comment[mk]=Инсталирај нови апликации 152 | Comment[ml]=പുതിയ ആപ്ലിക്കേഷനുകൾ ഇൻസ്റ്റോൾ ചെയ്യുക 153 | Comment[mr]=नवीन संगणक प्रणाली प्रस्थापित करा 154 | Comment[ms]=Memasang aplikasi baru 155 | Comment[nb]=Installer nye programmer 156 | Comment[nds]=Neue Programme installieren 157 | Comment[ne]=नयाँ अनुप्रयोग  स्थापना गर्नुहोस् 158 | Comment[nl]=Nieuwe toepassingen installeren 159 | Comment[nn]=Installer nye program 160 | Comment[oc]=Installar d'aplicacions novèlas 161 | Comment[om]=Dhimbaaftota haaraa dhaabi 162 | Comment[pa]=ਨਵੀਆਂ ਐਪਲੀਕੇਸ਼ਣ ਇੰਸਟਾਲ ਕਰੋ 163 | Comment[pap]=Instala programanan nobo 164 | Comment[pl]=Zainstaluj nowe programy 165 | Comment[pt]=Instalar novas aplicações 166 | Comment[pt_BR]=Instalar novos aplicativos 167 | Comment[pt_PT]=Instalar novas aplicações 168 | Comment[ro]=Instalează aplicații noi 169 | Comment[ru]=Установить новые приложения 170 | Comment[si]=නව මෘදුකාංග ස්ථාපනය කරන්න 171 | Comment[sk]=Inštalovať nové aplikácie 172 | Comment[sl]=Namesti nove programe 173 | Comment[so]=Shub baraamijyo cusub 174 | Comment[sq]=Instalo programe të reja 175 | Comment[sr]=Угради нове програме 176 | Comment[sr@latin]=Instaliraj nove programe 177 | Comment[sv]=Installera nya program 178 | Comment[ta]=புதிய பயன்பாடுகளை நிறுவு 179 | Comment[te]=కొత్త అనువర్తనాలను స్థాపించు 180 | Comment[tg]=Насб кардани барномаҳои нав 181 | Comment[th]=ติดตั้งโปรแกรมใหม่ 182 | Comment[tl]=Mag-install ng mga bagong application 183 | Comment[tr]=Yeni uygulamalar yükle 184 | Comment[uk]=Встановлення нових програм 185 | Comment[ur]=نئی ایپلی کیشن انسٹال کریں 186 | Comment[uz]=Янги дастурларни тизимга ўрнатиш 187 | Comment[vi]=Cài đặt ứng dụng mới 188 | Comment[zh_CN]=安装新程序 189 | Comment[zh_HK]=安裝新應用程式 190 | Comment[zh_TW]=安裝新應用程式 191 | Exec=mintinstall 192 | Icon=mintinstall 193 | Terminal=false 194 | Type=Application 195 | Encoding=UTF-8 196 | Categories=Application;System;Settings;XFCE;X-XFCE-SettingsDialog;X-XFCE-SystemSettings; 197 | NotShowIn=KDE; 198 | -------------------------------------------------------------------------------- /usr/share/applications/mintinstall-kde.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Software Manager 3 | Name[af]=Sagteware Bestuurder 4 | Name[am]=የሶፍትዌር አስተዳዳሪ 5 | Name[ar]=مدير البرامج 6 | Name[ast]=Xestor de software 7 | Name[az]=Proqram İdarəçisi 8 | Name[be]=Кіраўнік праграм 9 | Name[bg]=Софтуерен мениджър 10 | Name[bn]=সফটওয়্যার ব্যবস্থাপক 11 | Name[bs]=Upravljanje aplikacijama 12 | Name[ca]=Gestor de programari 13 | Name[ca@valencia]=Gestor de programes 14 | Name[cs]=Správa software 15 | Name[csb]=Menedżera softwôrë 16 | Name[cy]=Rheolwr Meddalwedd 17 | Name[da]=Programhåndtering 18 | Name[de]=Anwendungsverwaltung 19 | Name[el]=Διαχειριστής Λογισμικού 20 | Name[eo]=Programarmastrumilo 21 | Name[es]=Gestor de software 22 | Name[et]=Tarkvarahaldur 23 | Name[eu]=Software-kudeatzailea 24 | Name[fa]=مدیریت نرم‌افزارها 25 | Name[fi]=Ohjelmistohallinta 26 | Name[fil]=Tagapamahala ng Software 27 | Name[fo]=Ritbúnaðar fyristiting 28 | Name[fr]=Gestionnaire de logiciels 29 | Name[fr_CA]=Gestionnaire de logiciels 30 | Name[frp]=Gestionèro de logicièls 31 | Name[ga]=Bainisteoir bogearraí 32 | Name[gd]=Manaidsear a' bhathair-bhog 33 | Name[gl]=Xestor de software 34 | Name[gv]=Reireyder Claaghyn 35 | Name[he]=מנהל החבילות 36 | Name[hi]=सॉफ्टवेयर प्रबंधक 37 | Name[hr]=Upravitelj softvera 38 | Name[hu]=Szoftverkezelő 39 | Name[hy]=Ծրագրերի կառավարիչ 40 | Name[ia]=Gestor de software 41 | Name[id]=Pengelola Perangkat Lunak 42 | Name[is]=Hugbúnaðarstjórnun 43 | Name[it]=Gestore Applicazioni 44 | Name[ja]=ソフトウェアの管理 45 | Name[jv]=Pangelola prangkat-renyah 46 | Name[ka]=პროგრამების მენეჯერი 47 | Name[kab]=Amsefrak n iseɣẓanen 48 | Name[kk]=Бағдарламалар менеджері 49 | Name[km]=កម្មវិធីគ្រប់គ្រងកម្មវិធី 50 | Name[kn]=ತಂತ್ರಾಂಶ ವ್ಯವಸ್ಥಾಪಕ 51 | Name[ko]=소프트웨어 매니저 52 | Name[ku]=Rêvebirê Nermalavê 53 | Name[ky]=Программа менеджери 54 | Name[lo]=ຜູ້ກໍາກັບຊອບເເວລ 55 | Name[lt]=Programų tvarkytuvė 56 | Name[lv]=Programmatūras pārvaldnieks 57 | Name[mg]=Mpikirakira rindrankajy 58 | Name[mk]=Менаџер на софтвер 59 | Name[ml]=സോഫ്റ്റ്‌വേർ മാനേജർ 60 | Name[mr]=सॉफ्टवेयर व्यवस्थापक 61 | Name[ms]=Pengurus Perisian 62 | Name[nb]=Programvarebehandler 63 | Name[ne]=सफ्टवेयर प्रबन्धक 64 | Name[nl]=Programmabeheer 65 | Name[nn]=Programvarebehandlar 66 | Name[oc]=Gestionari de logicials 67 | Name[om]=Bulchiinsa furguugaa 68 | Name[pa]=ਸਾਫਟਵੇਅਰ ਮੈਨੇਜਰ 69 | Name[pap]=Atministrado di programa 70 | Name[pl]=Menedżer oprogramowania 71 | Name[pt]=Gestor de Programas 72 | Name[pt_BR]=Gerenciador de Aplicativos 73 | Name[pt_PT]=Gestor de Programas 74 | Name[ro]=Administrator software 75 | Name[ru]=Менеджер программ 76 | Name[sc]=Manigiadore de Aplicatziones 77 | Name[si]=මෘදුකාංග කළමනාකරනය 78 | Name[sk]=Správca softvéru 79 | Name[sl]=Upravljalnik programske opreme 80 | Name[so]=Agaasimaha softwieerka 81 | Name[sq]=Menaxhuesi i Programeve 82 | Name[sr]=Управник програма 83 | Name[sr@latin]=Menadžer programa 84 | Name[sv]=Programhanterare 85 | Name[ta]=மென்பொருள் மேலாண்மை 86 | Name[te]=సాప్ట్‍వేర్ నిర్వాహకం 87 | Name[tg]=Мудири нармафзор 88 | Name[th]=การจัดการ Software 89 | Name[tl]=Tagapamahala ng Software 90 | Name[tr]=Yazılım Yöneticisi 91 | Name[uk]=Керування програмами 92 | Name[ur]=سوفٹویئر منتظم 93 | Name[uz]=Дастурлар менежери 94 | Name[vi]=Trình Quản lý Phần mềm 95 | Name[zh_CN]=软件管理器 96 | Name[zh_HK]=軟件管理員 97 | Name[zh_TW]=軟體管理員 98 | Comment=Install new applications 99 | Comment[af]=Installeer nuwe program 100 | Comment[am]=አዲስ መተግበሪያዎችን መግጠሚያ 101 | Comment[ar]=تثبيت التطبيقات الجديدة 102 | Comment[ast]=Instalar nueves aplicaciones 103 | Comment[az]=Yeni tətbiqetmələr quraşdır 104 | Comment[be]=Усталяваць новыя праграмы 105 | Comment[bg]=Инсталиране на нови приложения 106 | Comment[bn]=নতুন অ্যাপলিকেশন ইনস্টল করুন 107 | Comment[bs]=Instaliraj nove aplikacije 108 | Comment[ca]=Instal·leu aplicacions noves 109 | Comment[ca@valencia]=Instal·lar nous programes 110 | Comment[cs]=Nainstalovat nové aplikace 111 | Comment[csb]=Instalëjë nową aplikacëjã 112 | Comment[cy]=Gosod rhaglenni newydd 113 | Comment[da]=Installér nye programmer 114 | Comment[de]=Neue Anwendungen installieren 115 | Comment[el]=Εγκατάσταση νέων εφαρμογών 116 | Comment[eo]=Instali novajn aplikaĵojn 117 | Comment[es]=Instalar nuevas aplicaciones 118 | Comment[et]=Paigalda uusi rakendusi 119 | Comment[eu]=Instalatu aplikazio berriak 120 | Comment[fa]=نصب برنامه‌های جدید 121 | Comment[fi]=Asenna uusia ohjelmia 122 | Comment[fil]=Mag-install ng mga bagong application 123 | Comment[fo]=Legg inn nýggjar nýtsluskipanir 124 | Comment[fr]=Installer de nouvelles applications 125 | Comment[fr_CA]=Installer de nouvelles applications 126 | Comment[ga]=Suiteáil feidhmchláir nua 127 | Comment[gd]=Stàlaich aplacaidean ùra 128 | Comment[gl]=Instalar novos aplicativos 129 | Comment[gv]=Cur claaghyn noa 'sy co`earrooder 130 | Comment[he]=התקנת יישומים חדשים 131 | Comment[hi]=नए अनुप्रयोग इंस्टॉल करें 132 | Comment[hr]=Instaliraj nove aplikacije 133 | Comment[hu]=Új alkalmazások telepítése 134 | Comment[hy]=Տեղադրել նոր ծրագիր 135 | Comment[ia]=Installar nove applicationes 136 | Comment[id]=Memasang aplikasi baru 137 | Comment[is]=Setja upp ný forrit 138 | Comment[it]=Installa nuove applicazioni 139 | Comment[ja]=新しいアプリケーションをインストール 140 | Comment[jv]=Masang aplikasi anyar 141 | Comment[ka]=ახალი აპლიკაციების დაყენება 142 | Comment[kab]=Sebded isnasen imaynuten 143 | Comment[kk]=Жаңа бағдарламаларды орнату 144 | Comment[kn]=ಹೊಸ ಅನ್ವಯಿಕಗಳನ್ನು ಅನುಸ್ಥಾಪಿಸು 145 | Comment[ko]=새로운 소프트웨어를 설치합니다 146 | Comment[ky]=Жаңы тиркемелерди орнотуу 147 | Comment[lo]=ຕິດຕັ້ງ ໂປຣແກຣມໃໝ່ 148 | Comment[lt]=Diegti naujas programas 149 | Comment[lv]=Uzstādīt jaunas lietotnes 150 | Comment[mg]=Hanampy rindrankajy vaovao 151 | Comment[mk]=Инсталирај нови апликации 152 | Comment[ml]=പുതിയ ആപ്ലിക്കേഷനുകൾ ഇൻസ്റ്റോൾ ചെയ്യുക 153 | Comment[mr]=नवीन संगणक प्रणाली प्रस्थापित करा 154 | Comment[ms]=Memasang aplikasi baru 155 | Comment[nb]=Installer nye programmer 156 | Comment[nds]=Neue Programme installieren 157 | Comment[ne]=नयाँ अनुप्रयोग  स्थापना गर्नुहोस् 158 | Comment[nl]=Nieuwe toepassingen installeren 159 | Comment[nn]=Installer nye program 160 | Comment[oc]=Installar d'aplicacions novèlas 161 | Comment[om]=Dhimbaaftota haaraa dhaabi 162 | Comment[pa]=ਨਵੀਆਂ ਐਪਲੀਕੇਸ਼ਣ ਇੰਸਟਾਲ ਕਰੋ 163 | Comment[pap]=Instala programanan nobo 164 | Comment[pl]=Zainstaluj nowe programy 165 | Comment[pt]=Instalar novas aplicações 166 | Comment[pt_BR]=Instalar novos aplicativos 167 | Comment[pt_PT]=Instalar novas aplicações 168 | Comment[ro]=Instalează aplicații noi 169 | Comment[ru]=Установить новые приложения 170 | Comment[si]=නව මෘදුකාංග ස්ථාපනය කරන්න 171 | Comment[sk]=Inštalovať nové aplikácie 172 | Comment[sl]=Namesti nove programe 173 | Comment[so]=Shub baraamijyo cusub 174 | Comment[sq]=Instalo programe të reja 175 | Comment[sr]=Угради нове програме 176 | Comment[sr@latin]=Instaliraj nove programe 177 | Comment[sv]=Installera nya program 178 | Comment[ta]=புதிய பயன்பாடுகளை நிறுவு 179 | Comment[te]=కొత్త అనువర్తనాలను స్థాపించు 180 | Comment[tg]=Насб кардани барномаҳои нав 181 | Comment[th]=ติดตั้งโปรแกรมใหม่ 182 | Comment[tl]=Mag-install ng mga bagong application 183 | Comment[tr]=Yeni uygulamalar yükle 184 | Comment[uk]=Встановлення нових програм 185 | Comment[ur]=نئی ایپلی کیشن انسٹال کریں 186 | Comment[uz]=Янги дастурларни тизимга ўрнатиш 187 | Comment[vi]=Cài đặt ứng dụng mới 188 | Comment[zh_CN]=安装新程序 189 | Comment[zh_HK]=安裝新應用程式 190 | Comment[zh_TW]=安裝新應用程式 191 | GenericName=Install new applications 192 | GenericName[af]=Installeer nuwe program 193 | GenericName[am]=አዲስ መተግበሪያዎችን መግጠሚያ 194 | GenericName[ar]=تثبيت التطبيقات الجديدة 195 | GenericName[ast]=Instalar nueves aplicaciones 196 | GenericName[az]=Yeni tətbiqetmələr quraşdır 197 | GenericName[be]=Усталяваць новыя праграмы 198 | GenericName[bg]=Инсталиране на нови приложения 199 | GenericName[bn]=নতুন অ্যাপলিকেশন ইনস্টল করুন 200 | GenericName[bs]=Instaliraj nove aplikacije 201 | GenericName[ca]=Instal·leu aplicacions noves 202 | GenericName[ca@valencia]=Instal·lar nous programes 203 | GenericName[cs]=Nainstalovat nové aplikace 204 | GenericName[csb]=Instalëjë nową aplikacëjã 205 | GenericName[cy]=Gosod rhaglenni newydd 206 | GenericName[da]=Installér nye programmer 207 | GenericName[de]=Neue Anwendungen installieren 208 | GenericName[el]=Εγκατάσταση νέων εφαρμογών 209 | GenericName[eo]=Instali novajn aplikaĵojn 210 | GenericName[es]=Instalar nuevas aplicaciones 211 | GenericName[et]=Paigalda uusi rakendusi 212 | GenericName[eu]=Instalatu aplikazio berriak 213 | GenericName[fa]=نصب برنامه‌های جدید 214 | GenericName[fi]=Asenna uusia ohjelmia 215 | GenericName[fil]=Mag-install ng mga bagong application 216 | GenericName[fo]=Legg inn nýggjar nýtsluskipanir 217 | GenericName[fr]=Installer de nouvelles applications 218 | GenericName[fr_CA]=Installer de nouvelles applications 219 | GenericName[ga]=Suiteáil feidhmchláir nua 220 | GenericName[gd]=Stàlaich aplacaidean ùra 221 | GenericName[gl]=Instalar novos aplicativos 222 | GenericName[gv]=Cur claaghyn noa 'sy co`earrooder 223 | GenericName[he]=התקנת יישומים חדשים 224 | GenericName[hi]=नए अनुप्रयोग इंस्टॉल करें 225 | GenericName[hr]=Instaliraj nove aplikacije 226 | GenericName[hu]=Új alkalmazások telepítése 227 | GenericName[hy]=Տեղադրել նոր ծրագիր 228 | GenericName[ia]=Installar nove applicationes 229 | GenericName[id]=Memasang aplikasi baru 230 | GenericName[is]=Setja upp ný forrit 231 | GenericName[it]=Installa nuove applicazioni 232 | GenericName[ja]=新しいアプリケーションをインストール 233 | GenericName[jv]=Masang aplikasi anyar 234 | GenericName[ka]=ახალი აპლიკაციების დაყენება 235 | GenericName[kab]=Sebded isnasen imaynuten 236 | GenericName[kk]=Жаңа бағдарламаларды орнату 237 | GenericName[kn]=ಹೊಸ ಅನ್ವಯಿಕಗಳನ್ನು ಅನುಸ್ಥಾಪಿಸು 238 | GenericName[ko]=새로운 소프트웨어를 설치합니다 239 | GenericName[ky]=Жаңы тиркемелерди орнотуу 240 | GenericName[lo]=ຕິດຕັ້ງ ໂປຣແກຣມໃໝ່ 241 | GenericName[lt]=Diegti naujas programas 242 | GenericName[lv]=Uzstādīt jaunas lietotnes 243 | GenericName[mg]=Hanampy rindrankajy vaovao 244 | GenericName[mk]=Инсталирај нови апликации 245 | GenericName[ml]=പുതിയ ആപ്ലിക്കേഷനുകൾ ഇൻസ്റ്റോൾ ചെയ്യുക 246 | GenericName[mr]=नवीन संगणक प्रणाली प्रस्थापित करा 247 | GenericName[ms]=Memasang aplikasi baru 248 | GenericName[nb]=Installer nye programmer 249 | GenericName[nds]=Neue Programme installieren 250 | GenericName[ne]=नयाँ अनुप्रयोग  स्थापना गर्नुहोस् 251 | GenericName[nl]=Nieuwe toepassingen installeren 252 | GenericName[nn]=Installer nye program 253 | GenericName[oc]=Installar d'aplicacions novèlas 254 | GenericName[om]=Dhimbaaftota haaraa dhaabi 255 | GenericName[pa]=ਨਵੀਆਂ ਐਪਲੀਕੇਸ਼ਣ ਇੰਸਟਾਲ ਕਰੋ 256 | GenericName[pap]=Instala programanan nobo 257 | GenericName[pl]=Zainstaluj nowe programy 258 | GenericName[pt]=Instalar novas aplicações 259 | GenericName[pt_BR]=Instalar novos aplicativos 260 | GenericName[pt_PT]=Instalar novas aplicações 261 | GenericName[ro]=Instalează aplicații noi 262 | GenericName[ru]=Установить новые приложения 263 | GenericName[si]=නව මෘදුකාංග ස්ථාපනය කරන්න 264 | GenericName[sk]=Inštalovať nové aplikácie 265 | GenericName[sl]=Namesti nove programe 266 | GenericName[so]=Shub baraamijyo cusub 267 | GenericName[sq]=Instalo programe të reja 268 | GenericName[sr]=Угради нове програме 269 | GenericName[sr@latin]=Instaliraj nove programe 270 | GenericName[sv]=Installera nya program 271 | GenericName[ta]=புதிய பயன்பாடுகளை நிறுவு 272 | GenericName[te]=కొత్త అనువర్తనాలను స్థాపించు 273 | GenericName[tg]=Насб кардани барномаҳои нав 274 | GenericName[th]=ติดตั้งโปรแกรมใหม่ 275 | GenericName[tl]=Mag-install ng mga bagong application 276 | GenericName[tr]=Yeni uygulamalar yükle 277 | GenericName[uk]=Встановлення нових програм 278 | GenericName[ur]=نئی ایپلی کیشن انسٹال کریں 279 | GenericName[uz]=Янги дастурларни тизимга ўрнатиш 280 | GenericName[vi]=Cài đặt ứng dụng mới 281 | GenericName[zh_CN]=安装新程序 282 | GenericName[zh_HK]=安裝新應用程式 283 | GenericName[zh_TW]=安裝新應用程式 284 | Exec=mintinstall 285 | Icon=software-properties-mint 286 | Terminal=false 287 | Type=Application 288 | Encoding=UTF-8 289 | Categories=System; 290 | OnlyShowIn=KDE; 291 | -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/featured/joystick.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | image/svg+xml 10 | 11 | 12 | Retro Joystick 002 13 | 2007-11-14 14 | 15 | 16 | brunurb 17 | 18 | 19 | 20 | 21 | joystick 22 | game 23 | retro 24 | classic 25 | arcade 26 | 27 | 28 | Retro gaming joystick 29 | 30 | 31 | This work is hereby released into the Public Domain. To view a copy of the public domain dedication, visit http://creativecommons.org/licenses/publicdomain/ or send a letter to Creative Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA. 32 | 33 | 34 | 35 | 36 | openclipart.org 37 | 38 | 39 | openclipart.org 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- 1 | mintinstall (7.9.7) tessa; urgency=medium 2 | 3 | [ Michael Webster ] 4 | * mintinstall.py: Detect lower resolution monitors, hide the featured app and the editor's picks label in this case. 5 | 6 | -- Clement Lefebvre Mon, 17 Dec 2018 11:20:45 +0000 7 | 8 | mintinstall (7.9.6) tessa; urgency=medium 9 | 10 | [ Clement Lefebvre ] 11 | * Fix export_flatpak 12 | 13 | [ Michael Webster ] 14 | * mintinstall: Add a refresh menu item, and distinguish an (incorrectly) empty category from an empty search result so we can provide a more helpful message and allow the user to refresh if necessary. 15 | * housekeeping: cast PosixPath to string for python3 < 3.6 16 | * mintinstall: terminate() the review and housekeeping processes when closing the program, they won't terminate properly when the parent process is killed. 17 | * _apt.py: Add "libk3b7" to filter exceptions. 18 | * cache.py: Check that the system cache can be read before using. 19 | * all: Don't require flatpak to be installed. (#218) 20 | 21 | [ gm10 ] 22 | * _apt.py: whitelist libimage-exiftool-perl (#217) 23 | 24 | [ Clement Lefebvre ] 25 | * l10n: Fix msgids 26 | * l10n: Update POT file 27 | * l10n: Update files 28 | 29 | [ Michael Webster ] 30 | * all: Fix some issues caused by making flatpak optional.. 31 | 32 | [ Clement Lefebvre ] 33 | * l10n: Update files 34 | 35 | -- Clement Lefebvre Wed, 28 Nov 2018 11:58:34 +0000 36 | 37 | mintinstall (7.9.5) tara; urgency=medium 38 | 39 | [ Michael Webster ] 40 | * _apt.py: don't filter out package 'librecad'. 41 | * mintinstall.py: search for a list of terms anywhere in a package name, rather than trying to exactly match the search string. 42 | * package details: append 'Flatpak' to the details heading to be more obvious about the package source/type. 43 | * makepot: Update to include dialogs.py, update potfile. 44 | 45 | -- Clement Lefebvre Tue, 17 Jul 2018 10:11:25 +0200 46 | 47 | mintinstall (7.9.4) tara; urgency=medium 48 | 49 | [ Michael Webster ] 50 | * _flatpak.py: When fetch_remote_ref_sync() fails, fallback to building a synthetic RemoteRef for the runtime. Remove version comparison from the theme filter. 51 | * _flatpak.py: Return installed ref list without first trying to convert them to RemoteRefs. (Related to previous commit, fetch_remote_sync seems to no longer work.) 52 | * _flatpak.py: Find the real RemoteRef for runtimes and related refs by picking them from a list of true remote refs. 53 | * _flatpak.py: Fix a bug that was giving an installed size of 0 if related refs were to be installed. 54 | * _flatpak.py: Use the list-iter method for getting the initial remote ref to the app we're installing. This allows utilizing the metadata property rather than having to fetch it. Also improve some logging to assist debugging. 55 | * Fix display of installed one-off flatpaks (backed by .flatpakref files) 56 | * mintinstall: Track installed apps by hash rather than name. 57 | * mintinstall: After removing a standalone flatpak, don't attempt to display it again - its remote gets auto-removed, and we no longer "know" about it. (this applies only to flatpaks installed via flatpakref files, that add their own remotes) 58 | * mintinstall.py: Fix detection of old package names in the installed apps list. 59 | 60 | -- Clement Lefebvre Wed, 04 Jul 2018 16:40:29 +0200 61 | 62 | mintinstall (7.9.3) tara; urgency=medium 63 | 64 | * Add suggested-action class to Launch button 65 | 66 | -- Clement Lefebvre Sat, 16 Jun 2018 11:31:23 +0200 67 | 68 | mintinstall (7.9.2) tara; urgency=medium 69 | 70 | [ Michael Webster ] 71 | * flatpaks: Check for duplicates when adding refs to a task. Some apps will check for theme support on their own and include them as runtimes, so when we do our own check, we need to skip adding them a second time to prevent an error during the installation. 72 | 73 | -- Clement Lefebvre Sat, 12 May 2018 13:23:11 +0100 74 | 75 | mintinstall (7.9.1) tara; urgency=medium 76 | 77 | [ Michael Webster ] 78 | * Support adding remotes via .flatpakref files, along with some additional fixes for other problems uncovered regarding flatpakref files. 79 | * Save flatpak remote details, and check at startup if they've changed. Refresh the cache if necessary. 80 | * flatpaks: Install current system gtk and icon theme (if available) during app installation. 81 | * flatpaks: Show individual remote subcategories, use proper titles for remote names when provided, be smarter about cache changes when they involve one-off remotes like .flatpakref installs. 82 | 83 | -- Clement Lefebvre Thu, 10 May 2018 17:22:39 +0100 84 | 85 | mintinstall (7.9.0) tara; urgency=medium 86 | 87 | [ Eduardo Orochena ] 88 | * replaced os module with the subprocess one (#163) 89 | 90 | [ Michael Webster ] 91 | * Port to python3 92 | * Simplify search entry handling - GtkSearchEntry implements its own idle callback if we connect to "search-changed," so we don't have to. 93 | * Improve keyboard nav in result lists, improve sensitivity logic for the "show installed" menu item, fix the installed list becoming stuck as the listing page, even after entering a search query, don't allow showing the installed page if the user has never installed anything (the installed list is empty.) 94 | * Check removals when displaying package details, and prevent removal or installation if the side effects could break the system. 95 | * Place header labels outside the scrolled window for the listing and details pages. Place the labels into revealers, and implement dynamically showing/hiding the labels depending on the scrolling direction. 96 | * Pre-select the first child in list result, ensure its focus when entering the list page, and when returning to it from the details page. 97 | * Simplify click/activate handling of package tiles - use the flowbox child activation signal exclusively, by just having the GtkButton clicked signal call GtkFlowBoxChild.activate. 98 | * Use GtkRevealer instead of notebook for the main page switching. 99 | * Setup list view asynchronously, but switch to it immediately. 100 | * Optimize add_package checks by highest match count to lowest (roughly) 101 | * Load package data from the apt cache asynchronously. Load landing items immediately. This allows the application to become useable in about 1 second (down from 3-5) 102 | * Take chunks of the apt cache rather than one at a time. 250 per callback seems to have little impact on gui, while still keeping time to a minimum. 103 | * Add loading indicator for cache state 104 | * Update the list page once loading is complete 105 | * Add left/right spacing to the details page header box. 106 | * Clean up add_package stuff, rename to add_deb* to be consistent with flatpaks. Move critical check directly to the show_package code, this reduces async load time significantly during startup. 107 | * Speed up package details page - simplify formatting of download/disk space values, and reset the cache when leaving the details page, and only reset upon loading one, if for some reason it isn't clear. 108 | * Remove an unused variable, comment, add a comment about idle vs threading. 109 | 110 | [ Clement Lefebvre ] 111 | * Fix export_listing for flatpaks 112 | 113 | [ milangfx ] 114 | * Use HEAD request to check new-reviews file size (#184) 115 | 116 | [ JosephMcc ] 117 | * Gtk3.22 fixes: Fix a warning about deprecated functionality (#187) 118 | * ui: Fix the alignment of the toolbar menu button (#188) 119 | 120 | [ Michael Webster ] 121 | * Refactor to separate UI code from package management. 122 | 123 | [ JosephMcc ] 124 | * Ui: Restyle the main toolbar 125 | 126 | [ Michael Webster ] 127 | * Add script to periodically clean out old screenshots. 128 | * Code cleanup, pylint, pyflakes, de-duplication, logging consistency. 129 | * Compile python files to bytecode during postinst. 130 | * _apt.py: Re-arrange imports and set a min version on Gdk. This keeps the mintinstall-update-pkgcache script from complaining about the aptdaemon.gtk3widgets import. 131 | * debian/rules: Remove dh_install override, we don't use the packaged review file any more. Mintinstall can start without a review set, and will pick it up once it's been downloaded and cached at runtime. 132 | * mintinstall-remove-app: return a useful exit code 133 | * mintinstall-remove-app: Fix missing error return. 134 | * flatpaks: Fix handling of a couple of failure cases - the cancellation of an auth prompt when adding a new remote, and failure to resolve runtime dependencies. 135 | * flatpaks: Fetch runtime related refs from the remote that actually has the runtime, not the app's remote - if a runtime is not found from the preferred remote, we check other remotes just in case. If a runtime ref is found elsewhere, it's likely any related refs for it will be there as well. 136 | 137 | [ JosephMcc ] 138 | * UI: Add a small margin between the application icon and window edge (#191) 139 | 140 | [ Clement Lefebvre ] 141 | * l10n: Update files 142 | 143 | -- Clement Lefebvre Mon, 07 May 2018 12:02:28 +0100 144 | 145 | mintinstall (7.8.9) sylvia; urgency=medium 146 | 147 | [ Michael Webster ] 148 | * mintinstall.py: Add a couple more package name filters for apt packages. 149 | * Fix i386 arch flatpak detection 150 | * Print detected system architecture at startup. 151 | 152 | -- Clement Lefebvre Mon, 04 Dec 2017 10:46:19 +0000 153 | 154 | mintinstall (7.8.8) sylvia; urgency=medium 155 | 156 | [ Clement Lefebvre ] 157 | * Export: Ensure the APT cache is in English 158 | 159 | [ Corbin Auriti ] 160 | * Remove minitube from editors picks as it is broken (#160) 161 | 162 | -- Clement Lefebvre Fri, 24 Nov 2017 12:02:18 +0000 163 | 164 | mintinstall (7.8.7) sylvia; urgency=medium 165 | 166 | * Improve get_application_icon() 167 | * Flatpak: Provide missing icons 168 | 169 | -- Clement Lefebvre Wed, 22 Nov 2017 17:32:46 +0000 170 | 171 | mintinstall (7.8.6) sylvia; urgency=medium 172 | 173 | [ Clement Lefebvre ] 174 | * Categories: Sorted/Reviewed some of the lists 175 | * Reset scrolledwindows to the top when appropriate 176 | * Fix name collisions 177 | * Postinst: Create share dirs for flatpak 178 | * Depend on xdg-desktop-portal-gtk 179 | 180 | [ JosephMcc ] 181 | * Change the logic a bit for finding flatpak icons (#157) 182 | 183 | [ Clement Lefebvre ] 184 | * Add support for Debconf 185 | * Flatpak: Add tooltips on spinner 186 | 187 | -- Clement Lefebvre Tue, 21 Nov 2017 12:52:32 +0000 188 | 189 | mintinstall (7.8.5) sylvia; urgency=medium 190 | 191 | [ Clement Lefebvre ] 192 | * Flatpak: Fix installing apps with missing dependencies 193 | 194 | [ NikoKrause ] 195 | * Add Timeshift to Editor's picks 196 | 197 | -- Clement Lefebvre Mon, 20 Nov 2017 10:25:57 +0000 198 | 199 | mintinstall (7.8.4) sylvia; urgency=medium 200 | 201 | [ JosephMcc ] 202 | * loading: Don't attempt to add the add the same widget twice (#150) 203 | * Make installation and removal a bit more user friendly (#152) 204 | * Reduce the vertical size of the window (#154) 205 | * reviews: Hide the empty frame when there are no reviews to shows (#151) 206 | 207 | [ Clement Lefebvre ] 208 | * Featured: Remove glade and improve PIA background 209 | * l10n: Update POT file 210 | 211 | -- Clement Lefebvre Fri, 17 Nov 2017 12:01:10 +0000 212 | 213 | mintinstall (7.8.3) sylvia; urgency=medium 214 | 215 | * Feature WhatsApp 216 | 217 | -- Clement Lefebvre Sun, 12 Nov 2017 11:56:36 +0000 218 | 219 | mintinstall (7.8.2) sylvia; urgency=medium 220 | 221 | * Feature Skype and Google Earth 222 | 223 | -- Clement Lefebvre Sun, 12 Nov 2017 11:22:54 +0000 224 | 225 | mintinstall (7.8.1) sylvia; urgency=medium 226 | 227 | * l10n: Fix locale not set in UI 228 | 229 | -- Clement Lefebvre Mon, 06 Nov 2017 11:12:10 +0000 230 | 231 | mintinstall (7.8.0) sylvia; urgency=medium 232 | 233 | * Add missing dependency on python-configobj 234 | * Fix progress when installing/removing software. 235 | 236 | -- Clement Lefebvre Sun, 05 Nov 2017 12:31:27 +0000 237 | 238 | mintinstall (7.7.9) sylvia; urgency=medium 239 | 240 | [ Clement Lefebvre ] 241 | * Port to Gtk3 and AptDaemon (#129) 242 | * Create README.md 243 | 244 | [ JosephMcc ] 245 | * menu: Use python style variable names 246 | * menu: Properly set mnemonics 247 | * menu: Quit using GtkStock 248 | * Fix the placement of scrollbar 249 | * Clean up the layout of PackageTile a bit 250 | * applications-list: Don't expand the tiles to fill the scrolled window 251 | * details-view: Fix mouse wheel scrolling in the margins 252 | * Redesign the UI on the package page 253 | * about-dialog: Actually close the dialog when hitting the close button 254 | * about-dialog: Set the transient for hint 255 | * toolbar: Use a symbolic icon for the back button 256 | 257 | [ Clement Lefebvre ] 258 | * Show available screenshots immediately 259 | 260 | [ JosephMcc ] 261 | * applications-view: Set a min width on the sidebar listbox 262 | * applications-list: Add an "All" button in the categories sidebar 263 | * Add suggested/destructive style classes to the install/remove buttons (#134) 264 | 265 | [ Corbin Auriti ] 266 | * Added support for going back with keys and buttons (#137) 267 | 268 | [ JosephMcc ] 269 | * Icons cleanup (#135) 270 | 271 | [ Clement Lefebvre ] 272 | * Replace website button with a link 273 | * Remove View menu/filters and fix keypress detection 274 | * Properly fix keypress detection 275 | * Port settings to GSettings 276 | * Various fixes 277 | * Update README 278 | * Show a link to the community website to add a review 279 | * l10n: Update makepot and POT file 280 | * Add missing schema 281 | * Update README 282 | * Implement featured tile 283 | * Localize names, summaries and descriptions 284 | 285 | [ Corbin Auriti ] 286 | * Fix an icon issue, updates sub cat lists, and add Editors Picks category (#138) 287 | 288 | [ Clement Lefebvre ] 289 | * Feature Steam:i386, fix randomly picking editor's picks 290 | * Load featured app from a featured.list file 291 | * Add the ability to launch applications 292 | * l10n: Update POT file 293 | * Fine-tune development category 294 | * Fix special cases when launching apps 295 | * Add aliases for long names in featured tiles 296 | 297 | [ monsta ] 298 | * add missing runtime dependencies on GI packages 299 | * remove duplicate gi.require_version 300 | * build: use https link to fetch reviews to avoid "301 Moved" message 301 | 302 | [ Clement Lefebvre ] 303 | * Featured tiles: Use an overlay to show installed mark 304 | * Replace menubar with toolbar menu button 305 | * Add the ability to see installed apps 306 | * Refresh loaded tiles when the state of an app changes 307 | * Fix updating state and progress widgets 308 | * Reduce height of featured app to fit manager within 1204x768 309 | * Menu: Add a separator and remove the icon on about 310 | * Fix case where appstream returns a Null description 311 | * l10n: Update POT file 312 | * Generate desktop files 313 | * Fix missing i18n 314 | * l10n: Fix typo 315 | * Fix featured app missing reviews/score 316 | * Fix layout issue 317 | 318 | [ JosephMcc ] 319 | * subcategories: Ensure the "All" category is selected initially (#142) 320 | 321 | [ Clement Lefebvre ] 322 | * Fix progressbar remaining on cancelled pkit auth. 323 | 324 | [ Corbin Auriti ] 325 | * UI Polish (#143) 326 | 327 | [ NikoKrause ] 328 | * use constant width for the main/big screenshot (#141) 329 | 330 | [ Clement Lefebvre ] 331 | * Add support for window progress 332 | * Screenshots: Handle/remove buggy screenshots, treat HTTP 300+ codes as errors 333 | * Add PIA Manager to the list of featured software 334 | 335 | [ Michael Webster ] 336 | * search: Don't update immediately after each keystroke, allow for a delay to reduce choppiness. 337 | 338 | [ Clement Lefebvre ] 339 | * Add support for Flatpak (#146) 340 | * l10n: Update POT file 341 | * l10n: Fix a few msgid. 342 | * Screenshots: Don't treat 300 HTTP status as errors 343 | * Flatpak: Catch exceptions while scanning remotes 344 | * Flatpak: Only set up Flathub by default 345 | 346 | -- Clement Lefebvre Thu, 26 Oct 2017 13:16:43 +0100 347 | 348 | mintinstall (7.7.8) sonya; urgency=medium 349 | 350 | * Add exception handling around the loading of app icons 351 | 352 | -- Clement Lefebvre Tue, 13 Jun 2017 13:51:21 +0100 353 | 354 | mintinstall (7.7.7) sonya; urgency=medium 355 | 356 | * l10n: Generate desktop files 357 | 358 | -- Clement Lefebvre Sun, 07 May 2017 12:04:08 +0100 359 | 360 | mintinstall (7.7.6) sonya; urgency=medium 361 | 362 | [ theel0ja ] 363 | * Remove hardcoding of featured icon 364 | 365 | [ JosephMcc ] 366 | * Install an icon for the hicolor icon theme (#125) 367 | 368 | -- Clement Lefebvre Mon, 01 May 2017 18:24:49 +0100 369 | 370 | mintinstall (7.7.5) sarah; urgency=medium 371 | 372 | * Error handling: Remove dpkg from list of checked processes 373 | * Error handling: Show actual error and stack trace 374 | * Force LC_NUMERIC=C in the environment 375 | 376 | -- Clement Lefebvre Thu, 17 Nov 2016 17:26:46 +0000 377 | 378 | mintinstall (7.7.4) sarah; urgency=medium 379 | 380 | * Show a custom featured list in KDE 381 | 382 | -- Clement Lefebvre Fri, 02 Sep 2016 16:28:22 +0100 383 | 384 | mintinstall (7.7.3) sarah; urgency=medium 385 | 386 | * Don't draw a yellow background in search entry 387 | 388 | -- Clement Lefebvre Wed, 22 Jun 2016 14:42:20 +0100 389 | 390 | mintinstall (7.7.2) sarah; urgency=medium 391 | 392 | * Edited list of emulators 393 | 394 | -- Clement Lefebvre Thu, 16 Jun 2016 17:43:02 +0100 395 | 396 | mintinstall (7.7.1) sarah; urgency=medium 397 | 398 | * Featured apps: Switch virtualbox with virtualbox-qt 399 | 400 | -- Clement Lefebvre Wed, 15 Jun 2016 10:56:00 +0100 401 | 402 | mintinstall (7.7.0) sarah; urgency=medium 403 | 404 | * Added codecs to featured list 405 | 406 | -- Clement Lefebvre Thu, 19 May 2016 17:06:09 +0100 407 | 408 | mintinstall (7.6.9) sarah; urgency=medium 409 | 410 | * Ignore :arch suffix in package name when looking for icons 411 | * Export: Don't ignore arch packages which aren't represented without an arch 412 | * Simplify names and listings 413 | * Fixed reviewing apps 414 | * Reviewed list of featured apps 415 | 416 | -- Clement Lefebvre Thu, 19 May 2016 15:48:03 +0100 417 | 418 | mintinstall (7.6.8) sarah; urgency=medium 419 | 420 | * Fixed mintsources icon in the menu 421 | 422 | -- Clement Lefebvre Fri, 13 May 2016 12:18:02 +0100 423 | 424 | mintinstall (7.6.7) sarah; urgency=medium 425 | 426 | [ Daniel Alley ] 427 | * PEP8 autoformatting 428 | * Moved non-executable files into usr/share, changed directories to lowercase 429 | * Changed case of program name in the about dialog 430 | 431 | -- Clement Lefebvre Tue, 10 May 2016 17:41:40 +0100 432 | 433 | mintinstall (7.6.6) sarah; urgency=medium 434 | 435 | [ Daniel Alley ] 436 | * Replaced dependency on static python-configobj in mint-common for the upstream version 437 | * Replaced 'from user import home' with os.path.expanduser('~') 438 | 439 | -- Clement Lefebvre Tue, 10 May 2016 17:38:05 +0100 440 | 441 | mintinstall (7.6.5) sarah; urgency=medium 442 | 443 | * Updated generated files and pot file 444 | 445 | -- Clement Lefebvre Fri, 22 Apr 2016 12:34:38 +0100 446 | 447 | mintinstall (7.6.4) sarah; urgency=medium 448 | 449 | [ Corbin Auriti ] 450 | * Tweaked the Featured List 451 | 452 | [ Clement Lefebvre ] 453 | * Removed GTK frontend and support for .mint files (obsolete) 454 | * Removed obsolete files 455 | * Removed unused files 456 | * Shebangs 457 | * Removed more obsolete files 458 | * Removed icon.svg 459 | 460 | -- Clement Lefebvre Thu, 21 Jan 2016 16:39:37 +0000 461 | 462 | mintinstall (7.6.3) rosa; urgency=medium 463 | 464 | [ djcj ] 465 | * fix icon-size-and-directory-name-mismatch 466 | 467 | [ monsta ] 468 | * Fix frontend.py 469 | * Fix mintInstall.py 470 | * Fix mintinstall.py 471 | * Fix remove.py 472 | 473 | [ Corbin ] 474 | * Add some missing drawing apps 475 | * Add gcolor2 476 | 477 | [ Gwendal Le Bihan ] 478 | * Improve initial loading time 479 | 480 | [ Clement Lefebvre ] 481 | * [darealshinji] Update Debian files, remove Python bytecode 482 | * Updated desktop files 483 | 484 | -- Clement Lefebvre Fri, 06 Nov 2015 16:28:25 +0000 485 | 486 | mintinstall (7.6.2) rafaela; urgency=medium 487 | 488 | * Updated desktop files (removed duplicated categories in KDE, added to settings in Xfce) 489 | 490 | -- Clement Lefebvre Thu, 09 Jul 2015 12:11:28 +0200 491 | 492 | mintinstall (7.6.1) rafaela; urgency=medium 493 | 494 | * Removed duplicated categories in KDE menus 495 | 496 | -- Clement Lefebvre Thu, 09 Jul 2015 12:01:54 +0200 497 | 498 | mintinstall (7.6.0) rebecca; urgency=medium 499 | 500 | * Disable homepage browsing for now (as root, can result in security/stability issues) 501 | 502 | -- Clement Lefebvre Mon, 03 Nov 2014 17:41:33 +0100 503 | 504 | mintinstall (7.5.9) rebecca; urgency=medium 505 | 506 | * Fixed l10n 507 | * Improved impact on packages section, added a modal warning dialog when packages are being removed 508 | 509 | -- Clement Lefebvre Mon, 03 Nov 2014 17:26:02 +0100 510 | 511 | mintinstall (7.5.8) rebecca; urgency=medium 512 | 513 | * Fix for checkmark icon rendering glitches 514 | * Added audacity to sound and video category 515 | 516 | -- Clement Lefebvre Tue, 30 Sep 2014 13:12:13 +0200 517 | 518 | mintinstall (7.5.7) qiana; urgency=medium 519 | 520 | * Don't break when a package's dependencies are broken 521 | * Don't allow the installation of broken packages 522 | * Don't erase the search entry field when searching within a category 523 | * Changed "search while typing" default value to False (less comfortable but more reliable) 524 | 525 | -- Clement Lefebvre Tue, 17 Jun 2014 16:46:17 +0100 526 | 527 | mintinstall (7.5.6) qiana; urgency=medium 528 | 529 | * Don't allow user to install packages which are known to be broken or which do not install properly in mintinstall 530 | 531 | -- Clement Lefebvre Wed, 21 May 2014 17:41:13 +0100 532 | 533 | mintinstall (7.5.5) qiana; urgency=medium 534 | 535 | * Remove hardcoded width of main category view, this lets the view re-flow when the window size is changed. 536 | 537 | -- Clement Lefebvre Wed, 21 May 2014 11:22:44 +0100 538 | 539 | mintinstall (7.5.4) qiana; urgency=medium 540 | 541 | * Updated desktop files 542 | 543 | -- Clement Lefebvre Sun, 04 May 2014 13:24:11 +0100 544 | 545 | mintinstall (7.5.3) qiana; urgency=medium 546 | 547 | * Improve scores UI 548 | * Fix how chromium is found 549 | 550 | -- Clement Lefebvre Mon, 14 Apr 2014 13:15:20 +0100 551 | 552 | mintinstall (7.5.2) petra; urgency=low 553 | 554 | * Fixed 64px size icon in package view (fixes huge icons in KDE) 555 | 556 | -- Clement Lefebvre Thu, 05 Dec 2013 10:04:35 +0000 557 | 558 | mintinstall (7.5.1) petra; urgency=low 559 | 560 | * Download screenshots asynchronously 561 | 562 | -- Clement Lefebvre Mon, 11 Nov 2013 17:53:47 +0000 563 | 564 | mintinstall (7.5.0) petra; urgency=low 565 | 566 | * Various UI improvements 567 | * Various speed improvements 568 | 569 | -- Clement Lefebvre Sat, 09 Nov 2013 15:41:26 +0000 570 | 571 | mintinstall (7.4.9) petra; urgency=low 572 | 573 | * Fix desktop file 574 | 575 | -- Frédéric Gaudet Fri, 08 Nov 2013 09:53:36 +0100 576 | 577 | mintinstall (7.4.8) olivia; urgency=low 578 | 579 | * 7.4.8 580 | 581 | -- Clement Lefebvre Wed, 22 May 2013 10:33:12 +0100 582 | 583 | mintinstall (7.4.7) olivia; urgency=low 584 | 585 | * 7.4.7 586 | 587 | -- Clement Lefebvre Tue, 21 May 2013 12:08:22 +0100 588 | 589 | mintinstall (7.4.6) olivia; urgency=low 590 | 591 | * 7.4.6 592 | 593 | -- Clement Lefebvre Mon, 06 May 2013 13:35:03 +0100 594 | 595 | mintinstall (7.4.5) olivia; urgency=low 596 | 597 | * Automatically load more packages when we get to the bottom of the list 598 | * Fix score getting cut-off 599 | * Search in category 600 | * Include packages in the "java" section into the "Programming" category 601 | 602 | -- Clement Lefebvre Wed, 13 Mar 2013 11:08:27 +0000 603 | 604 | mintinstall (7.4.4) nadia; urgency=low 605 | 606 | * Remove auto_fix=False parameter in mark_install (prevents ending up with broken packages when installing conflicting recommends) 607 | 608 | -- Clement Lefebvre Thu, 15 Nov 2012 21:41:39 +0000 609 | 610 | mintinstall (7.4.3) nadia; urgency=low 611 | 612 | * Fixed segfault due to character encoding 613 | 614 | -- Clement Lefebvre Fri, 02 Nov 2012 14:49:08 +0000 615 | 616 | mintinstall (7.4.2) nadia; urgency=low 617 | 618 | * Search while typing is now configurable 619 | 620 | -- Clement Lefebvre Sun, 21 Oct 2012 12:01:13 +0100 621 | 622 | mintinstall (7.4.1) nadia; urgency=low 623 | 624 | * Ship an initial set of reviews by default 625 | * Run mintinstall as root and use kdesudo in KDE 626 | * Removed large-font "Software Manager" label in main window 627 | * Replaced background "frise" with EEE->FFF gradient 628 | 629 | -- Clement Lefebvre Thu, 18 Oct 2012 23:50:44 +0100 630 | 631 | mintinstall (7.4.0) nadia; urgency=low 632 | 633 | * New icon 634 | * Refresh view after installation/removal 635 | * Debconf support 636 | * Aptclient replaces aptd 637 | 638 | -- Clement Lefebvre Tue, 16 Oct 2012 15:28:20 +0100 639 | 640 | mintinstall (7.3.9) maya; urgency=low 641 | 642 | * Force icon size to 32px 643 | 644 | -- Clement Lefebvre Mon, 25 Jun 2012 15:46:37 +0100 645 | 646 | mintinstall (7.3.8) maya; urgency=low 647 | 648 | * Specify dbus bus when using aptd 649 | * Use apt signals instead of a threaded transaction loop 650 | 651 | -- Clement Lefebvre Tue, 19 Jun 2012 16:40:37 +0100 652 | 653 | mintinstall (7.3.7) maya; urgency=low 654 | 655 | * Don't accept to be run as root 656 | * Don't crash when an icon can't be loaded (fixes Accessories and All Apps categories not showing in Maya) 657 | 658 | -- Clement Lefebvre Fri, 25 May 2012 10:06:44 +0100 659 | 660 | mintinstall (7.3.6) lisa; urgency=low 661 | 662 | * Multiple fixes from glebihan and doverton51 663 | 664 | -- Clement Lefebvre Thu, 26 Apr 2012 14:20:00 +0000 665 | 666 | mintinstall (7.3.5) lisa; urgency=low 667 | 668 | * Featured Opera 669 | 670 | -- Clement Lefebvre Mon, 02 Jan 2012 17:41:41 +0000 671 | 672 | mintinstall (7.3.4) lisa; urgency=low 673 | 674 | * Removed commercial apps from categories view 675 | 676 | -- Clement Lefebvre Tue, 8 Nov 2011 12:54:00 +0000 677 | 678 | mintinstall (7.3.3) katya; urgency=low 679 | 680 | * Replaced deprecated Python refs to pkg.isInstalled with pkg.is_installed 681 | 682 | -- Clement Lefebvre Tue, 15 Jun 2011 11:49:00 +0000 683 | 684 | mintinstall (7.3.2) katya; urgency=low 685 | 686 | * Added dependency on python-sexy 687 | 688 | -- Clement Lefebvre Thu, 28 Apr 2011 14:14:00 +0000 689 | 690 | mintinstall (7.3.1) katya; urgency=low 691 | 692 | * Mint 11 improvements 693 | 694 | -- Clement Lefebvre Tue, 26 Apr 2011 15:43:00 +0000 695 | 696 | mintinstall (7.2.7) julia; urgency=low 697 | 698 | * Immediately closes when requested 699 | 700 | -- Clement Lefebvre Tue, 26 Oct 2010 17:07:00 +0000 701 | 702 | mintinstall (7.2.6) julia; urgency=low 703 | 704 | * Immediately closes when requested 705 | 706 | -- Clement Lefebvre Tue, 26 Oct 2010 17:07:00 +0000 707 | 708 | mintinstall (7.2.5) julia; urgency=low 709 | 710 | * Unicode support in generated images 711 | * ttf-wqy-microhei fonts are used if installed (bringing additional unicode support) 712 | 713 | -- Clement Lefebvre Tue, 26 Oct 2010 16:18:00 +0000 714 | 715 | mintinstall (7.2.4) julia; urgency=low 716 | 717 | * Added dropbox to featured applications 718 | 719 | -- Clement Lefebvre Fri, 22 Oct 2010 12:47:00 +0000 720 | 721 | mintinstall (7.2.3) julia; urgency=low 722 | 723 | * Search is now case-insensitive 724 | 725 | -- Clement Lefebvre Tue, 19 Oct 2010 15:29:00 +0000 726 | 727 | mintinstall (7.2.2) julia; urgency=low 728 | 729 | * Fixed import error 730 | 731 | -- Clement Lefebvre Mon, 11 Oct 2010 09:59:00 +0000 732 | 733 | mintinstall (7.2.1) julia; urgency=low 734 | 735 | * APTD 0.3 compatible 736 | 737 | -- Clement Lefebvre Tue, 05 Oct 2010 15:30:00 +0000 738 | 739 | mintinstall (7.2.0) julia; urgency=low 740 | 741 | * Virtualbox-nonfree featured 742 | 743 | -- Clement Lefebvre Sun, 03 Oct 2010 13:26:00 +0000 744 | 745 | mintinstall (7.1.9) julia; urgency=low 746 | 747 | * Better categorization 748 | 749 | -- Clement Lefebvre Tue, 21 Sep 2010 16:29:00 +0000 750 | 751 | mintinstall (7.1.8) julia; urgency=low 752 | 753 | * Show application icons if mintinstall-icons is installed 754 | 755 | -- Clement Lefebvre Wed, 08 Sep 2010 10:21:00 +0000 756 | 757 | mintinstall (7.1.7) isadora; urgency=low 758 | 759 | * Show package versions 760 | 761 | -- Clement Lefebvre Sat, 12 Jun 2010 10:42:00 +0000 762 | 763 | mintinstall (7.1.6) isadora; urgency=low 764 | 765 | * Fixed double-click issue with webkit 766 | * Limited categories to 500 items (speed improvement) 767 | * Only showing 10 comments by default 768 | * Reduced lag with aptd 769 | * New option to use external browser for links 770 | 771 | -- Clement Lefebvre Wed, 2 Jun 2010 12:18:00 +0000 772 | 773 | mintinstall (7.1.5) isadora; urgency=low 774 | 775 | * Using hashtables, significant speed improvements 776 | 777 | -- Clement Lefebvre Fri, 28 May 2010 14:57:00 +0000 778 | 779 | mintinstall (7.1.4) isadora; urgency=low 780 | 781 | * Updated desktop file 782 | 783 | -- Clement Lefebvre Fri, 14 May 2010 10:45:00 +0000 784 | 785 | mintinstall (7.1.3) isadora; urgency=low 786 | 787 | * Starts faster 788 | * More responsive (transaction loop initiates earlier) 789 | 790 | -- Clement Lefebvre Sat, 08 May 2010 13:02:00 +0000 791 | 792 | mintinstall (7.1.2) isadora; urgency=low 793 | 794 | * Localization 795 | 796 | -- Clement Lefebvre Sat, 08 May 2010 09:47:00 +0000 797 | 798 | mintinstall (7.1.1) isadora; urgency=low 799 | 800 | * Localization 801 | 802 | -- Clement Lefebvre Thu, 06 May 2010 14:19:00 +0000 803 | 804 | mintinstall (7.1.0) isadora; urgency=low 805 | 806 | * Added Java and Skype to featured list 807 | 808 | -- Clement Lefebvre Thu, 06 May 2010 13:38:00 +0000 809 | 810 | mintinstall (7.0.9) isadora; urgency=low 811 | 812 | * Localization 813 | 814 | -- Clement Lefebvre Thu, 06 May 2010 12:39:00 +0000 815 | 816 | mintinstall (7.0.8) isadora; urgency=low 817 | 818 | * Localization 819 | 820 | -- Clement Lefebvre Wed, 05 May 2010 19:02:00 +0000 821 | 822 | mintinstall (7.0.7) isadora; urgency=low 823 | 824 | * Faster boot 825 | * Better looking 826 | * Load reviews before starting up 827 | 828 | -- Clement Lefebvre Sat, 01 May 2010 14:35:00 +0000 829 | 830 | mintinstall (7.0.6) isadora; urgency=low 831 | 832 | * Fixed typo 833 | 834 | -- Clement Lefebvre Wed, 28 Apr 2010 14:42:00 +0000 835 | 836 | mintinstall (7.0.5) isadora; urgency=low 837 | 838 | * Removed duplicate entry for calibre in viewers 839 | 840 | -- Clement Lefebvre Tue, 27 Apr 2010 11:13:00 +0000 841 | 842 | mintinstall (7.0.4) isadora; urgency=low 843 | 844 | * Updated categories 845 | 846 | -- Clement Lefebvre Tue, 27 Apr 2010 11:13:00 +0000 847 | 848 | mintinstall (7.0.3) isadora; urgency=low 849 | 850 | * Updated categories 851 | 852 | -- Clement Lefebvre Mon, 12 Apr 2010 14:38:00 +0000 853 | 854 | mintinstall (7.0.2) isadora; urgency=low 855 | 856 | * Replaced ttf-droid with ttf-freefont in dependencies 857 | * Added dependency on python-imaging 858 | 859 | -- Clement Lefebvre Mon, 12 Apr 2010 10:31:00 +0000 860 | 861 | mintinstall (7.0.1) isadora; urgency=low 862 | 863 | * Apps can now be reviewed from within the Software Manager 864 | 865 | -- Clement Lefebvre Mon, 5 Apr 2010 16:33:00 +0000 866 | 867 | mintinstall (7.0.0) isadora; urgency=low 868 | 869 | * Complete rewrite 870 | 871 | -- Clement Lefebvre Wed, 31 Mar 2010 16:36:00 +0000 872 | 873 | mintinstall (6.5.1) helena; urgency=low 874 | 875 | * Decompress uses both gzip and tar directly, so it works for tar and for tar.gz archives 876 | 877 | -- Clement Lefebvre Thu, 19 Nov 2009 18:33:00 +0000 878 | 879 | mintinstall (6.5.0) helena; urgency=low 880 | 881 | * mintInstall window, removed title and used "Upgrade" instead of "Install" in the text labels when suitable 882 | 883 | -- Clement Lefebvre Thu, 19 Nov 2009 16:18:00 +0000 884 | 885 | mintinstall (6.4.9) helena; urgency=low 886 | 887 | * Fixed missing i18n 888 | 889 | -- Clement Lefebvre Tue, 17 Nov 2009 12:27:00 +0000 890 | 891 | mintinstall (6.4.8) helena; urgency=low 892 | 893 | * Made window fully opaque 894 | 895 | -- Clement Lefebvre Sat, 14 Nov 2009 10:10:00 +0000 896 | 897 | mintinstall (6.4.7) helena; urgency=low 898 | 899 | * Modified translation framework 900 | 901 | -- Clement Lefebvre Tue, 3 Nov 2009 10:59:00 +0000 902 | 903 | mintinstall (6.4.6) helena; urgency=low 904 | 905 | * Changed path of release.id to use mintinstall-data instead of mint-info 906 | 907 | -- Clement Lefebvre Sun, 1 Nov 2009 14:26:00 +0000 908 | 909 | mintinstall (6.4.5) helena; urgency=low 910 | 911 | * Uses mint-common to launch browsers in user-mode 912 | 913 | -- Clement Lefebvre Fri, 30 Oct 2009 17:41:00 +0000 914 | 915 | mintinstall (6.4.4) helena; urgency=low 916 | 917 | * Not dependent on mintMenu anymore 918 | 919 | -- Clement Lefebvre Thu, 8 Oct 2009 14:27:00 +0000 920 | 921 | mintinstall (6.4.3) helena; urgency=low 922 | 923 | * Removed dependency on mintsystem (using mint-common) 924 | * Updated calls to newer apt lib 925 | 926 | -- Clement Lefebvre Wed, 7 Oct 2009 17:41:00 +0000 927 | 928 | mintinstall (6.4.2) helena; urgency=low 929 | 930 | * Fixed remove icon for color-blind people 931 | * Install/remove applications doesn't scroll the list anymore 932 | * User can now cancel changes individually 933 | 934 | -- Clement Lefebvre Mon, 28 Sep 2009 17:08:00 +0000 935 | 936 | mintinstall (6.4.1) helena; urgency=low 937 | 938 | * Changed status icons 939 | * Fixed scrolling issues 940 | 941 | -- Clement Lefebvre Fri, 25 Sep 2009 15:15:00 +0000 942 | 943 | mintinstall (6.4.0) helena; urgency=low 944 | 945 | * GUI improvements 946 | * Multiple installs 947 | * Filtering 948 | 949 | -- Clement Lefebvre Thu, 24 Sep 2009 15:28:00 +0000 950 | 951 | mintinstall (6.3.9) helena; urgency=low 952 | 953 | * Data moved to mintinstall-data 954 | 955 | -- Clement Lefebvre Wed, 29 Jul 2009 19:38:00 +0000 956 | 957 | mintinstall (6.3.8) helena; urgency=low 958 | 959 | * Blueprint implemented: https://blueprints.launchpad.net/linuxmint/+spec/generic-branding 960 | * Blueprint implemented: https://blueprints.launchpad.net/linuxmint/+spec/mintinstall-uninstall 961 | 962 | -- Clement Lefebvre Wed, 29 Jul 2009 19:38:00 +0000 963 | 964 | mintinstall (6.3.7) gloria; urgency=low 965 | 966 | * Bug fix: "Finished" in the progress bar of installing/upgrading is not internationalised. (https://bugs.launchpad.net/bugs/399298) 967 | * Bug fix: Lag when no connection to the Internet (https://bugs.launchpad.net/bugs/399277) 968 | 969 | -- Clement Lefebvre Thu, 16 Jul 2009 12:53:00 +0000 970 | 971 | mintinstall (6.3.6) gloria; urgency=low 972 | 973 | * Bug fix: No label under toolbar icons (https://bugs.launchpad.net/bugs/399705) 974 | 975 | -- Clement Lefebvre Thu, 16 Jul 2009 12:32:00 +0000 976 | 977 | mintinstall (6.3.5) gloria; urgency=low 978 | 979 | * Bug fix: Firefox now runs in user-mode 980 | 981 | -- Clement Lefebvre Sun, 12 Jul 2009 19:11:00 +0000 982 | 983 | mintinstall (6.3.4) gloria; urgency=low 984 | 985 | * Updated translations 986 | 987 | -- Clement Lefebvre Tue, 19 May 2009 18:40:00 +0000 988 | 989 | mintinstall (6.3.3) gloria; urgency=low 990 | 991 | * Updated meta-data 992 | 993 | -- Clement Lefebvre Mon, 18 May 2009 15:42:00 +0000 994 | 995 | mintinstall (6.3.2) gloria; urgency=low 996 | 997 | * Added translations 998 | 999 | -- Clement Lefebvre Sun, 17 May 2009 20:57:00 +0000 1000 | 1001 | mintinstall (6.3.1) gloria; urgency=low 1002 | 1003 | * Now downloads missing screenshots in a different thread, results in interface being more snappy 1004 | 1005 | -- Clement Lefebvre Thu, 14 May 2009 19:03:00 +0000 1006 | 1007 | mintinstall (6.3) gloria; urgency=low 1008 | 1009 | * Changed virtualbox to virtualbox-2.2 in featured_applications/list.txt 1010 | 1011 | -- Clement Lefebvre Sat, 2 May 2009 14:02:00 +0000 1012 | 1013 | mintinstall (6.2) gloria; urgency=low 1014 | 1015 | * Now uses /usr/bin/mint-which-launcher 1016 | 1017 | -- Clement Lefebvre Wed, 22 Apr 2009 17:08:00 +0000 1018 | 1019 | mintinstall (6.1) gloria; urgency=low 1020 | 1021 | * Changed virtualbox-2.1 to virtualbox in featured_applications/list.txt 1022 | 1023 | -- Clement Lefebvre Wed, 22 Apr 2009 16:21:00 +0000 1024 | 1025 | mintinstall (6.0) gloria; urgency=low 1026 | 1027 | * Only try once to download missing screenshot 1028 | 1029 | -- Clement Lefebvre Tue, 21 Apr 2009 17:00:00 +0000 1030 | 1031 | mintinstall (5.9) gloria; urgency=low 1032 | 1033 | * Made mintInstall a root application 1034 | * Now uses /usr/lib/linuxmint/mintInstall/data instead of ~/.linuxmint/mintInstall/ 1035 | * Comes pre-loaded with data 1036 | * Missing screenshots are automatically downloaded 1037 | 1038 | -- Clement Lefebvre Mon, 20 Apr 2009 23:09:00 +0000 1039 | 1040 | mintinstall (5.8) gloria; urgency=low 1041 | 1042 | * Fixed regression in 5.7 showing raw description instead of summary in featured applications 1043 | 1044 | -- Clement Lefebvre Mon, 20 Apr 2009 18:54:00 +0000 1045 | 1046 | mintinstall (5.7) gloria; urgency=low 1047 | 1048 | * GUI improvements, shows less info on main screen, more in "more info" screen 1049 | * Now shows package sizes and full descriptions 1050 | 1051 | -- Clement Lefebvre Mon, 20 Apr 2009 18:31:00 +0000 1052 | 1053 | mintinstall (5.6) gloria; urgency=low 1054 | 1055 | * Moved all references of /usr/lib/linuxmint/mintSystem/version to /etc/linuxmint/version (after this was moved from mintsystem to mint-info) 1056 | 1057 | -- Clement Lefebvre Tue, 14 Apr 2009 10:30:00 +0000 1058 | 1059 | mintinstall (5.5) gloria; urgency=low 1060 | 1061 | * About dialog now uses mint-apt-version 1062 | * Added featured applications 1063 | * Added /usr/bin/mint-synaptic-install 1064 | 1065 | -- Clement Lefebvre Mon, 13 Apr 2009 20:22:00 +0000 1066 | 1067 | mintinstall (5.4.3) gloria; urgency=low 1068 | 1069 | * About dialog now uses APT to know the version number 1070 | * Better looking clear and find buttons 1071 | 1072 | -- Clement Lefebvre Sat, 11 Apr 2009 18:41:00 +0000 1073 | 1074 | mintinstall (5.4.2) gloria; urgency=low 1075 | 1076 | * /usr/bin/mintinstall shortcut to /usr/bin/mintInstall and now opens frontend if no mint file is given 1077 | 1078 | -- Clement Lefebvre Sat, 11 Apr 2009 18:37:00 +0000 1079 | 1080 | mintinstall (5.4.1) gloria; urgency=low 1081 | 1082 | * Added mint-search-portal 1083 | 1084 | -- Clement Lefebvre Thu, 26 Mar 2009 17:39:00 +0000 1085 | 1086 | mintinstall (5.4.0) gloria; urgency=low 1087 | 1088 | * Error handling in mint-make-cmd 1089 | * Added mint-search-apt and mint-show-apt 1090 | 1091 | -- Clement Lefebvre Tue, 17 Mar 2009 10:42:00 +0000 1092 | 1093 | mintinstall (5.3.7) felicia; urgency=low 1094 | 1095 | * Use kdesudo instead of the deprecated kdesu in KDE. 1096 | 1097 | -- Clement Lefebvre Tue, 24 Feb 2009 18:49:00 +0000 1098 | 1099 | mintinstall (5.3.6) felicia; urgency=low 1100 | 1101 | * Doesn't download what's already there on the local machine. Refresh process (not the initial one) is now much faster. 1102 | 1103 | -- Clement Lefebvre Sun, 11 Jan 2009 17:33:00 +0000 1104 | 1105 | mintinstall (5.3.5) felicia; urgency=low 1106 | 1107 | * Added translations 1108 | * Replaced zenity with modal dialog for screenshot not loaded error 1109 | 1110 | -- Clement Lefebvre Fri, 5 Dec 2008 23:14:00 +0000 1111 | 1112 | mintinstall (5.3.4) felicia; urgency=low 1113 | 1114 | * Changed frontend size to fit in 800x576 1115 | 1116 | -- Clement Lefebvre Thu, 4 Dec 2008 19:55:00 +0000 1117 | 1118 | mintinstall (5.3.3) felicia; urgency=low 1119 | 1120 | * Replaced zenity with modal dialog for initial refresh message 1121 | 1122 | -- Clement Lefebvre Sun, 9 Nov 2008 12:26:00 +0000 1123 | 1124 | mintinstall (5.3.2) felicia; urgency=low 1125 | 1126 | * added version info in about dialog 1127 | * show a linkButton for items website in frontend 1128 | * fixed missing icon in search dialog 1129 | * Added nb, ca, ro, pt_PT, pt_BR, es, ko and sk translations 1130 | 1131 | -- Clement Lefebvre Mon, 27 Oct 2008 13:02:00 +0000 1132 | 1133 | mintinstall (5.3.1) elyssa; urgency=low 1134 | 1135 | * frontend now selects first application in the list by default 1136 | * Added DE and JA translations 1137 | 1138 | -- Clement Lefebvre Sat, 11 Oct 2008 18:20:00 +0000 1139 | 1140 | mintinstall (5.3) elyssa; urgency=low 1141 | 1142 | * Added patch from Christian Dannie Storgaard (cybolic) to show apt search results in a nice GTK list. 1143 | 1144 | -- Clement Lefebvre Thu, 9 Oct 2008 21:32:00 +0000 1145 | 1146 | mintinstall (5.2.1) elyssa; urgency=low 1147 | 1148 | * Fixes a bug in /usr/bin/mintInstall (now checks /etc/linuxmint/info) 1149 | 1150 | -- Clement Lefebvre Tue, 2 Sep 2008 18:54:00 +0000 1151 | 1152 | mintinstall (5.2) elyssa; urgency=low 1153 | 1154 | * Uses kdesu instead of gksu under KDE 1155 | * Shows a nicer password dialog for kdesu/gksu 1156 | * Known categories are now localized 1157 | 1158 | -- Clement Lefebvre Mon, 1 Sep 2008 18:54:00 +0000 1159 | 1160 | mintinstall (5.1) elyssa; urgency=low 1161 | 1162 | * Hides email addresses in reviews 1163 | * Alternate colours in table 1164 | * Information message instead of error message at startup 1165 | * Progressbar while refreshing and loading 1166 | * Versions window and button 1167 | 1168 | -- Clement Lefebvre Sun, 31 Aug 2008 18:43:00 +0000 1169 | 1170 | mintinstall (5.0) elyssa; urgency=low 1171 | 1172 | * New frontend for browsing portals from the desktop 1173 | * Multi-portals support (portals.list) 1174 | * Relies in mintSystem for all common data/resources 1175 | 1176 | -- Clement Lefebvre Tue, 26 Aug 2008 22:58:00 +0000 1177 | 1178 | mintinstall (4.0) elyssa; urgency=low 1179 | 1180 | * Auto-detects which is the best repository to use, doesn't ask the user anymore 1181 | * Doesn't show confirmation dialog anymore 1182 | * Frontend: says "no results" when apt search returns nothing 1183 | * Frontend: textfield value is kept the same between different tabs 1184 | * Translations: new cs, new ca, updated bg 1185 | 1186 | -- Clement Lefebvre Fri, 11 Jul 2008 18:20:00 +0000 1187 | 1188 | mintinstall (3.9) elyssa; urgency=low 1189 | 1190 | * Uses default browser, not just firefox 1191 | * Uses aptitude for search and show now 1192 | 1193 | -- Clement Lefebvre Thu, 22 May 2008 15:59:00 +0000 1194 | 1195 | mintinstall (3.8) elyssa; urgency=low 1196 | 1197 | * Make postinst statements conditional (cause they don't necessarily apply in KDE) 1198 | 1199 | -- Clement Lefebvre Tue, 29 Apr 2008 17:41:00 +0000 1200 | 1201 | mintinstall (3.7) elyssa; urgency=low 1202 | 1203 | * Mint icon in confirmation dialog 1204 | * Now uses local repositories for mint files without repos (faster) 1205 | * new translations: ga pt_BR tr pl de da it sk 1206 | * corrections on nl 1207 | 1208 | -- Clement Lefebvre Sat, 29 Mar 2008 16:23:00 +0000 1209 | 1210 | mintinstall (3.6) elyssa; urgency=low 1211 | 1212 | * New URL for LM repository 1213 | 1214 | -- Clement Lefebvre Fri, 28 Mar 2008 12:45:00 +0000 1215 | 1216 | mintinstall (3.5) elyssa; urgency=low 1217 | 1218 | * New translations: bg el es nl pt ru sv uk 1219 | * Multi words search 1220 | * lag fix for mint search and button 1221 | 1222 | -- Clement Lefebvre Mon, 18 Feb 2008 18:26:00 +0000 1223 | 1224 | mintinstall (3.4) daryna; urgency=low 1225 | 1226 | * HIG work done 1227 | * Added support for GetDeb 1228 | * Added support for APT 1229 | * Better translation system 1230 | * Now relies on mintSystem for sources.list and release.id 1231 | 1232 | -- Clement Lefebvre Wed, 30 Jan 2008 23:11:00 +0000 1233 | 1234 | mintinstall (3.3) daryna; urgency=low 1235 | 1236 | * removed Polish translation 1237 | 1238 | -- clem Sat, 24 Nov 2007 01:04:00 +0000 1239 | 1240 | mintinstall (3.2) daryna; urgency=low 1241 | 1242 | * new Polish translation 1243 | 1244 | -- clem Sat, 24 Nov 2007 00:30:00 +0000 1245 | 1246 | mintinstall (3.1) daryna; urgency=low 1247 | 1248 | * new sources.list 1249 | 1250 | -- clem Wed, 14 Nov 2007 02:44:00 +0000 1251 | 1252 | mintinstall (3.0) daryna; urgency=low 1253 | 1254 | * new German translation 1255 | 1256 | -- clem Mon, 12 Nov 2007 22:19:00 +0000 1257 | 1258 | mintinstall (2.9) daryna; urgency=low 1259 | 1260 | * small bug in URL 1261 | 1262 | -- clem Wed, 24 Oct 2007 01:23:00 +0000 1263 | 1264 | mintinstall (2.8) daryna; urgency=low 1265 | 1266 | * gutsy sources.list 1267 | * URL to software portal now take release number in consideration 1268 | 1269 | -- clem Wed, 24 Oct 2007 00:09:00 +0000 1270 | 1271 | mintinstall (2.7) daryna; urgency=low 1272 | 1273 | * new welcome GUI 1274 | * presence in the menu 1275 | * icon for mimetype 1276 | * better repository restoration 1277 | * summary window centered 1278 | 1279 | -- clem Wed, 17 Oct 2007 23:47:00 +0000 1280 | 1281 | mintinstall (2.6) daryna; urgency=low 1282 | 1283 | * now uses synaptic 1284 | * i18n 1285 | 1286 | -- clem Tue, 16 Oct 2007 20:44:00 +0000 1287 | 1288 | mintinstall (2.5) celena; urgency=low 1289 | 1290 | * added celena in the repos 1291 | 1292 | -- clem Sun, 9 Sep 2007 22:51:00 +0000 1293 | 1294 | mintinstall (2.4) cassandra; urgency=low 1295 | 1296 | * No need for icons in mint-make 1297 | * Version info removed 1298 | 1299 | -- clem Fri, 29 Jun 2007 14:24:00 +0000 1300 | 1301 | mintinstall (2.3) cassandra; urgency=low 1302 | 1303 | * Crashed when the package wasn't in the default repos. Fixed. 1304 | 1305 | -- clem Fri, 22 Jun 2007 13:02:00 +0000 1306 | 1307 | mintinstall (2.2) cassandra; urgency=low 1308 | 1309 | * Quick fix. 1310 | 1311 | -- clem Mon, 11 Jun 2007 00:07:00 +0000 1312 | 1313 | mintinstall (2.1) cassandra; urgency=low 1314 | 1315 | * Can now upgrade packages 1316 | * Mint files can now execute commands and know the username and home directory 1317 | * improved performance on package status detection 1318 | * improved package status detection 1319 | * uses the new medibuntu repo 1320 | 1321 | -- clem Sun, 10 Jun 2007 23:23:00 +0000 1322 | 1323 | mintinstall (2.0) cassandra; urgency=low 1324 | 1325 | * Fix in /usr/bin/mintInstall --> better Firefox integration 1326 | 1327 | -- clem Thu, 7 Jun 2007 23:02:00 +0000 1328 | 1329 | mintinstall (1.9) cassandra; urgency=low 1330 | 1331 | * Added mint-make, mint-decompress and mint-compress 1332 | 1333 | -- clem Wed, 16 May 2007 23:48:27 +0000 1334 | 1335 | mintinstall (1.8) cassandra; urgency=low 1336 | 1337 | * Window is minizable 1338 | * Progressbar works better 1339 | * Backup and restore shown to user 1340 | 1341 | -- clem Tue, 15 May 2007 16:36:41 +0000 1342 | 1343 | mintinstall (1.7) cassandra; urgency=low 1344 | 1345 | * Better backup of the sources.list 1346 | * Can now restore sources.list if something goes wrong. 1347 | * Progressbar fix. 1348 | 1349 | -- clem Tue, 15 May 2007 13:58:36 +0000 1350 | 1351 | mintinstall (1.6) cassandra; urgency=low 1352 | 1353 | * mintInstall now deletes locks at startup 1354 | * copys sources.list to backup instead of moving it 1355 | 1356 | -- clem Tue, 8 May 2007 12:20:00 +0000 1357 | 1358 | mintinstall (1.5) cassandra; urgency=low 1359 | 1360 | * Fixed package detection 1361 | 1362 | -- clem Mon, 7 May 2007 23:56:00 +0000 1363 | 1364 | mintinstall (1.4) cassandra; urgency=low 1365 | 1366 | * Merged all windows into one 1367 | * Redesigned the GUI 1368 | * Now shows repositories and packages 1369 | * Informs the user on the success of the overall installation 1370 | 1371 | -- clem Sat, 5 May 2007 15:22:11 +0000 1372 | 1373 | mintinstall (1.3) cassandra; urgency=low 1374 | 1375 | * Fixed bug in KEY Command 1376 | * Repositories now add to sources.list instead of replacing it. 1377 | 1378 | -- clem Thu, 3 May 2007 14:55:27 +0000 1379 | 1380 | mintinstall (1.2) cassandra; urgency=low 1381 | 1382 | * Fixed a bug (didn't update after adding a source) 1383 | 1384 | -- clem Thu, 3 May 2007 14:22:48 +0000 1385 | 1386 | mintinstall (1.1) cassandra; urgency=low 1387 | 1388 | * Added the KEY command 1389 | 1390 | -- clem Thu, 3 May 2007 13:44:54 +0000 1391 | 1392 | mintinstall (1.0) cassandra; urgency=low 1393 | 1394 | * Initial release 1395 | 1396 | -- clem Thu, 3 May 2007 12:59:21 +0000 1397 | 1398 | -------------------------------------------------------------------------------- /usr/share/linuxmint/mintinstall/mintinstall.glade: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | active_tasks_spinner 7 | True 8 | False 9 | 10 | 11 | True 12 | False 13 | gtk-help 14 | 1 15 | 1 16 | 17 | 18 | True 19 | False 20 | gtk-find 21 | 1 22 | 23 | 24 | True 25 | False 26 | gtk-add 27 | 1 28 | 29 | 30 | True 31 | False 32 | software-properties 33 | 34 | 35 | True 36 | False 37 | go-previous-symbolic 38 | 39 | 40 | True 41 | False 42 | open-menu-symbolic 43 | 44 | 45 | True 46 | False 47 | category-search-symbolic 48 | 49 | 50 | False 51 | center 52 | 800 53 | 600 54 | center 55 | 56 | 57 | 58 | 59 | 60 | True 61 | False 62 | vertical 63 | 64 | 65 | True 66 | False 67 | 4 68 | 69 | 70 | True 71 | False 72 | 73 | 74 | True 75 | False 76 | 6 77 | 78 | 79 | True 80 | True 81 | True 82 | image5 83 | 84 | 85 | False 86 | True 87 | 0 88 | 89 | 90 | 91 | 92 | True 93 | True 94 | True 95 | active_tasks_spinner 96 | True 97 | 98 | 99 | False 100 | True 101 | 1 102 | 103 | 104 | 105 | 106 | True 107 | True 108 | True 109 | image6 110 | 111 | 112 | False 113 | True 114 | end 115 | 2 116 | 117 | 118 | 119 | 120 | True 121 | False 122 | 123 | 124 | True 125 | True 126 | edit-find-symbolic 127 | False 128 | False 129 | 130 | 131 | False 132 | True 133 | 0 134 | 135 | 136 | 137 | 138 | True 139 | True 140 | True 141 | Limit search to current listing 142 | subsearch_image 143 | 144 | 145 | False 146 | True 147 | 1 148 | 149 | 150 | 153 | 154 | 155 | False 156 | True 157 | end 158 | 3 159 | 160 | 161 | 162 | 163 | 164 | 165 | True 166 | True 167 | 168 | 169 | 172 | 173 | 174 | False 175 | True 176 | 0 177 | 178 | 179 | 180 | 181 | True 182 | False 183 | crossfade 184 | 185 | 186 | True 187 | False 188 | center 189 | vertical 190 | 10 191 | 192 | 193 | True 194 | False 195 | <big><b>Generating cache, one moment</b></big> 196 | True 197 | 198 | 199 | False 200 | True 201 | 0 202 | 203 | 204 | 205 | 206 | 50 207 | True 208 | False 209 | True 210 | 211 | 212 | False 213 | True 214 | 1 215 | 216 | 217 | 218 | 219 | loading 220 | 221 | 222 | 223 | 224 | True 225 | False 226 | 12 227 | vertical 228 | 6 229 | 230 | 231 | 160 232 | True 233 | False 234 | vertical 235 | 236 | 237 | 238 | 239 | 240 | False 241 | True 242 | 1 243 | 244 | 245 | 246 | 247 | True 248 | False 249 | 6 250 | Editors' Picks 251 | 0 252 | 253 | 254 | 255 | 256 | 257 | 258 | False 259 | True 260 | 2 261 | 262 | 263 | 264 | 265 | True 266 | False 267 | vertical 268 | 269 | 270 | 271 | 272 | 273 | False 274 | True 275 | 3 276 | 277 | 278 | 279 | 280 | True 281 | False 282 | 6 283 | Categories 284 | 0 285 | 286 | 287 | 288 | 289 | 290 | 291 | False 292 | True 293 | 4 294 | 295 | 296 | 297 | 298 | True 299 | False 300 | vertical 301 | 302 | 303 | 304 | 305 | 306 | False 307 | True 308 | 5 309 | 310 | 311 | 312 | 313 | landing 314 | 1 315 | 316 | 317 | 318 | 319 | True 320 | False 321 | top 322 | 323 | 324 | True 325 | False 326 | 327 | 328 | True 329 | False 330 | False 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | False 339 | True 340 | 0 341 | 342 | 343 | 344 | 345 | True 346 | False 347 | vertical 348 | 349 | 350 | True 351 | False 352 | 6 353 | 6 354 | 6 355 | 12 356 | 0 357 | 0 358 | 359 | 360 | 361 | 362 | 363 | 364 | False 365 | True 366 | 0 367 | 368 | 369 | 370 | 371 | True 372 | False 373 | 374 | 375 | False 376 | True 377 | 1 378 | 379 | 380 | 381 | 382 | True 383 | False 384 | crossfade 385 | 386 | 387 | True 388 | True 389 | 390 | 391 | True 392 | False 393 | 394 | 395 | True 396 | False 397 | vertical 398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | results 411 | page0 412 | 413 | 414 | 415 | 416 | True 417 | False 418 | center 419 | vertical 420 | 421 | 422 | no_packages_found_label 423 | True 424 | False 425 | <big><b>No matching packages found</b></big> 426 | True 427 | center 428 | 429 | 430 | True 431 | True 432 | 10 433 | 0 434 | 435 | 436 | 437 | 438 | Refresh 439 | True 440 | True 441 | True 442 | center 443 | 444 | 445 | False 446 | True 447 | 1 448 | 449 | 450 | 451 | 452 | no-results 453 | page0 454 | 1 455 | 456 | 457 | 458 | 459 | True 460 | True 461 | 2 462 | 463 | 464 | 465 | 466 | True 467 | True 468 | 1 469 | 470 | 471 | 472 | 473 | list 474 | 2 475 | 476 | 477 | 478 | 479 | True 480 | False 481 | vertical 482 | 483 | 484 | True 485 | False 486 | 6 487 | 6 488 | 12 489 | 490 | 491 | True 492 | False 493 | 6 494 | vertical 495 | 6 496 | 497 | 498 | True 499 | False 500 | gtk-missing-image 501 | 502 | 503 | False 504 | True 505 | 0 506 | 507 | 508 | 509 | 510 | 511 | 512 | 513 | True 514 | False 515 | 516 | 517 | 518 | 519 | 520 | 521 | 522 | 523 | 524 | 525 | 526 | False 527 | True 528 | 2 529 | 530 | 531 | 532 | 533 | False 534 | True 535 | 0 536 | 537 | 538 | 539 | 540 | True 541 | False 542 | vertical 543 | 544 | 545 | True 546 | False 547 | True 548 | 0 549 | 550 | 551 | 552 | 553 | 554 | 555 | False 556 | True 557 | 0 558 | 559 | 560 | 561 | 562 | True 563 | False 564 | True 565 | 0 566 | 0 567 | 568 | 569 | False 570 | True 571 | 1 572 | 573 | 574 | 575 | 576 | True 577 | False 578 | 6 579 | 580 | 581 | True 582 | False 583 | 584 | 585 | 586 | 587 | 588 | False 589 | True 590 | 0 591 | 592 | 593 | 594 | 595 | True 596 | False 597 | 598 | 599 | 600 | 601 | 602 | 603 | False 604 | False 605 | 1 606 | 607 | 608 | 609 | 610 | 611 | 612 | 613 | False 614 | True 615 | 2 616 | 617 | 618 | 619 | 620 | True 621 | False 622 | 623 | 624 | True 625 | False 626 | 1 627 | 628 | 629 | False 630 | True 631 | 0 632 | 633 | 634 | 635 | 636 | 637 | 638 | 639 | False 640 | True 641 | 3 642 | 643 | 644 | 645 | 646 | True 647 | True 648 | 1 649 | 650 | 651 | 652 | 653 | True 654 | False 655 | center 656 | False 657 | False 658 | 659 | 660 | True 661 | False 662 | 6 663 | 664 | 665 | Launch 666 | True 667 | True 668 | True 669 | center 670 | False 671 | 674 | 675 | 676 | False 677 | True 678 | 0 679 | 680 | 681 | 682 | 683 | True 684 | True 685 | True 686 | center 687 | False 688 | 689 | 690 | True 691 | True 692 | 1 693 | 694 | 695 | 696 | 697 | 698 | 699 | 700 | 701 | 702 | True 703 | False 704 | center 705 | vertical 706 | 4 707 | 708 | 709 | True 710 | False 711 | center 712 | 1 713 | 714 | 715 | False 716 | True 717 | end 718 | 0 719 | 720 | 721 | 722 | 723 | 1 724 | 725 | 726 | 727 | 728 | 729 | 730 | 731 | True 732 | False 733 | vertical 734 | 735 | 736 | True 737 | False 738 | Please be patient. This can take some time... 739 | True 740 | 741 | 742 | True 743 | True 744 | 1 745 | 746 | 747 | 748 | 749 | 2 750 | 751 | 752 | 753 | 754 | 755 | 756 | 757 | False 758 | False 759 | 6 760 | 2 761 | 762 | 763 | 764 | 765 | False 766 | True 767 | 0 768 | 769 | 770 | 771 | 772 | True 773 | False 774 | 775 | 776 | False 777 | True 778 | 1 779 | 780 | 781 | 782 | 783 | True 784 | True 785 | never 786 | 787 | 788 | True 789 | False 790 | 791 | 792 | True 793 | False 794 | 12 795 | vertical 796 | 12 797 | 798 | 799 | 800 | 801 | 802 | True 803 | False 804 | 6 805 | 806 | 807 | 808 | 809 | 810 | True 811 | False 812 | vertical 813 | 814 | 815 | 816 | 817 | 818 | True 819 | False 820 | 6 821 | 822 | 823 | 824 | 825 | 826 | 827 | 828 | 829 | False 830 | True 831 | 1 832 | 833 | 834 | 835 | 836 | False 837 | True 838 | 1 839 | 840 | 841 | 842 | 843 | False 844 | True 845 | 1 846 | 847 | 848 | 849 | 850 | True 851 | False 852 | vertical 853 | 6 854 | 855 | 856 | True 857 | False 858 | True 859 | 0 860 | 861 | 862 | False 863 | True 864 | 0 865 | 866 | 867 | 868 | 869 | True 870 | False 871 | 0 872 | 873 | 874 | False 875 | True 876 | 1 877 | 878 | 879 | 880 | 881 | False 882 | True 883 | 2 884 | 885 | 886 | 887 | 888 | True 889 | False 890 | 12 891 | 892 | 893 | True 894 | False 895 | gtk-missing-image 896 | 897 | 898 | False 899 | True 900 | 1 901 | 902 | 903 | 904 | 905 | True 906 | False 907 | vertical 908 | 12 909 | 910 | 911 | 912 | 913 | 914 | False 915 | True 916 | 2 917 | 918 | 919 | 920 | 921 | False 922 | True 923 | 3 924 | 925 | 926 | 927 | 928 | True 929 | False 930 | Details 931 | 0 932 | 933 | 934 | 935 | 936 | 937 | 938 | False 939 | True 940 | 4 941 | 942 | 943 | 944 | 945 | True 946 | False 947 | start 948 | 12 949 | 950 | 951 | True 952 | False 953 | Size 954 | 0 955 | 958 | 959 | 960 | 0 961 | 2 962 | 963 | 964 | 965 | 966 | True 967 | False 968 | Version 969 | 0 970 | 973 | 974 | 975 | 0 976 | 1 977 | 978 | 979 | 980 | 981 | True 982 | False 983 | 0 984 | 985 | 986 | 1 987 | 2 988 | 989 | 990 | 991 | 992 | True 993 | False 994 | 0 995 | 996 | 997 | 1 998 | 1 999 | 1000 | 1001 | 1002 | 1003 | True 1004 | False 1005 | 0 1006 | 1007 | 1008 | 1 1009 | 0 1010 | 1011 | 1012 | 1013 | 1014 | True 1015 | False 1016 | Package 1017 | 0 1018 | 1021 | 1022 | 1023 | 0 1024 | 0 1025 | 1026 | 1027 | 1028 | 1029 | True 1030 | False 1031 | Branch 1032 | 0 1033 | 1036 | 1037 | 1038 | 0 1039 | 6 1040 | 1041 | 1042 | 1043 | 1044 | True 1045 | False 1046 | Architecture 1047 | 0 1048 | 1051 | 1052 | 1053 | 0 1054 | 5 1055 | 1056 | 1057 | 1058 | 1059 | True 1060 | False 1061 | Remote 1062 | 0 1063 | 1066 | 1067 | 1068 | 0 1069 | 4 1070 | 1071 | 1072 | 1073 | 1074 | True 1075 | False 1076 | 0 1077 | 1078 | 1079 | 1 1080 | 6 1081 | 1082 | 1083 | 1084 | 1085 | True 1086 | False 1087 | 0 1088 | 1089 | 1090 | 1 1091 | 5 1092 | 1093 | 1094 | 1095 | 1096 | True 1097 | False 1098 | 0 1099 | 1100 | 1101 | 1 1102 | 4 1103 | 1104 | 1105 | 1106 | 1107 | 1108 | 1109 | 1110 | 1111 | 1112 | 1113 | False 1114 | True 1115 | 5 1116 | 1117 | 1118 | 1119 | 1120 | True 1121 | False 1122 | Reviews 1123 | 0 1124 | 1125 | 1126 | 1127 | 1128 | 1129 | 1130 | False 1131 | True 1132 | 6 1133 | 1134 | 1135 | 1136 | 1137 | True 1138 | False 1139 | 0 1140 | 0 1141 | in 1142 | 1143 | 1144 | True 1145 | False 1146 | none 1147 | 1148 | 1149 | 1150 | 1151 | 1152 | 1153 | 1154 | False 1155 | True 1156 | 7 1157 | 1158 | 1159 | 1160 | 1161 | True 1162 | False 1163 | True 1164 | 0 1165 | 1166 | 1167 | False 1168 | True 1169 | 8 1170 | 1171 | 1172 | 1173 | 1174 | 1175 | 1176 | 1177 | 1178 | True 1179 | True 1180 | 2 1181 | 1182 | 1183 | 1184 | 1185 | details 1186 | 3 1187 | 1188 | 1189 | 1190 | 1191 | True 1192 | False 1193 | center 1194 | vertical 1195 | 10 1196 | 1197 | 1198 | True 1199 | False 1200 | Searching software repositories, one moment 1201 | 1202 | 1203 | 1204 | 1205 | 1206 | 1207 | False 1208 | True 1209 | 0 1210 | 1211 | 1212 | 1213 | 1214 | 50 1215 | True 1216 | False 1217 | True 1218 | 1219 | 1220 | False 1221 | True 1222 | 1 1223 | 1224 | 1225 | 1226 | 1227 | searching 1228 | 4 1229 | 1230 | 1231 | 1232 | 1233 | True 1234 | True 1235 | 2 1236 | 1237 | 1238 | 1239 | 1240 | 1241 | 1242 | --------------------------------------------------------------------------------