Skip to content
This repository was archived by the owner on Feb 3, 2019. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/Console/AppConsole.vala
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ public class AppConsole : GLib.Object {
msg += " --purge-old-kernels " + _("Remove installed kernels older than running kernel") + "\n";
msg += " --download <name> " + _("Download packages for specified kernel") + "\n";
msg += " --clean-cache " + _("Remove files from application cache") + "\n";
msg += " --show-unstable " + _("Show unstable and RC releases") + "\n";
msg += "\n";
msg += _("Options") + ":\n";
msg += "\n";
Expand Down Expand Up @@ -171,6 +172,10 @@ public class AppConsole : GLib.Object {
cmd = args[k].down();
break;

case "--show-unstable":
LinuxKernel.hide_unstable = false;
break;

case "--download":
case "--install":
case "--remove":
Expand Down