Imagine (Lister plugin for viewing img files) v. 1.5.3 (May 21 2024)

Discuss and announce Total Commander plugins, addons and other useful tools here, both their usage and their development.

Moderators: white, Hacker, petermad, Stefan2

Post Reply
User avatar
deus-ex
Power Member
Power Member
Posts: 969
Joined: 2003-02-10, 17:45 UTC

Re: Imagine (Lister plugin for viewing img files) v. 1.2.0 (Sep 30 2023)

Post by *deus-ex »

beb wrote: 2023-10-04, 17:38 UTC 2pulbitz
and how to unpack them all at once?
To achieve that you would use:

Code: Select all

upx.exe -d *.*
User avatar
petermad
Power Member
Power Member
Posts: 14913
Joined: 2003-02-05, 20:24 UTC
Location: Denmark
Contact:

Re: Imagine (Lister plugin for viewing img files) v. 1.2.0 (Sep 30 2023)

Post by *petermad »

I have uploaded the un-UPX'ed files for Imagine 1.2.0 and all plugins here: https://tcmd.madsenworld.dk/plugins/Imagine/Imagine120-un-UPXed.zip (10 MB)
License #524 (1994)
Danish Total Commander Translator
TC 11.03 32+64bit on Win XP 32bit & Win 7, 8.1 & 10 (22H2) 64bit, 'Everything' 1.5.0.1371a
TC 3.50 on Android 6 & 13
Try: TC Extended Menus | TC Languagebar | TC Dark Help | PHSM-Calendar
User avatar
Gral
Power Member
Power Member
Posts: 1474
Joined: 2005-01-26, 15:12 UTC

Re: Imagine (Lister plugin for viewing img files) v. 1.2.0 (Sep 30 2023)

Post by *Gral »

New version - 1.3.0 (Oct 05 2023)
- Added: Support for ICC Profile (Options->Preferences->Color Management)
- Fixed: Problem with the number of plugins not exceeding 16
User avatar
petermad
Power Member
Power Member
Posts: 14913
Joined: 2003-02-05, 20:24 UTC
Location: Denmark
Contact:

Re: Imagine (Lister plugin for viewing img files) v. 1.3.0 (Oct 5 2023)

Post by *petermad »

I have uploaded the un-UPX'ed files for Imagine 1.3.0 and all plugins here: https://tcmd.madsenworld.dk/plugins/Imagine/Imagine130-un-UPXed.zip (10 MB)
License #524 (1994)
Danish Total Commander Translator
TC 11.03 32+64bit on Win XP 32bit & Win 7, 8.1 & 10 (22H2) 64bit, 'Everything' 1.5.0.1371a
TC 3.50 on Android 6 & 13
Try: TC Extended Menus | TC Languagebar | TC Dark Help | PHSM-Calendar
User avatar
norfie²
Power Member
Power Member
Posts: 987
Joined: 2006-02-10, 07:27 UTC

Re: Imagine (Lister plugin for viewing img files) v. 1.3.0 (Oct 5 2023)

Post by *norfie² »

2petermad
Thank you for the un-UPXed-versions. :mrgreen:
Hint: ZIP compression "LZMA" (10 in TCmd) is better than "Deflate": 8.869.764 Bytes vs. 10.641.636 Bytes
"War is evil, in so far as it makes more bad people than it takes away."
Immanuel Kant in "Perpetual Peace"
User avatar
beb
Senior Member
Senior Member
Posts: 436
Joined: 2009-09-20, 08:03 UTC
Location: Odesa, Ukraine

Re: Imagine (Lister plugin for viewing img files) v. 1.3.0 (Oct 5 2023)

Post by *beb »

I keep all the Imagine plugins in the Imagine\Plugin folder without any further subfolders.

For that scenario, I made myself a script to extract all the upx-compressed plugins in place:

PowerShell version:

Code: Select all

