Unverified Commit 95022625 authored by Bobby Rong's avatar Bobby Rong Committed by GitHub
Browse files

Pantheon updates 2025-11-18 (#462911)

parents acd04391 7bbfb5ab
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -24,13 +24,13 @@

stdenv.mkDerivation rec {
  pname = "elementary-calendar";
  version = "8.0.0";
  version = "8.0.1";

  src = fetchFromGitHub {
    owner = "elementary";
    repo = "calendar";
    rev = version;
    sha256 = "sha256-gBQfrRSaw3TKcsSAQh/hcTpBoEQstGdLbppoZ1/Z1q8=";
    tag = version;
    hash = "sha256-kkdz82eCc9dKemUtCaz9OUObeICU5W1Ino4JNUvmhAw=";
  };

  nativeBuildInputs = [
+3 −3
Original line number Diff line number Diff line
@@ -18,13 +18,13 @@

stdenv.mkDerivation rec {
  pname = "elementary-feedback";
  version = "8.0.1";
  version = "8.1.0";

  src = fetchFromGitHub {
    owner = "elementary";
    repo = "feedback";
    rev = version;
    sha256 = "sha256-D0x0jKYEB6Bo8ETgVCjgdOItc+VJYlrr8N9lI/Z3eXU=";
    tag = version;
    hash = "sha256-FvlSfcP/Qdo9zBFm2XiEqaxYGILe4BCNPyCELS43pew=";
  };

  patches = [
+4 −12
Original line number Diff line number Diff line
diff --git a/src/MainWindow.vala b/src/MainWindow.vala
index 14b0701..13638a5 100644
index 8f407bf..32db5fb 100644
--- a/src/MainWindow.vala
+++ b/src/MainWindow.vala
@@ -82,6 +82,7 @@ public class Feedback.MainWindow : Gtk.ApplicationWindow {
@@ -124,6 +124,7 @@ public class Feedback.MainWindow : Gtk.ApplicationWindow {
             AppStream.PoolFlags.LOAD_FLATPAK |
             AppStream.PoolFlags.RESOLVE_ADDONS
         );
+        appstream_pool.add_extra_data_location ("/run/current-system/sw/share/metainfo/", AppStream.FormatStyle.METAINFO);
 #else
         appstream_pool.clear_metadata_locations ();
         // flatpak's appstream files exists only inside they sandbox
@@ -89,6 +90,7 @@ public class Feedback.MainWindow : Gtk.ApplicationWindow {
         foreach (var app in app_entries) {
             appstream_pool.add_metadata_location (appdata_dir.printf (app));
         }
+        appstream_pool.add_metadata_location ("/run/current-system/sw/share/metainfo/");
 #endif
 
         appstream_pool.load_async.begin (null, (obj, res) => {
             try {
+3 −3
Original line number Diff line number Diff line
@@ -19,13 +19,13 @@

stdenv.mkDerivation rec {
  pname = "sideload";
  version = "6.3.0";
  version = "6.3.1";

  src = fetchFromGitHub {
    owner = "elementary";
    repo = "sideload";
    rev = version;
    sha256 = "sha256-2tYdcHx77XN2iu2PKXAKwOtb4TOFt3Igv17w2zIxqT4=";
    tag = version;
    hash = "sha256-mFaMKY4SdnSdRsHy5vIbJFdMx2FGxYCWmSAWkb99yUI=";
  };

  nativeBuildInputs = [
+5 −5
Original line number Diff line number Diff line
@@ -27,13 +27,13 @@

stdenv.mkDerivation rec {
  pname = "switchboard-plug-about";
  version = "8.2.1";
  version = "8.2.2";

  src = fetchFromGitHub {
    owner = "elementary";
    repo = "switchboard-plug-about";
    rev = version;
    sha256 = "sha256-H4BDLP3yzQi+ougpvBvnv1R1TImzUjSOVDGbOqw9hvg=";
    repo = "settings-system";
    tag = version;
    hash = "sha256-SPFCBsk4tVR+5Q6uuDG/fTIn+4TXdeAobfQxkmxMiW0=";
  };

  nativeBuildInputs = [
@@ -68,7 +68,7 @@ stdenv.mkDerivation rec {

  meta = with lib; {
    description = "Switchboard About Plug";
    homepage = "https://github.com/elementary/switchboard-plug-about";
    homepage = "https://github.com/elementary/settings-system";
    license = licenses.gpl3Plus;
    platforms = platforms.linux;
    teams = [ teams.pantheon ];
Loading