Feed Advanced Search

Dec 21 2018

vanini committed R548:82d06c9da595: Fix Package::supportedUntil never getting the date (authored by vanini).
Fix Package::supportedUntil never getting the date
Dec 21 2018, 8:19 PM
vanini closed D13662: Fix Package::supportedUntil never getting the date.
Dec 21 2018, 8:19 PM

Oct 28 2018

vanini updated the diff for D13662: Fix Package::supportedUntil never getting the date.

Parse column headers to get location

Oct 28 2018, 2:25 PM

Sep 26 2018

vanini updated the summary of D13662: Fix Package::supportedUntil never getting the date.
Sep 26 2018, 9:16 AM
vanini updated the diff for D13662: Fix Package::supportedUntil never getting the date.
  • split code for getting the date form two different sources
  • use os-release instead of lsb-release to get distribution id and codename
Sep 26 2018, 9:03 AM

Sep 24 2018

vanini committed R550:8453986756bf: use QProcess instead of KProcess (authored by vanini).
use QProcess instead of KProcess
Sep 24 2018, 5:19 PM
vanini closed D14790: use QProcess instead of KProcess.
Sep 24 2018, 5:19 PM
This is a test notification, sent at Mon, Sep 24, 7:06 PM.
Sep 24 2018, 5:06 PM
vanini committed R548:76e457b0d506: Forward declare QtDBus classes (authored by jriddell).
Forward declare QtDBus classes
Sep 24 2018, 12:57 PM
vanini closed D15505: Forward declare QtDBus classes.
Sep 24 2018, 12:57 PM

Sep 13 2018

vanini added inline comments to D13662: Fix Package::supportedUntil never getting the date.
Sep 13 2018, 6:31 PM

Aug 30 2018

vanini updated the diff for D13662: Fix Package::supportedUntil never getting the date.

Keep the release date cached in the backend

Aug 30 2018, 11:21 AM

Aug 13 2018

vanini committed R550:8e18f65b8b7a: Prefer software-properties-qt instead of -kde (authored by vanini).
Prefer software-properties-qt instead of -kde
Aug 13 2018, 3:43 PM
vanini closed D14788: Prefer software-properties-qt instead of -kde.
Aug 13 2018, 3:43 PM
vanini updated the diff for D14790: use QProcess instead of KProcess.
  • pointer syntax
  • Require Qt 5.7
  • set forwarded channels on the processes
Aug 13 2018, 3:38 PM
vanini added a comment to D14790: use QProcess instead of KProcess.

I added a paragraph in the message box because, apparently, KMessageBox only wraps rich text when it it wider than 50% of the screen, which looks terrible on a wide screen.

Aug 13 2018, 12:17 PM
vanini requested review of D14790: use QProcess instead of KProcess.
Aug 13 2018, 12:14 PM
vanini requested review of D14788: Prefer software-properties-qt instead of -kde.
Aug 13 2018, 12:04 PM

Jun 30 2018

vanini added a comment to D13662: Fix Package::supportedUntil never getting the date.
  • Open Muon (in Ubuntu)
  • Look at the description of a supported package, e.g. accountsservice, acct, acl.
  • The last line in the description says:

Canonical provides critical updates for acct until Donnerstag, 27. April 2023.

This patch brings back the date, which was missing.

Jun 30 2018, 12:02 PM

Jun 21 2018

vanini added a comment to D13662: Fix Package::supportedUntil never getting the date.

This might look hacky, skipping two lines, but the alternative would be:

     // read the relase file
-    FileFd fd(releaseFile.toStdString(), FileFd::ReadOnly);
+    // This is what apt-pkg does in debReleaseIndex::Load(), but we are
+    // interested only in the Date field here.
+    FileFd fd;
+    if (!OpenMaybeClearSignedFile(releaseFile.toStdString(), fd)) {
+        return QDateTime();
+    }
     pkgTagFile tag(&fd);
Jun 21 2018, 3:49 PM
vanini requested review of D13662: Fix Package::supportedUntil never getting the date.
Jun 21 2018, 3:48 PM

Jun 19 2018