$env:path += ";p:\ath\to\the\upx\binary\UPX\bin"
&upx -d plugin\*.*
pause
cmd version:

Code: Select all

set "bin=p:\ath\to\the\upx\binary\UPX\bin"
path %path%;%bin%
upx -d plugin\*.*
Alas, UPX has appeared to be pretty capricious regarding the paths of the files being processed so more advanced techniques didn't work for me, so I'm putting the script into the Imagine folder to run.

UPX binaries source: https://github.com/upx/upx/releases

By now there are 21 plugins' files (of 36 in total) that are compressed by UPX:
https://i.imgur.com/53xOcIF.png
#278521 User License
Total Commander [always the latest version, including betas] x86/x64 on Win10 x64/Android 10
User avatar
beb
Senior Member
Senior Member
Posts: 436
Joined: 2009-09-20, 08:03 UTC
Location: Odesa, Ukraine

Re: Imagine (Lister plugin for viewing img files) v. 1.3.0 (Oct 5 2023)

Post by *beb »

Yet another way to extract all the upx-compressed Imagine plugins via PowerShell script (capable of running from any user location):

Code: Select all

$env:path += ";$env:OneDrive\TEST\UPX\bin"
$imagine  = @("$env:commander_path\Plugins\app\Imagine","$env:OneDrive\TEST\TC\Plugins\app\Imagine")
foreach ($instance in $imagine) {cd $instance; &upx -d *.dll; &upx -d plugin\*.* }
pause
where:
$env:OneDrive\TEST\UPX\bin - example path to the UPX binaries;
$imagine = @("","") - sets an array of paths to all the TotalCommander/Imagine instances you have, for instance: $env:commander_path\Plugins\app\Imagine - example path to the Imagine folder under the primary/active copy of TotalCommander;
$env:OneDrive\TEST\TC\Plugins\app\Imagine - example path to the Imagine folder within the secondary/testing copy of TotalCommander.
Note: all the paths could be either literal or include [environment] variables (as in the example).

If you are using just a single copy of TotalCommander/Imagine, the script could be simplified as follows:

Code: Select all

$env:path += ";$env:OneDrive\TEST\UPX\bin"
cd "$env:commander_path\Plugins\app\Imagine"
&upx -d *.dll
&upx -d plugin\*.*
pause
Note: Use $env:commander_path internal variable to run the script under active TotalCommander, otherwise use other ways to describe the paths (either put a path without internal TotalCommander variables or a literal path, etc.).

edit:
modification to unpack Imagine.dll, Imagine64.dll as well
Last edited by beb on 2023-10-07, 19:03 UTC, edited 2 times in total.
#278521 User License
Total Commander [always the latest version, including betas] x86/x64 on Win10 x64/Android 10
User avatar
Gral
Power Member
Power Member
Posts: 1474
Joined: 2005-01-26, 15:12 UTC

Imagine (Lister plugin for viewing img files) v. 1.3.0 (Oct 07 2023)

Post by *Gral »

New version 1.3.0 (Oct 07 2023)
User avatar
petermad
Power Member
Power Member
Posts: 14913
Joined: 2003-02-05, 20:24 UTC
Location: Denmark
Contact:

Re: Imagine (Lister plugin for viewing img files) v. 1.3.0 (Oct 07 2023)

Post by *petermad »

Gral wrote: 2023-10-07, 12:58 UTC New version 1.3.0 (Oct 07 2023)

Thanks - Updated the un-UPX'ed files for Imagine 1.3.0 (Oct 7 2023) and all plugins accordingly: https://tcmd.madsenworld.dk/plugins/Imagine/Imagine130-un-UPXed.zip (10 MB)
License #524 (1994)
Danish Total Commander Translator
TC 11.03 32+64bit on Win XP 32bit & Win 7, 8.1 & 10 (22H2) 64bit, 'Everything' 1.5.0.1371a
TC 3.50 on Android 6 & 13
Try: TC Extended Menus | TC Languagebar | TC Dark Help | PHSM-Calendar
User avatar
kesdoputr
Member
Member
Posts: 168
Joined: 2007-12-27, 12:38 UTC

