epiphany: bump version

This commit is contained in:
Gerasim Troeglazov
2023-03-22 20:55:02 +10:00
parent 1db9b09f68
commit 9db266e717
2 changed files with 3 additions and 40 deletions

View File

@@ -6,11 +6,11 @@ your privacy.
With no useless widgets or wasted space, Web fits GNOME's and Haiku's design philosophy.
Its code name is Epiphany."
HOMEPAGE="https://wiki.gnome.org/Apps/Web"
COPYRIGHT="2005-2022 The GNOME Project"
COPYRIGHT="2005-2023 The GNOME Project"
LICENSE="GNU GPL v3"
REVISION="6"
REVISION="1"
SOURCE_URI="https://gitlab.gnome.org/GNOME/epiphany/-/archive/$portVersion/epiphany-$portVersion.tar.bz2"
CHECKSUM_SHA256="867117c09a532c06e2db0f283c153f310bfec0e28c4ef06955dfa1f3ec6167c7"
CHECKSUM_SHA256="d617a16f305d38925033bcacfab971aaea5ad27323f24c1a3643815c922fb688"
PATCHES="epiphany-$portVersion.patchset"
ADDITIONAL_FILES="
epiphany.rdef.in

View File

@@ -440,43 +440,6 @@ index 85507b5..c7eb69e 100644
2.37.3
From b8dcb20f168d6bc4eb2480f7cc6c396086963695 Mon Sep 17 00:00:00 2001
From: Michael Catanzaro <mcatanzaro@redhat.com>
Date: Thu, 1 Dec 2022 16:13:23 -0600
Subject: overview.js: fix thumbnails when loading from session state
diff --git a/embed/web-process-extension/resources/js/overview.js b/embed/web-process-extension/resources/js/overview.js
index a15f698..3770844 100644
--- a/embed/web-process-extension/resources/js/overview.js
+++ b/embed/web-process-extension/resources/js/overview.js
@@ -29,6 +29,9 @@ Ephy.Overview = class Overview
_initialize()
{
const anchors = document.getElementsByTagName('a');
+ if (anchors.length === 0)
+ return;
+
for (let i = 0; i < anchors.length; i++) {
const anchor = anchors[i];
if (anchor.className !== 'overview-item')
@@ -253,11 +256,7 @@ Ephy.Overview.Item = class OverviewItem
thumbnailPath()
{
- const style = this._thumbnail.style;
- if (style.isPropertyImplicit('background'))
- return null;
-
- const background = style.getPropertyValue('background');
+ const background = this._thumbnail.style.getPropertyValue('background');
if (!background)
return null;
--
2.37.3
From 76653f4d72a9f922c4cfc8f8ee00c3c4835aed0f Mon Sep 17 00:00:00 2001
From: Gerasim Troeglazov <3dEyes@gmail.com>
Date: Wed, 15 Feb 2023 00:05:34 +1000