vanini committed R550:77ed2222f8b1: Fix sort indicator for package name column (authored by vanini).
Fix sort indicator for package name column
Jun 19 2018, 1:11 PM
vanini committed R550:6d109d77e30d: show installed size for all packages (authored by vanini).
show installed size for all packages
Jun 19 2018, 12:24 PM
vanini closed D13419: show installed size for all packages.
Jun 19 2018, 12:24 PM
vanini committed R548:3c5414700010: add package installedSize (authored by vanini).
add package installedSize
Jun 19 2018, 12:16 PM
vanini closed D13600: add package installedSize.
Jun 19 2018, 12:16 PM
vanini updated the diff for D13419: show installed size for all packages.
  • update with new function in QApt::Package
Jun 19 2018, 10:02 AM
vanini added a reviewer for D13600: add package installedSize: sitter.

@sitter as for your comment on D13419, this patch adds the convenience function you mention.

Jun 19 2018, 9:48 AM
vanini requested review of D13600: add package installedSize.
Jun 19 2018, 9:42 AM
vanini committed R550:c3fe8f7ceb66: enable sorting by version and installed size (authored by vanini).
enable sorting by version and installed size
Jun 19 2018, 9:12 AM
vanini closed D13412: enable sorting by version and installed size.
Jun 19 2018, 9:12 AM

Jun 8 2018

vanini committed R550:ec14a8f27dc2: fix sort by status or requested change (authored by vanini).
fix sort by status or requested change
Jun 8 2018, 11:50 AM
vanini closed D13417: fix sort by status or requested change.
Jun 8 2018, 11:50 AM

Jun 7 2018

vanini added a dependent revision for D13412: enable sorting by version and installed size: D13419: show installed size for all packages.
Jun 7 2018, 8:03 PM
vanini requested review of D13419: show installed size for all packages.
Jun 7 2018, 8:03 PM
vanini retitled D13417: fix sort by status or requested change from Summary: fix sort by status or requested change to fix sort by status or requested change.
Jun 7 2018, 7:54 PM
vanini retitled D13412: enable sorting by version and installed size from Summary: enable sorting by version and installed size to enable sorting by version and installed size.
Jun 7 2018, 7:53 PM
vanini requested review of D13417: fix sort by status or requested change.
Jun 7 2018, 7:10 PM
vanini requested review of D13412: enable sorting by version and installed size.
Jun 7 2018, 5:44 PM

Apr 4 2018

vanini accepted D11865: Remove X-DocPath from org.kde.muon.desktop.
Apr 4 2018, 1:38 PM

Mar 19 2018

vanini committed R550:bc86cd0f40d4: Change version number to 5.8.0 (authored by vanini).
Change version number to 5.8.0
Mar 19 2018, 7:11 PM

Mar 15 2018

vanini committed R548:acedfeeddaa9: Change version number to 3.0.4 (authored by vanini).
Change version number to 3.0.4
Mar 15 2018, 5:25 PM

Mar 14 2018

vanini committed R550:02b64d3db277: Lazily refresh the details tabs (authored by vanini).
Lazily refresh the details tabs
Mar 14 2018, 6:11 PM
vanini closed D11206: Lazily refresh the details tabs.
Mar 14 2018, 6:11 PM
vanini committed R550:4f8476c11819: Summary: emit currentPackageChanged just once (authored by vanini).
Summary: emit currentPackageChanged just once
Mar 14 2018, 5:57 PM
vanini closed D11152: Summary: emit currentPackageChanged just once.
Mar 14 2018, 5:57 PM

Mar 10 2018

vanini requested review of D11206: Lazily refresh the details tabs.
Mar 10 2018, 11:53 AM

Mar 8 2018

vanini requested review of D11152: Summary: emit currentPackageChanged just once.
Mar 8 2018, 2:24 PM

Mar 7 2018

vanini committed R550:7a1826f19558: Get the right number of selected packages (authored by vanini).
Get the right number of selected packages
Mar 7 2018, 5:19 PM
vanini closed D10877: Get the right number of selected packages.
Mar 7 2018, 5:19 PM
vanini committed R550:968a0d70bd92: Add AppStream metadata (authored by vanini).
Add AppStream metadata
Mar 7 2018, 11:18 AM
vanini closed D11052: Add AppStream metadata.
Mar 7 2018, 11:18 AM
vanini committed R550:ee62b9731878: Fix name of desktop file (authored by vanini).
Fix name of desktop file
Mar 7 2018, 11:15 AM
vanini closed D10886: Fix name of desktop file.
Mar 7 2018, 11:15 AM

Mar 6 2018

vanini updated the diff for D11052: Add AppStream metadata.