Re: Imagine (Lister plugin for viewing img files) v. 1.3.0 (Oct 07 2023)

Post by *kesdoputr »

petermad wrote: 2023-10-07, 15:50 UTC
Thanks - Updated the un-UPX'ed files for Imagine 1.3.0 (Oct 7 2023) and all plugins accordingly: https://tcmd.madsenworld.dk/plugins/Imagine/Imagine130-un-UPXed.zip (10 MB)
BPG plugin has an update v0.0.2 (Oct 01 2023)
User avatar
petermad
Power Member
Power Member
Posts: 14913
Joined: 2003-02-05, 20:24 UTC
Location: Denmark
Contact:

Re: Imagine (Lister plugin for viewing img files) v. 1.3.0 (Oct 7 2023)

Post by *petermad »

2kesdoputr
BPG plugin has an update v0.0.2 (Oct 01 2023)
Thanks - Updated https://tcmd.madsenworld.dk/plugins/Imagine/Imagine130-un-UPXed.zip
License #524 (1994)
Danish Total Commander Translator
TC 11.03 32+64bit on Win XP 32bit & Win 7, 8.1 & 10 (22H2) 64bit, 'Everything' 1.5.0.1371a
TC 3.50 on Android 6 & 13
Try: TC Extended Menus | TC Languagebar | TC Dark Help | PHSM-Calendar
User avatar
Gral
Power Member
Power Member
Posts: 1474
Joined: 2005-01-26, 15:12 UTC

Re: Imagine (Lister plugin for viewing img files) v. 1.3.0 (Oct 7 2023)

Post by *Gral »

Also the 64-bit HEIF plugin is not updated.
User avatar
petermad
Power Member
Power Member
Posts: 14913
Joined: 2003-02-05, 20:24 UTC
Location: Denmark
Contact:

Re: Imagine (Lister plugin for viewing img files) v. 1.3.1 (Oct 8 2023)

Post by *petermad »

Gral wrote: 2023-10-08, 12:46 UTC Also the 64-bit HEIF plugin is not updated.
Thanks - it was only the 64bit plugin that wasn't updated - fixed now.


Also, there is a new version 1.3.1 (Oct 8 2023) of the main program:
whatsnew wrote:v1.3.1, Oct 08 2023
- Fixed: Manipulating a 32-bit alpha blended image makes it 100% transparent
- Fixed: Small palette edit dialog in High-DPI environment

Updated the un-UPX'ed files for Imagine 1.3.1 (Oct 8 2023) and all plugins accordingly: https://tcmd.madsenworld.dk/plugins/Imagine/Imagine131-un-UPXed.zip (10 MB)
License #524 (1994)
Danish Total Commander Translator
TC 11.03 32+64bit on Win XP 32bit & Win 7, 8.1 & 10 (22H2) 64bit, 'Everything' 1.5.0.1371a
TC 3.50 on Android 6 & 13
Try: TC Extended Menus | TC Languagebar | TC Dark Help | PHSM-Calendar
james310
Junior Member
Junior Member
Posts: 5
Joined: 2023-08-05, 15:35 UTC

Re: Imagine (Lister plugin for viewing img files) v. 1.3.1 (Oct 8 2023)

Post by *james310 »

can't view webp files, does it need some configuration ?
updates every week is quite alot i think.

win 7 x64
User avatar
Gral
Power Member
Power Member
Posts: 1474
Joined: 2005-01-26, 15:12 UTC

Re: Imagine (Lister plugin for viewing img files) v. 1.3.1 (Oct 8 2023)

Post by *Gral »

There is a bug in older versions, look here -> viewtopic.php?p=442026#p442026
If you use version 1.2.0. or older and all plugins you really need update.
Post Reply