site  contact  subhomenews

/usr/games, .mhtml, .webp

November 13, 2024 — BarryK

The guys testing EasyOS Daedalus have discovered bugs...

Gnome-Mastermind installs an executable into /usr/games, but the .desktop file got deleted when a EasyOS version update. Forum member Caramel found the fix:

https://forum.puppylinux.com/viewtopic.php?p=135574#p135574

Forum member don570 reported that SFR's Uextract needs 'ripmime' to open .mhtml files:

https://forum.puppylinux.com/viewtopic.php?p=135648#p135648

don570 also reported that left-click on .webp image, it failed to view in gPicView, which is the default image viewer:

https://forum.puppylinux.com/viewtopic.php?p=135652#p135652

All of these are fixed, for the next release of both Scarthgap and Daedalus.   

Tags: easy

JWM window manager 2.4.7

November 10, 2024 — BarryK

I posted recently about a bug in the latest JWM:

Joe has fixed it, and Larry sent me an email that he tested it on EasyOS and the colours are now correct.

So have compile version 2.4.7 in OpenEmbedded and it will be in the next release of EasyOS.   

Tags: easy

EasyOS Daedalus-series version 6.4.3

November 08, 2024 — BarryK

See release notes here:

https://distro.ibiblio.org/easyos/amd64/releases/daedalus/2024/6.4.3/release-notes.htm

Download:

https://distro.ibiblio.org/easyos/amd64/releases/daedalus/2024/6.4.3/

Feedback is welcome at the forum:

https://forum.puppylinux.com/viewtopic.php?p=135215#p135215

The latest Scarthgap-series is version 6.4.2   

Tags: easy

Redshift/brightness tray applet fix

November 08, 2024 — BarryK

There was a recent report, that the redhsift/brightness tray applet does not "kick in" until it is clicked on. In manual mode, it does remember your selection, which is saved in /root/.rshift; however, those settings are not read until the tray icon is clicked on.

In my case, I have one laptop that has a too-bright screen. I often use this in the evening, sitting in a lounge chair, and in the lower ambient light level, the screen brightness is a bit too much. So I have set brightness a bit lower, but then have to click the tray icon every time startup the laptop.

We have a fix:

https://forum.puppylinux.com/viewtopic.php?p=135207#p135207

I have updated the PET and it will be in the next release of EasyOS.    

Tags: easy

Rox right-click run-in-terminal

November 07, 2024 — BarryK

Forum member Vverve requested this:

https://forum.puppylinux.com/viewtopic.php?p=135081#p135081

He referred to an old PET package that provided a ROX-Filer right-click menu entry "Run in terminal".

Yes, that would be nice. You can left-click on a shell script or binary executable and it will run, but sometimes you would like to run the executable in a terminal to see any console output. Yes, ROX does have the ability to open a terminal, with backtick key or a menu choice, which I use often; but then you have to type in the name of the executable that you want to run.

It is pretty easy to implement, so it is now done. Right-click on a shell script or binary executable, and there is now an offer to run it in a terminal. For example, I right-clicked on the /usr/bin/partview shell script:

img1

Choosing it, and a terminal starts. But instead of just starting the executable immediately, I have made it a bit interactive:

img2

Also, when partview terminates, the terminal window stays open, so that you can view any console output. It is required to click on the window close-box to close the terminal.

Furthermore, you have the option of entering commandline parameters:

img3

This will be very handy! This new feature is builtin and will be in the next release of Easy.

Here are the github commits:

https://github.com/bkauler/woofq/commit/4f5446b81c93965236730ccf81b873fff44dcbe3

https://github.com/bkauler/woofq/commit/fc71e9c5020c1b862bc25496326a47d09bc908d2   

Tags: easy

Syntax fix for mimeapps.list

November 07, 2024 — BarryK

/usr/share/applications/mimeapps.list is used by many applications to determine what executable to handle a particular file, for example how to open or view a PNG image. This list is generated by /usr/bin/build-rox-sendto everytime a package is installed or removed, or the SFS layers change.

Easy Scarthgap 6.4.2 has UExtract, a universal archive extractor tool. However, a problem emerged, as discussed on the forum:

https://forum.puppylinux.com/viewtopic.php?p=134984#p134984

I took out "inode/directory" and "inode/mount-point" from the "MimeType=" field in /usr/share/applications/uextract.desktop, which fixed the problem reported by bugnaw333; however, there was another problem, being that the mimeapps.list file had the wrong format.

https://github.com/bkauler/woofq/commit/8836d9758e8006ba9fe1e4117c207e211cc99199

That fixes the syntax, but doesn't automatically set a default. For example, this line in mimeapps.list:

application/pdf=uextract.desktop;evince.desktop;gimp.desktop;inkscape.desktop

...will set the first one, uextract.desktop, as the default.

ROX-Filer has it's own right-click menu mechanism and will offer a choice, but I don't know about apps that read mimeapps.list; maybe they will just use the leftmost entry instead of offering a choice. I haven't tried with KDE Dolphin for example.

Note, the correct syntax for mimeapps.list is defined here.  

Tags: easy

EasyOS Scarthgap version 6.4.2 released

November 05, 2024 — BarryK

The previous release is 6.4, announced here:

To find out what has changed, read the release notes:

https://distro.ibiblio.org/easyos/amd64/releases/scarthgap/2024/6.4.2/release-notes.htm

...very interesting new applications!

Download:

https://distro.ibiblio.org/easyos/amd64/releases/scarthgap/2024/6.4.2/

Feedback is welcome at the forum:

https://forum.puppylinux.com/viewtopic.php?p=134985#p134985    

Tags: easy

UExtract universal extractor

November 05, 2024 — BarryK

I posted yesterday about Jake's PackIt:

Jake has also created UExtract, an archive extractor, well, a tool to unpack just about anything:

https://forum.puppylinux.com/viewtopic.php?t=594

Right-click on a file, and UExtract is offered in the menu. Version 4.14 will be in the next release of Easy Scarthgap and Daedalus.

I modified the PET package somewhat, as UExtract PET as-is does not work properly in EasyOS. One problem is that Easy has /usr/bin/build-rox-sendto that manages mime-handling for ROX and other apps, and this runs automatically when packages are installed or removed. Also changed a few other things that were not relevant for Easy. PET not yet uploaded.

Have done some work on how 'build-rox-sendto' is called, as it is a bit slow; now it will be run as a separate process.   

Tags: easy