drop categories

Mar 6 2018, 2:06 PM
vanini added a comment to D11052: Add AppStream metadata.

I also modified the template in the wiki page with the suggested changes. I hope that's fine.
https://community.kde.org/Guidelines_and_HOWTOs/AppStream

Mar 6 2018, 2:05 PM
vanini updated the diff for D11052: Add AppStream metadata.

apply suggested changes

Mar 6 2018, 1:59 PM
vanini added inline comments to D10877: Get the right number of selected packages.
Mar 6 2018, 1:09 PM
vanini updated the diff for D10877: Get the right number of selected packages.

apply suggested fixes

Mar 6 2018, 1:07 PM

Mar 5 2018

vanini added inline comments to D11052: Add AppStream metadata.
Mar 5 2018, 1:32 PM
vanini requested review of D11052: Add AppStream metadata.
Mar 5 2018, 12:04 PM

Mar 2 2018

vanini committed R234:5898a1792d08: Add Muon screenshot (authored by vanini).
Add Muon screenshot
Mar 2 2018, 9:34 PM

Feb 27 2018

vanini requested review of D10886: Fix name of desktop file.
Feb 27 2018, 1:03 PM

Feb 26 2018

vanini updated the diff for D10877: Get the right number of selected packages.

remove comment left over

Feb 26 2018, 11:19 PM
vanini requested review of D10877: Get the right number of selected packages.
Feb 26 2018, 10:47 PM

Feb 22 2018

vanini committed R550:7f2d6c64c945: Show xapian update progress when it changes (authored by vanini).
Show xapian update progress when it changes
Feb 22 2018, 10:08 AM
vanini closed D10717: Show xapian update progress when it changes.
Feb 22 2018, 10:08 AM
vanini committed R548:e4f2a1f79741: Do not check status file for timestamp (authored by vanini).
Do not check status file for timestamp
Feb 22 2018, 9:28 AM
vanini closed D10715: Do not check status file for timestamp.
Feb 22 2018, 9:28 AM

Feb 21 2018

vanini requested review of D10717: Show xapian update progress when it changes.
Feb 21 2018, 2:49 PM
vanini committed R550:c4e20feedc48: Remove ReviewBoard config and add arcanist (authored by vanini).
Remove ReviewBoard config and add arcanist
Feb 21 2018, 2:28 PM
vanini added a comment to D10715: Do not check status file for timestamp.

Git tells that the check was introduced in e70a781e (2010-09-25)
"Also check to see if the dpkg status file is newer than the xapian index, so that we can catch new packages installed directly via dpkg"

Feb 21 2018, 1:56 PM
vanini requested review of D10715: Do not check status file for timestamp.
Feb 21 2018, 1:54 PM

Feb 20 2018

vanini committed R548:925a86afe3a5: Fix Changelog URL (authored by vanini).
Fix Changelog URL
Feb 20 2018, 2:23 PM
vanini closed D10656: Fix Changelog URL.
Feb 20 2018, 2:23 PM
vanini added a comment to D10656: Fix Changelog URL.

On my system (Ubuntu 17.10 artful) the apt package ships with /etc/apt/apt.conf.d/01-vendor-ubuntu which contains

/etc/apt/apt.conf.d/01-vendor-ubuntu
Acquire::Changelogs::AlwaysOnline "true";
Feb 20 2018, 1:47 PM
vanini updated the diff for D10656: Fix Changelog URL.
  • Filter out URIs which are not http or https
Feb 20 2018, 1:22 PM

Feb 19 2018

vanini requested review of D10656: Fix Changelog URL.
Feb 19 2018, 1:15 PM
vanini committed R548:a0fb43b54613: Remove ReviewBoard config and add arcanist (authored by vanini).
Remove ReviewBoard config and add arcanist
Feb 19 2018, 1:10 PM

Dec 15 2017

vanini accepted D9309: Support high-dpi scaling in PackageDelegate.

Works here too on Qt 5.9.1. The patch was applied by Arcanist. Even worse: I was running the wrong executable. Feeling bad.

Dec 15 2017, 12:26 PM

Dec 14 2017

vanini added a comment to D9309: Support high-dpi scaling in PackageDelegate.

Testing with QT_SCALE_FACTOR=2 still shows pixelated text to me, but if it works on a real screen I'm fine with the changes. Thanks!

Dec 14 2017, 5:58 PM