Change logs for oxide-qt source package in Xenial

  • oxide-qt (1.21.5-0ubuntu0.16.04.1) xenial-security; urgency=medium
    
      * Update to v1.21.5 (see USN-3236-1)
        - Bump Chromium rev to 57.0.2987.110
        - Build everything with the correct symbol visibility (-fvisibility=hidden)
        - Revert "Decide focus state of webview based on activeFocusItem check of
          window", as it caused a regression in popup menu handling (LP: #1649577)
        - Unbreak build for older CMake versions
        - Unbreak ENABLE_PLUGINS=0 build
        - Fix LP: #1654363 - Fails to build with vivid gcc
        - Fix LP: #1654512 - Unbreak component build
        - Fix LP: #1649577 - Decide the webview focus state from ItemChanged event
          not the focusIn/Out events
        - Fix LP: #1637194 - Add <select> popup menu implementation to UbuntuWebView
        - Fix LP: #1656303 - Test hang at the start of tst_focus.qml
        - Fix LP: #1649861 - Session save/restore across oxide versions
        - Test that we don't leak context menus or popup menus when a webview
          closes
        - tst_WebViewPopupMenu.qml should verify that the menu is visible
        - Fix CMake error on cross-compilation after installing qtsystems5-dev
        - Make WebContextMenu and WebPopupMenu ownership more obvious
        - Fix LP: #1647799 - Don't run ubuntu-api and ubuntu-ui test sequences
          when built without ENABLE_UITK_WEBVIEW
        - Fix LP: #1568296, LP: #1656905 - Change the behaviour of JS dialogs.
          + Alert dialogs requested from background webviews are no longer
            displayed immediately, but are delayed until the webview is brought to
            the foreground. In this case, window.alert() returns and script
            execution continues immediately.
          + Confirm and prompt dialogs from background webviews are suppressed.
          + Dialogs are automatically dismissed if another webview is brought to
            the foreground.
          + Before Unload dialogs will only be displayed if they are associated
            with a navigation that is application initiated or triggered from a
            user gesture. Otherwise, the navigation will proceed without a prompt.
        - Remove the openerName parameter from WebContextMenuDesktop.qml
        - Fix a case where the JavaScriptDialog implementation could leak
        - Fix LP: #1637195 - Add JS dialog implementation to UbuntuWebView
        - Emit warnings when trying to provide dialog components with UbuntuWebView
        - Use AuxiliaryUIFactory for legacy UI components, and add a "Legacy"
          prefix to those classes
        - Rename qt::Web{Context,Popup}MenuImpl to qt::Web{Context,Popup}MenuHost
          for consistency with JavaScriptDialogHost
        - Fix LP: #1665978 - Sync ParamTraits for content::WebPreferences to make
          double-tap-to-zoom work again
        - Fix LP: #1668614 - Fix build failure with GCC 4.8 due to lack of
          stdatomic.h
    
      * Refresh gross-hack-for-dual-ffmpeg-build.patch
      * Drop debian/patches/lp1642317.patch - fixed upstream
    
     -- Chris Coulson <email address hidden>  Fri, 17 Mar 2017 21:28:53 +0000
  • oxide-qt (1.20.4-0ubuntu0.16.04.1) xenial-security; urgency=medium
    
      * Update to v1.20.4 (see USN-3180-1)
        - Bump Chromium rev to 56.0.2924.87
        - Fix LP: #1642318 - Build failure on arm64
        - Fix LP: #1649861 - session save/restore across oxide versions
        - Fix LP: #1632490 - Disable zoom-for-dsf
        - Fix LP: #1632487 - Update tst_WebView_findController.qml to test that
          results are updated on navigation
        - Fix LP: #1610929 - Implement Screen::GetShellMode()
        - Fix LP: #1637184 - Add libOxideUbuntuUITK, associated QML plugin and
          UbuntuWebView implementation, which will eventually replace the
          Ubuntu.Web component
        - Stop using Q_DECL_EXPORT in various places
        - Enable use_external_popup_menu and remove our hack for supporting these
        - Refactor WebContextMenu
        - Documentation changes - ensure that the PermissionRequest classe
          indicate the inheritance chain and add missing entries for a few signals
        - Remove WebView::GetDisplay, as it's unused
        - Pass context menu params to the webview via a separate object
        - Fix a compiler warning
        - Fix a build failure with ENABLE_HYBRIS_CAMERA
        - Fix a build failure with ENABLE_COMPONENT_BUILD
        - Fix media hub build
        - Fix LP: #1637186 - Add context menu implementation to UbuntuWebView
        - Disable enable_media_routing as it results in a lot of console spam now
        - Fix LP: #1639241 - Set the solid colour scrollbar colour correctly
        - Fix LP: #1643428 - Fix an issue where the fling direction sometimes
          reverses
        - Fix a build failure with ENABLE_HYBRIS_CAMERA
        - Fix LP: #1643548 - Emit a warning when importing Oxide.Ubuntu
        - Fix LP: #1642381 - Don't spin up a zygote process in single process mode
        - Remove OXIDE_DISABLE_SETUID_SANDBOX environment variable - it doesn't
          work anyway
        - Ensure that the value returned from TestApi.getBoundingClientRectForSelector
          is scaled correctly
        - Fix LP: #1637187 - Add QML tests for context menu
        - Fix LP: #1637190 - Add API to allow embedders to customize actions in
          the context menu
        - Fix LP: #1640634 - "Open {link,media} in new {tab,window}" entries in
          context menu shouldn't cause WebView.navigationRequested to fire
    
      * Refresh gross-hack-for-dual-ffmpeg-build.patch
      * Fix LP: #1642317 - misaligned access when running mksnapshot during the
        armhf build. Add this as a distro-patch to avoid having to fork the v8
        repo for upstream checkouts. This isn't a problem for cross-builds anyway
        - Add debian/patches/lp1642317.patch
        - Update debian/patches/series
    
     -- Chris Coulson <email address hidden>  Thu, 26 Jan 2017 19:11:20 +0000
  • oxide-qt (1.19.4-0ubuntu0.16.04.1) xenial-security; urgency=medium
    
      * Update to v1.19.4 (see USN-3153-1)
        - Bump Chromium rev to 55.0.2883.75
        - Download clang_format binaries during the checkout
        - Fix LP: #1620528 - Ensure navigator.languages matches the embedder
          provided value (via WebContext::acceptLangs)
        - Fix LP: #1628496 - Make the auto mode of LocationBarController more
          intelligent. It now blocks auto hide in the following circumstances:
          - There is a security error
          - The renderer has crashed
          - The renderer is hung
          - A certificate error request is active
        - Make use of WebContentsIDTracker in a couple of places to simplify
          WebView initialization
        - Don't run insecure content in https://testsuite/ during tests, as it
          taints this domain for the remainder of the test sequence in
          single-process mode
        - Fix LP: #1628494 - Add WebView::terminateWebProcess and
          WebProcessUnresponsive enum to WebProcessStatus so that applications can
          implement handling for hung web content processes
        - Move various navigation related callbacks to WebContentsClient
        - Fix LP: #1631450 - Implement RWHV::GetFrameSinkId, and ensure our RWHV
          implementation uses the same cc::SurfaceManager as Chromium's
          RWHVChildFrame, so that cross-process frames work
        - Move HttpAuthenticationRequested to WebContentsClient
        - Move DownloadRequested to WebContentsClient
        - Fix LP: #1622385 - Add initial API reference documentation
        - Fix a DCHECK when tearing down the webview compositor
        - Ensure StoragePartitions are correctly shutdown to avoid a DCHECK
        - The Screen destructor runs after the AtExitManager has already been torn
          down, so don't use base::LazyInstance to avoid a DCHECK
        - Use a persistent store for the TLS Channel ID feature
        - Fix LP: #1599771 - The webview shouldn't indicate that it is focused when
          one of its children is
        - Rename WebViewContentsHelper to WebContentsHelper
        - Get rid of WebView::GetAllWebViews, which is unused
        - Refactor and simplify WebPreferences ownership
        - Hoist LocationBarController code out of WebView
        - Move popup blocker and DNT settings to UserAgentSettings
        - Return video capture devices with the front facing ones first
        - Update the NavigationHistory API. This deprecates the previous list-model
          API and adds new APIs for querying navigation history, as well as
          for initiating history navigations.
        - Fix LP: #1570828 - Don't crash when receiving messages as the webview is
          unloading
        - Fix LP: #1638915 - build failure on trusty
        - Fix LP: #1637609 - Make OxideQQuickNavigationHistory constructor private
        - Fix LP: #1631184 - Location bar is hidden for webviews that are
          script opened
        - Fix LP: #1640264 - Find-in-page doesn't wrap correctly
    
      * Don't build-depend on qt5-default, but instead build depend on qtbase5-dev,
        qtbase5-dev-tools and qtchooser
      * Add oxideqt-doc package
      * Build-depend on qtbase5-doc-html and qtdeclarative5-doc-html
      * Don't build-depend on libmedia-hub-dev to disable media-hub integration,
        as it's currently unbuildable on this branch
    
     -- Chris Coulson <email address hidden>  Tue, 06 Dec 2016 12:49:00 +0000
  • oxide-qt (1.18.5-0ubuntu0.16.04.1) xenial-security; urgency=medium
    
      * Update to v1.18.5 (see USN-3133-1)
        - Bump Chromium rev to 54.0.2840.99
        - Fix LP: #1640542 - Frequent web process crashes with webapps
        - Fix LP: #1639185 - Crash during webbrowser-app tests
    
     -- Chris Coulson <email address hidden>  Tue, 22 Nov 2016 13:35:59 +0000
  • oxide-qt (1.18.3-0ubuntu0.16.04.1) xenial-security; urgency=medium
    
      * Update to v1.18.3 (see USN-3113-1)
        - Bump Chromium rev to 54.0.2840.71
        - Fix LP: #1625484 - Initialize the locationbar position before the
          webview is navigated for the first time
        - Fix LP: #1448079 - Don't spin the event loop during shutdown
        - Fix LP: #1503639 and LP: #1626099 - Refactor ownership of BrowserContext
        - Ensure ENABLE_OXIDEQMLSCENE still defaults on ON with Qt5.2
        - Fix !ENABLE_HYBRIS build
        - Exclude the buildtools directory from the tarball
        - Pass argv[0] to the org.freedesktop.ScreenSaver API rather than the
          application name
        - Fix LP: #1547130 - Stop using GetFormFactorHint in PowerSaveBlocker
        - Fix LP: #1615832 - ENABLE_TESTS fixes for Qt5.6
        - Fix media-hub build
        - Make the "Error creating EGLImage" message more useful
        - Fix a regression with arm cross-compile builds
        - FilePath::Append DCHECK fails when argument is absolute path
        - Fix test flakiness in tst_WebView_newViewRequested.qml
        - Fix test flakiness in tst_WebView_closeRequested.qml
        - Fix a build failure on fresh cross-builds
        - Ensure we check out the GN binaries
        - Fix LP: #1616043 - OSK not displaying
        - Avoid some console spam with older versions of qtubuntu
        - Work around the lack of QGuiApplication::screenRemoved with Qt5.2
        - Avoid a console warning with Qt < 5.5 due to
          QGuiApplication::primaryScreenChanged not existing
        - Fix build failures with Qt < 5.5
        - Fix LP: #1547149 - Stop using device form factor for configuring various
          WebPreferences options. This also deprecates
          OxideQWebPreferences::shrinksStandaloneImagesToFit, which never actually
          worked and the corresponding setting in Blink no longer exists
        - Use base::Environment instead of directly calling getenv
        - Fix LP: #1589902 - Delete gyp support
        - Fix LP: #1547160 - Use WebPreferences::main_frame_resizes_are_orientation_changes
          rather than the corresponding command line option
        - Fix LP: #1547138 - Clean up pinch-zoom settings and always send pinch
          gestures to content
        - Turn off WebPreferences::shrinks_viewport_contents_to_fit in windowed mode
          to avoid some sites being scaled on window resize (incomplete fix for
          LP: #1545088)
        - Fix LP: #1610363 - Stop using GetFormFactorHint in shared/renderer
        - Fix LP: #1597418 - Rename ScreenClient to Screen and move all screen state
          handling there. This removes some duplication and makes it easier to unit-test
        - Run Chromium's base_unittests, crypto_unittests and ipc_tests as part of
          the test sequence
    
      * Refresh gross-hack-for-dual-ffmpeg-build.patch
      * Drop obsolete USE_GN build option
        - update debian/rules
      * Build with ENABLE_HYBRIS_CAMERA=1 on non-arm64
        - update debian/rules
      * Don't assert(ffmpeg_branding == "Chromium") in proprietary_codecs builds
        - update debian/patches/gross-hack-for-dual-ffmpeg-build.patch
    
     -- Chris Coulson <email address hidden>  Tue, 25 Oct 2016 15:56:45 +0100
  • oxide-qt (1.17.9-0ubuntu0.16.04.1) xenial-security; urgency=medium
    
      * Update to v1.17.9 (see USN-3091-1)
        - Bump Chromium rev to 53.0.2785.143
        - Fix LP: #1625122 - Ensure we actually initialize the elements of
          Clipboard::cached_info_
    
     -- Chris Coulson <email address hidden>  Tue, 27 Sep 2016 18:08:00 +0100
  • oxide-qt (1.17.7-0ubuntu0.16.04.1) xenial-security; urgency=medium
    
      * Update to v1.17.7 (see USN-3058-1)
        - Bump Chromium rev to 53.0.2785.101
        - Fix LP: #1615832 - Don't compile the mock QPA plugin with Qt5.6
        - Fix LP: #1618589 - Compile with -fno-delete-null-pointer-checks to work
          around issues related to changes in GCC6
        - Fix LP: #1618530 - Ensure we use the correct ozone platform
        - Fix LP: #1616595 - Fix Qt5.2 build
        - Fix LP: #1260103 - Oxide should use an app-specific path for shared
          memory files
        - Ensure we check out the GN binaries
        - Fix LP: #1615683 - Implement KeyboardEvent.code and KeyboardEvent.key,
          as parts of Blink now depend on this
        - Fix LP: #1605365 - Front camera is inverted on BQ E5
        - Fix LP: #1608657 - Ensure shrinksViewportContentToFit option is enabled
          on mobile
        - Fix LP: #1597420 - Add a mock QPA plugin and add integration tests for
          the Screen and ScreenOrientation APIs
        - Import updated translations from Launchpad
        - Add tests for Window.screen{X,Y}
        - Use attached properties for WebViewTestSupport and WebContextTestSupport
        - Refactor the huge main() function in the QML test runner
        - Fix LP: #1568145 - Correctly report the position for video capture devices
        - Clean up user scripts between tests
        - Add test for Window.{inner,outer}{Height,Width}
        - Don't hardcode a size for the root item in QML tests - have it set by
          the window size instead
        - Fix LP: #1599236 - ensure GN builds are built with Pango support
        - Fix LP: #1588219 - fix mediahub GN build
        - Fix LP: #1592020 - Make oxide_shared_unittests / oxide_qt_unittests work
          with the GN build
        - MouseEvents must be used to generate synthetic click events in tests
        - Fix LP: #1597262 - Only enable plugin support on x86 / x86-64
        - Fix LP: #1560271 - Refactor CookieStoreProxy and ensure that the cookie
          store is created on the IO thread
        - Fix Compositor DCHECK
        - Call BrowserPlatformIntegration::GetNativeDisplay later to avoid a DCHECK
        - Fix LP: #1510603 - Stop using GetFormFactorHint for memory optimizations
        - Fix LP: #1595320 - Ensure GN builds are linked without --fatal-warnings
        - Make the renderer executable use Chromium's new allocator shim, which
          means we get an infallible allocator on AArch64, even without TCMalloc
        - Various allocator related fixes (LP: #1595321 and LP: #1595324)
        - Fix LP: #1588218 - Make ENABLE_TCMALLOC work with GN builds
        - Fix LP: #1597040 - Disable TCMalloc on AArch64
        - Fix LP: #1585291 - Add copy image support to the context menu
        - Fix LP: #1593232 - Fix navigator.vibrate regression and add tests for this
        - Ensure that our device::VibrationManager implementation sanitizes
          arguments properly
        - Fix LP: #1595136 - Compile the core library with -g1 on hosts with less
          than 8GB of RAM
        - Fix LP: #1594941 - Fix static ENABLE_PLUGINS=0 GN build
        - Fix LP: #1594962 - Disable gn check step for now
        - Fix LP: #1326697 - Preliminary support for building with GN
        - Fix LP: #1588217 - Cross-compiling support with GN
        - Fix LP: #1588942 - Support for bootstrapping a GN binary
        - Fix LP: #1582638 - Initial build support for AArch64
        - Fix non-ENABLE_HYBRIS build
        - Fix LP: #1592296 - Support filenames in drag and drop
        - Fix LP: #1601887 - Add a quirk to assume that the native orientation of
          the primary screen on freiza and cooler devices is landscape
        - Fix LP: #1613258 - Avoid a hard runtime dependency on MADV_FREE when
          compiled against glibc 2.24, and ensure madvise(MADV_FREE) is allowed
          in the seccomp policy so that it works when the kernel is upgraded to 4.5
        - Fix LP: #1616132 - Explicitly whitelist accelerated canvas and GPU
          raster on various devices. This got disabled due to a recent change
          in libhybris
    
      * Build with USE_GN=1, BOOTSTRAP_GN=1
        - update debian/rules
      * Build with ENABLE_HYBRIS=0 on arm64
        - update debian/rules
      * Don't build-depend on libhybris on arm64
        - update debian/control
      * locales/ has been renamed to chromium_l10n
        - update debian/liboxideqtcore0.install
      * Refresh gross-hack-for-dual-ffmpeg-build.patch
      * Build depend on python-psutil
        - update debian/control
    
     -- Chris Coulson <email address hidden>  Mon, 05 Sep 2016 21:31:57 +0100
  • oxide-qt (1.16.5-0ubuntu0.16.04.1) xenial-security; urgency=medium
    
      * Update to v1.16.5 (see USN-3041-1)
        - Bump Chromium rev to 52.0.2743.82
        - Remove WebSettings::setTouchEditingEnabled customization from Blink -
          it's not used anymore
        - Make checkouts a bit faster by disabling unnecessary gclient hooks
        - Use QWheelEvent::pixelDelta where possible
        - Refactor clipboard support and add a ClipboardObserver class
        - WebContentsView should guard various calls from RWHV to ensure they're
          associated with the currently displayed view
        - Ensure we correctly restore RenderWidget state when switching between
          interstitial / fullscreen views
        - Disable allocator shim
        - Refactor how select popups are implemented, so we rely on a less
          intrusive change to Chromium
        - Fix LP: #1532910 - Stop using deprecated V8 APIs
        - Decouple SecurityStatus from WebView, and add extensive unit tests for
          this code
        - Add simple unit tests for SSLHostStateDelegate
        - Use proper cmake variables for imported libraries rather than using the
          names directly
    
      * Refresh gross-hack-for-dual-ffmpeg-build.patch
    
     -- Chris Coulson <email address hidden>  Thu, 21 Jul 2016 18:00:43 +0100
  • oxide-qt (1.15.8-0ubuntu0.16.04.1) xenial-security; urgency=medium
    
      * Update to v1.15.8 (see USN-3015-1)
        - Bump Chromium rev to 51.0.2704.103
        - Fix LP: #1590776 - Hide the insertion handle on input events
    
     -- Chris Coulson <email address hidden>  Wed, 22 Jun 2016 15:42:29 +0100
  • oxide-qt (1.15.7-0ubuntu0.16.04.1) xenial-security; urgency=medium
    
      * Update to v1.15.7 (see USN-2992-1)
        - Bump Chromium rev to 51.0.2704.79
        - Fix LP: #1567542 - Ensure the camera image is rotated correctly for both
          front and back cameras, and fix a krillin-specific issue
        - Fix LP: #1570511 / LP: #1586968 - Allow touch selection to short circuit
          context menu requests
        - Fix LP: #1569315 - Make WebView::EditingCapabilitiesChanged faster to
          avoid serious performance issues with an active selection
        - Disable plugins by default on arm, as we only support Flash which isn't
          available there
        - Compile native arm and x86 builds with -g1 to reduce the size of the
          resulting unstripped binary and hopefully ease address space pressure
          during linking. This will reduce the usefulness of crash reports on
          these platforms
        - Unbreak the !ENABLE_PLUGINS build
        - Fix LP: #1582060 - Ensure we attach the InputMethodContext for script
          opened webviews
        - Fix LP: #1578808 - link failure on armhf
        - Fix LP: #1576164 - Internationalize the camera names
        - Fix LP: #1556658 - Provide dummy message text to an application's custom
          beforeunload dialog component for compatibility purposes, now that
          Chromium ignores the one provided by the page
        - Fix LP: #1535818 - Add support for the deviceId constraint in getUserMedia
        - Fix LP: #1568860 - Replace use of scoped_ptr with std::unique_ptr
        - Replace CertificateErrorDispatcherClient with a callback, and add through
          unit tests for CertificateErrorDispatcher in the process
        - Add the ability to run unit tests on internal classes in shared/
        - Fix LP: #1447395 - Add WebView.zoomFactor API
        - Fix LP: #1565063 - Add 'version' and 'chromiumVersion' properties to
          the API
        - Remove CompositorProxy and its implementation. This was left over from
          when the webview compositor wasn't single threaded
        - Remove RendererFrameEvictor - it's redundant anyway because we destroy
          the webview compositor when it's hidden. Now we just drive eviction from
          there instead. This removes a bogus dependency on GetFormFactorHint
        - Hide surface_id from compositor clients, cleaning up the client interface
        - Fix LP: #1498200 - Componentize qt/core/ and shared/. This allows us to
          build unit test binaries that depend on shared/
        - Drop the warning when changing the process model - single process is
          now supported.
        - Adapt the QML tests to run in single-process and make lots of test fixes
          (LP: #1399208)
        - Fix LP: #1399207 - Make it possible to skip entire QML test cases where
          they aren't relevant for specific configurations (eg, single process)
        - Fix LP: #1462814 - Drop failing test which appears to not be useful
          anymore
        - Disable profiler timing - we don't have chrome://profiler/, and this is
          disabled by default on Chrome/Android too due to it having a
          non-negligible performance impact.
        - Fix a shutdown abort in single-process mode
        - Add CookieStoreUIProxy, which is an implementation of net::CookieStore
          that proxies calls from the UI thread to the real cookie store on the IO
          thread. This is used in a couple of places where we need access to the
          cookie store on the UI thread
        - Fix LP: #1556762 - Add TouchSelectionController.handleDragInProgress
          property
        - Fix LP: #1556764 - Add TouchSelectionController.hide() API
        - Fix LP: #1552161 - Convert QTouchEvent directly to ui::MotionEvent.
          Dropping the use of ui::TouchEvent means we no longer have to round
          the scroll coordinates, which should improve smoothness on high-DPI
          screens
    
     -- Chris Coulson <email address hidden>  Thu, 02 Jun 2016 18:41:08 +0100
  • oxide-qt (1.14.9-0ubuntu0.16.04.1) xenial-security; urgency=medium
    
      * Update to v1.14.9 (see USN-2960-1)
        - Bump Chromium rev to 50.0.2661.102
        - Scale the locationbar height when the screen changes
        - Fix LP: #1575216 - Ensure we resize / rescale the webview compositor
          viewport when the screen is updated
    
     -- Chris Coulson <email address hidden>  Wed, 04 May 2016 19:45:31 +0100
  • oxide-qt (1.14.7-0ubuntu1) xenial-security; urgency=medium
    
      * Update to v1.14.7
        - Bump Chromium rev to 50.0.2661.87
        - Fix LP: #1565685 - Gracefully handle the case where
          glGetString(GL_SHADING_LANGUAGE_VERSION) returns a null pointer
        - Fix LP: #1543761 - Move fullscreen logic out of oxide::WebView
        - Fix LP: #1542119 - Rip input handling and compositing glue out of
          oxide::WebView
        - Fix LP: #1548996 - Fix device scaling mess
        - Fix LP: #1459830 - Support drag and drop
        - Fix LP: #1440863 - Support navigator.vibrate()
        - Fix LP: #1552376 - Ensure we disable the use of the share context on
          drivers where Chromium uses virtualized GL contexts
        - Fix LP: #1520537 - webbrowser-app crashes after 1 sec on unity8
        - Fix LP: #1459395 - Triple click doesn't work
        - Fix LP: #1459362 - SwipeArea lets touch events through before a drag is
          detected
        - Fix LP: #1426153 - Use a single-threaded webview compositor
        - Fix LP: #1543587 - Duplicate targets and random mis-builds due to
          Chromedriver
        - Fix LP: #1555122 - Startup crash when running in a VM
        - Fix LP: #1552825 - WebView.touchSelectionController.active remains true
          when navigating away
        - Fix LP: #1556323 - Fix SIGSEGV in oxide::InputMethodContext::SetImeBridge
        - Add support for scale factor retrieved from the Ubuntu QPA plugin
        - Switch from DelegatedRendererLayer to SurfaceLayer in
          RenderWidgetHostView, as the former has been deleted from Chromium
    
      * Refresh gross-hack-for-dual-ffmpeg-build.patch
      * Build-depend on qtfeedback5-dev
        - update debian/control
    
     -- Chris Coulson <email address hidden>  Mon, 18 Apr 2016 13:26:59 +0100
  • oxide-qt (1.13.6-0ubuntu1) xenial; urgency=medium
    
      * Update to v1.13.6 (see USN-2920-1)
        - Bump Chromium rev to 49.0.2623.87
        - Fix LP: #1536797 - Issues with nested event loop handling
        - Fix LP: #1432059 - Stop using Q_DECL_EXPORT
        - Fix LP: #1494900 - Stop building the translation units containing public
          classes as a separate target with different compiler options
        - Fix LP: #1533223 - Use consistent naming of QFlags types (doesn't affect
          the QML API)
        - Fix LP: #1533710 - Various cleanups in soon-to-be-public headers
        - Fix LP: #1463410 - Fold SimplePermissionRequest in to PermissionRequest
          (doesn't affect the QML API)
        - Add a deprecation warning for WebView.loadingChanged
        - Install public headers and CMake package config files
        - Be a bit more intelligent when detecting the availability of the Hybris
          camera compatibility layer and Android EGL platform
    
      * Drop -dbg packages (LP: #1408672)
        - update debian/control
        - update debian/rules
      * Add liboxideqtcore-dev and liboxideqtquick-dev packages
        - update debian/control
        - add debian/liboxideqtcore-dev.install
        - add debian/liboxideqtquick-dev.install
      * Refresh gross-hack-for-dual-ffmpeg-build.patch
      * Add build-depends on libffi-dev
        - update debian/control
      * Drop chromedriver build (fixes LP: #1543587)
        - update debian/control
        - update debian/rules
        - remove debian/oxideqt-chromedriver.install
    
     -- Chris Coulson <email address hidden>  Mon, 07 Mar 2016 10:43:01 +0000
  • oxide-qt (1.12.7-0ubuntu1) xenial; urgency=medium
    
      * Update to v1.12.7 (see USN-2905-1)
        - Bump Chromium rev to 48.0.2564.116
    
     -- Chris Coulson <email address hidden>  Sun, 21 Feb 2016 11:46:53 +0000
  • oxide-qt (1.12.6-0ubuntu1) xenial; urgency=medium
    
      * Update to v1.12.6 (see USN-2895-1)
        - Bump Chromium rev to 48.0.2564.109
    
     -- Chris Coulson <email address hidden>  Fri, 12 Feb 2016 10:49:10 +0000
  • oxide-qt (1.12.5-0ubuntu1) xenial; urgency=medium
    
      * Update to v1.12.5 (see USN-2877-1)
        - Bump Chromium rev to 48.0.2564.82
        - Fix LP: #1376268 - Add TouchSelectionController and
          WebView.editingCapabilites APIs
        - Fix LP: #1441465 - Add camera implementation for phone that uses
          the compatibility layer in Ubuntu's libhybris
        - Fix LP: #1508972 - Can't enumerate cameras on the phone
        - Fix LP: #1490014 - (PPAPI Flash) Implement missing PPB_Flash functions
        - Fix LP: #1490016 - (PPAPI Flash) Implement PPB_Fullscreen
        - Fix LP: #1490017 - (PPAPI Flash) Implement PPB_Flash_FontFile
        - Fix LP: #1499479 - Reduce the size of the Skia font cache on mobile
        - Fix LP: #1499775 - It's difficult to see where a link will send you
          before clicking on it. Add WebView.hoveredUrl property
        - Fix LP: #1504853 - Certificate errors in the browser are confusing -
          have the WebView navigate to a placeholder transient page when the
          browser displays the certificate error UI. This fixes several issues
          where the addressbar and back button didn't behave consistently in some
          cases
        - Fix LP: #1509384 - (PPAPI Flash) Flash plugin isn't always detected
          by BBC iPlayer. Ensure we load the plugin metadata so that
          navigator.plugins has the correct info
        - Fix LP: #1509433 - (PPAPI Flash) Enable the Flash plugin by default
          when it's installed
        - Fix LP: #1509875 - (PPAPI Flash) Browser addressbar is visible when Flash
          content is fullscreen because LocationBarController doesn't work. Always
          hide the addressbar in this case
        - Fix LP: #1510508 - (PPAPI Flash) Layout and input events messed up when
          using Flash in fullscreen. The Flash plugin expects the view size to be
          updated synchronously when transitioning to fullscreen, so add a hack for
          this (Chrome already does this too)
        - Fix LP: #1510679 - (PPAPI Flash) Transitioning Flash content to
          fullscreen sometimes shows the wrong content
        - Fix LP: #1510949 - (PPAPI Flash) Applications cannot cancel fullscreen
          Flash
        - Fix LP: #1510973 - (PPAPI Flash) Ensure we cancel a fullscreen request
          from Flash is the application doesn't grant fullscreen by setting
          WebView.fullscreen to true
        - Fix LP: #1517955 - Enable NEON unconditionally. Support for non-NEON
          builds in Chromium has been broken for ages, and the default (optional
          NEON with runtime detection) only works on Android without additional
          patches to make the detection work on non-Android builds. Given that
          upstream are planning enable NEON unconditionally and drop support for
          other configurations in the future, let's just do this now as it enables
          us to stop patching webrtc
        - Fix LP: #1518358 - Text selection is not greyed out when the window
          loses focus
        - Fix LP: #1341565 - Should include plugin typeinfo (plugins.qmltypes)
        - Fix LP: #1408109 - Remove StoragePermissionRequest. This was never
          completed, has never been tested, isn't used anywhere and is going to
          get in the way of site settings
        - Fix LP: #1510503 - WebView.fullscreenRequested shouldn't fire if
          fullscreen is already granted
        - Fix LP: #1510506 - (PPAPI Flash) NOTIMPLEMENTED() hit in WebContentsView
          when using Flash fullscreen
    
      * Build-depend on libandroid-properties-dev on all architectures
        - update debian/control
    
     -- Chris Coulson <email address hidden>  Thu, 21 Jan 2016 11:44:33 +0000
  • oxide-qt (1.11.5-0ubuntu1) xenial; urgency=medium
    
      * Update to v1.11.5
        - Fix LP: #1532135 - Ensure enums for value types are actually exposed to
          QML when building with Qt5.5
    
     -- Chris Coulson <email address hidden>  Mon, 11 Jan 2016 17:11:11 +0000
  • oxide-qt (1.11.4-0ubuntu1) xenial; urgency=medium
    
      * Update to v1.11.4
        - see USN-2860-1
        - Bump Chromium rev to 47.0.2526.106
    
     -- Chris Coulson <email address hidden>  Wed, 06 Jan 2016 11:13:40 +0000
  • oxide-qt (1.11.3-0ubuntu3) xenial; urgency=medium
    
      * Add patches/fix-libvpx-build-gcc53.patch (LP: #1528297)
    
     -- Olivier Tilloy <email address hidden>  Tue, 22 Dec 2015 11:52:56 +0100
  • oxide-qt (1.11.3-0ubuntu2) xenial; urgency=medium
    
      * No-change rebuild against Qt 5.5.
    
     -- Ɓukasz 'sil2100' Zemczak <email address hidden>  Fri, 18 Dec 2015 12:02:06 +0100
  • oxide-qt (1.11.3-0ubuntu1) xenial; urgency=medium
    
      * Update to v1.11.3
        - see USN-2825-1
        - Bump Chromium rev to 47.0.2526.73
        - Fix LP: #1470268 - Implement a ResourceThrottle based navigation
          intercept, and stop using an unsupported navigation path in Chromium
          to do this
        - Fix LP: #1421423 - Don't crash when we receive unhandled key events
          without an OS event
        - Fix LP: #1506672 - Link with --gc-sections in all build configurations
          to work around a code architecture issue
        - Fix LP: #1326113 - Initial support for the Flash PPAPI plugin (off by
          default)
        - Fix LP: #1500510 - Add support for HTML notifications using libnotify
        - Fix LP: #1486645 - Use the application name for the token used to
          request access to the microphone
        - Fix LP: #1433508 - Previous favicon displayed when navigating to a file
          URL, or any URL that doesn't have a concept of a default favicon (ie,
          non-HTTP URLs)
        - Fix LP: #1302740 - WebView.navigationRequested isn't emitted for
          new-window navigations when WebView.newViewRequested isn't implemented
        - Fix LP: #1470190 - Refactor how some classes are constructed to make
          things more consistent
        - Fix LP: #1501473 - Disable smooth scrolling to work around scrolling
          issues
        - Fix LP: #1505048 - Update for changes to base::RepeatingTimera
        - Fix LP: #1522830 - Build shouldn't pull in resources from //chrome
      * Add build-depends on libnotify-dev and libgdk-pixbuf2.0-dev
    
     -- Chris Coulson <email address hidden>  Wed, 02 Dec 2015 22:48:46 +0000
  • oxide-qt (1.10.3-0ubuntu0.15.10.2) xenial; urgency=medium
    
      * Rebuild against Qt 5.5.1.
    
     -- Timo Jyrinki <email address hidden>  Mon, 30 Nov 2015 16:09:41 +0200
  • oxide-qt (1.10.3-0ubuntu0.15.10.1) wily-security; urgency=medium
    
      * Update to v1.10.3 (see USN-2770-1)
        - Bump Chromium rev to 46.0.2490.71
        - When calling WebView.goBack or WebView.goForward, test that the state
          of canGo{Forward,Back} is updated immediately
        - Update media permission tests to use https, now that media capture
          requires it
        - Disable Blink features that don't work or aren't implemented in Oxide
          (page popups and ContentUtils)
        - Stop piggy-backing on to cc::CompositorFrame for passing information
          about compositor frames around. cc::CompositorFrame::software_frame_data
          has been removed from Chromium now that software frames are no longer
          sent over IPC, so we implement our own classes for handling this
        - Qt 5.5 fixes
        - Fix LP: #1487090 - Work around content-hub issue by exposing the mime
          type to download requests when saving an image from the context menu
      * Refresh gross-hack-for-dual-ffmpeg-build.patch
    
     -- Chris Coulson <email address hidden>  Thu, 15 Oct 2015 11:49:45 +0100
  • oxide-qt (1.9.5-0ubuntu1) wily; urgency=medium
    
      * Update to v1.9.5 (see USN-2757-1)
        - Bump Chromium rev to 45.0.2454.101
        - Fix LP: #1498953 - Reduce the limit for discardable memory on mobile
    
     -- Chris Coulson <email address hidden>  Wed, 30 Sep 2015 19:02:43 +0100