diff -Nru io.elementary.installer-1.0+r189+pkg6~daily~ubuntu17.10.1/data/application.css io.elementary.installer-1.0+r190+pkg6~daily~ubuntu17.10.1/data/application.css --- io.elementary.installer-1.0+r189+pkg6~daily~ubuntu17.10.1/data/application.css 1970-01-01 00:00:00.000000000 +0000 +++ io.elementary.installer-1.0+r190+pkg6~daily~ubuntu17.10.1/data/application.css 2017-10-18 00:16:39.000000000 +0000 @@ -0,0 +1,26 @@ +/*- + * Copyright (c) 2017 elementary LLC. (https://elementary.io) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +textview.terminal { + background-color: #252e32; + color: #94a3a5; +} + +textview.terminal selection { + background-color: #93a1a1; + color: #252e32; +} diff -Nru io.elementary.installer-1.0+r189+pkg6~daily~ubuntu17.10.1/data/io.elementary.installer.gresource.xml io.elementary.installer-1.0+r190+pkg6~daily~ubuntu17.10.1/data/io.elementary.installer.gresource.xml --- io.elementary.installer-1.0+r189+pkg6~daily~ubuntu17.10.1/data/io.elementary.installer.gresource.xml 1970-01-01 00:00:00.000000000 +0000 +++ io.elementary.installer-1.0+r190+pkg6~daily~ubuntu17.10.1/data/io.elementary.installer.gresource.xml 2017-10-18 00:16:39.000000000 +0000 @@ -0,0 +1,6 @@ + + + + application.css + + diff -Nru io.elementary.installer-1.0+r189+pkg6~daily~ubuntu17.10.1/debian/bzr-builder.manifest io.elementary.installer-1.0+r190+pkg6~daily~ubuntu17.10.1/debian/bzr-builder.manifest --- io.elementary.installer-1.0+r189+pkg6~daily~ubuntu17.10.1/debian/bzr-builder.manifest 2017-10-17 00:16:37.000000000 +0000 +++ io.elementary.installer-1.0+r190+pkg6~daily~ubuntu17.10.1/debian/bzr-builder.manifest 2017-10-18 00:16:41.000000000 +0000 @@ -1,3 +1,3 @@ -# bzr-builder format 0.3 deb-version {debupstream}+r189+pkg6~daily -lp:~elementary-apps/elementaryos/installer revid:git-v1:543a8f4f021f792cd837b4947de00df2ff9d1099 +# bzr-builder format 0.3 deb-version {debupstream}+r190+pkg6~daily +lp:~elementary-apps/elementaryos/installer revid:git-v1:98791e82ac7e87ad865d7596bd472c4f288e83ad nest-part packaging lp:~elementary-os/elementaryos/installer-deb-packaging debian debian revid:cody@elementary.io-20171008002335-ue75600row31fip8 diff -Nru io.elementary.installer-1.0+r189+pkg6~daily~ubuntu17.10.1/debian/changelog io.elementary.installer-1.0+r190+pkg6~daily~ubuntu17.10.1/debian/changelog --- io.elementary.installer-1.0+r189+pkg6~daily~ubuntu17.10.1/debian/changelog 2017-10-17 00:16:37.000000000 +0000 +++ io.elementary.installer-1.0+r190+pkg6~daily~ubuntu17.10.1/debian/changelog 2017-10-18 00:16:41.000000000 +0000 @@ -1,8 +1,8 @@ -io.elementary.installer (1.0+r189+pkg6~daily~ubuntu17.10.1) artful; urgency=low +io.elementary.installer (1.0+r190+pkg6~daily~ubuntu17.10.1) artful; urgency=low * Auto build. - -- Launchpad Package Builder Tue, 17 Oct 2017 00:16:37 +0000 + -- Launchpad Package Builder Wed, 18 Oct 2017 00:16:41 +0000 io.elementary.installer (1.0) xenial; urgency=medium diff -Nru io.elementary.installer-1.0+r189+pkg6~daily~ubuntu17.10.1/meson.build io.elementary.installer-1.0+r190+pkg6~daily~ubuntu17.10.1/meson.build --- io.elementary.installer-1.0+r189+pkg6~daily~ubuntu17.10.1/meson.build 2017-10-17 00:16:35.000000000 +0000 +++ io.elementary.installer-1.0+r190+pkg6~daily~ubuntu17.10.1/meson.build 2017-10-18 00:16:39.000000000 +0000 @@ -29,6 +29,12 @@ gnome_keyboard_ui_dep ] +asresources = gnome.compile_resources( + 'as-resources', 'data/' + meson.project_name() + '.gresource.xml', + source_dir: 'data', + c_name: 'as' +) + subdir('po') subdir('src') subdir('data') diff -Nru io.elementary.installer-1.0+r189+pkg6~daily~ubuntu17.10.1/src/Application.vala io.elementary.installer-1.0+r190+pkg6~daily~ubuntu17.10.1/src/Application.vala --- io.elementary.installer-1.0+r189+pkg6~daily~ubuntu17.10.1/src/Application.vala 2017-10-17 00:16:35.000000000 +0000 +++ io.elementary.installer-1.0+r190+pkg6~daily~ubuntu17.10.1/src/Application.vala 2017-10-18 00:16:39.000000000 +0000 @@ -29,6 +29,10 @@ var window = new MainWindow (); window.show_all (); this.add_window (window); + + var css_provider = new Gtk.CssProvider (); + css_provider.load_from_resource ("io/elementary/installer/application.css"); + Gtk.StyleContext.add_provider_for_screen (Gdk.Screen.get_default (), css_provider, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION); } } diff -Nru io.elementary.installer-1.0+r189+pkg6~daily~ubuntu17.10.1/src/meson.build io.elementary.installer-1.0+r190+pkg6~daily~ubuntu17.10.1/src/meson.build --- io.elementary.installer-1.0+r189+pkg6~daily~ubuntu17.10.1/src/meson.build 2017-10-17 00:16:35.000000000 +0000 +++ io.elementary.installer-1.0+r190+pkg6~daily~ubuntu17.10.1/src/meson.build 2017-10-18 00:16:39.000000000 +0000 @@ -39,5 +39,6 @@ ) executable(meson.project_name(), vala_files, config_file, + asresources, dependencies : dependencies, install: true) diff -Nru io.elementary.installer-1.0+r189+pkg6~daily~ubuntu17.10.1/src/Views/ProgressView.vala io.elementary.installer-1.0+r190+pkg6~daily~ubuntu17.10.1/src/Views/ProgressView.vala --- io.elementary.installer-1.0+r189+pkg6~daily~ubuntu17.10.1/src/Views/ProgressView.vala 2017-10-17 00:16:35.000000000 +0000 +++ io.elementary.installer-1.0+r190+pkg6~daily~ubuntu17.10.1/src/Views/ProgressView.vala 2017-10-18 00:16:39.000000000 +0000 @@ -32,6 +32,7 @@ unowned LogHelper log_helper = LogHelper.get_default (); var terminal_view = new Gtk.TextView.with_buffer (log_helper.buffer); + terminal_view.bottom_margin = terminal_view.top_margin = terminal_view.left_margin = terminal_view.right_margin = 12; terminal_view.editable = false; terminal_view.cursor_visible = true; terminal_view.monospace = true;