Skip to content
This repository has been archived by the owner on Jul 21, 2019. It is now read-only.

Commit

Permalink
v18.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
teejee2008 committed May 12, 2018
1 parent bb89765 commit c3af683
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
19 changes: 19 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
aptik-gtk (18.5.2) xenial; urgency=medium

* Added options for selecting UI layout - simple, advanced, and expert

* User will be prompted for authorization once on startup

* Exit application if terminal is closed or auth prompt is dismissed

* Show status animation for some sections instead of switching to terminal window

* Added section for Files

* Added section for Scripts

* UI improvements

-- Tony George <[email protected]> Sat, 12 May 2018 10:00:00 +0530


aptik-gtk (18.5.1) xenial; urgency=medium

* Copy deb files to backup location when drag-dropped on window
Expand Down
6 changes: 3 additions & 3 deletions src/Gtk/TermBox.vala
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ public class TermBox : Gtk.Box {
var scrolled = new Gtk.ScrolledWindow(null, null);
scrolled.set_shadow_type(ShadowType.ETCHED_IN);
scrolled.expand = true;
scrolled.hscrollbar_policy = PolicyType.ALWAYS;
scrolled.vscrollbar_policy = PolicyType.ALWAYS;
scrolled.hscrollbar_policy = PolicyType.AUTOMATIC;
scrolled.vscrollbar_policy = PolicyType.AUTOMATIC;
this.add(scrolled);

//terminal
Expand All @@ -91,7 +91,7 @@ public class TermBox : Gtk.Box {
term.allow_bold = false;

term.scroll_on_keystroke = true;
term.scroll_on_output = false;
term.scroll_on_output = true;
term.scrollback_lines = 100000;

var fontdesc = Pango.FontDescription.from_string("liberation mono,droid sans mono,ubuntu mono,monospace regular 10");
Expand Down

0 comments on commit c3af683

Please sign in to comment.