topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday November 6, 2025, 12:11 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Recent Posts

Pages: prev1 ... 4 5 6 7 8 [9] 10 11 12 13 14 ... 46next
201
General Software Discussion / Re: Solid, command-line file encryption tool?
« Last post by AbteriX on February 26, 2012, 02:43 PM »
I have known a few but never used, and forgot them all at the moment.

One i still have in my collection is this, maybe it is from interest?
Can only say it have worked with some small test files... but nothing more.

Code: Text [Select]
  1. MySecret Blowfish Encryption Utility
  2.  
  3. Version 3.1.1 Released 9 June 2007.
  4.  
  5. TO INSTALL
  6.  
  7.     1. Copy the file MYSECRET.EXE into a directory on your PC's path,
  8.        e.g. C:\Windows or C:\WINNT
  9.     2. That's it!
  10.    
  11. SYNTAX
  12.  
  13. Usage: MySecret [OPTIONS] [-p password] [[-i] infile [[-o] outfile]]
  14. OPTIONS:
  15. -?|-h display this Help
  16. -e|-d force Encrypt/Decrypt
  17. -n do Not ask to confirm password
  18. -w Warn before overwriting existing outfile
  19. -2 use v2.0 algorithm (no compression)
  20. -@ use stdin/stdout pipes if in/outfile not given
  21. -L display licence conditions
  22. EXAMPLES:
  23. MySecret                (=clipboard-mode, prompts for password)
  24. MySecret -p "my pass phrase"
  25. MySecret infile outfile (=file-mode)
  26. MySecret -@ infile      (output to stdout)
  27. MySecret -@ -o outfile  (input from stdin)
  28. MySecret -@             (input from stdin/output to stdout)
  29. For more information go to <http://www.di-mgt.com.au/mysecret.html>



The encrypted file is BASE64 encoded
Code: Text [Select]
  1. -----BEGIN MYSECRET-----
  2. TVn8AJd6uSAqarO1xZh78NUQWMXXfNb+F0K0yYmijYjf//JOmY8ecQUCJmh9
  3. b1hIVJKjdUad8FtsdjGGsAJ5whHh71ajI492oIH/OeHBM+LyMRS8qB80EqPa
  4. FQ6VxgXsOmV3B7LBKYyVKRcUL+Czwwj9PQL/dbFVcumqK/ppaU3pfTVVfzbU
  5. urKDVtqVMcBxbEe8F4LRC7K23PB7l1M3aO/oZaRxCiPznmFj9HiSnenHiajc
  6. InDb7n5F1v40Abx8XyL9a6yRhRWHbEWMvDJYc1UjEqu3wp+oJccdTpSERBfT




There is even an script to use it from XYplorer;
Code: Javascript [Select]
  1. /*
  2. ===================================================================================
  3. INSTRUCTIONS
  4.  Download the latest version of MySecret.zip (47 kB) from http://www.di-mgt.com.au/mysecret.html
  5.  Unzip the MySecret.zip into an folder, e.g. into "<xypath>\Tools\MySecret\..."
  6.  Save this script e.g. as "MySecret.xys" into "<xypath>\Scripts\..." folder
  7. USING
  8.  Select one file
  9.  Launch this script, e.g. from menu "Scripting > Load Script File... > MySecret.xys"
  10.  From the dialog choose "Encrypt" [or "Decrypt"]
  11.  The resulting output is encrypted and encoded using base64 encoding, ready to mail it.
  12. ===================================================================================
  13. */
  14.  
  15.  
  16. "Encrypt"
  17.  // creates an new, encrypted file with additional 'mys' extension:
  18.  $pas1 = Input("MySecret EnCrypt","Enter your password for ""<curname>"":");
  19.  $pass = Input('Confirm','Re-type your password:');
  20.  end ("$pas1" != "$pass"), "Password did not match";
  21.   run "<xypath>\Tools\MySecret\MySecret.exe -w -e -p $pass -i ""<curitem>"" -o ""<curitem>.mys""";
  22. //===============================
  23.  
  24.  
  25.  
  26. "Decrypt"
  27.  // creates an new, decrypted file and removes the 'mys' extension:
  28.  $pass = Input("MySecret DeCrypt","Enter your password for ""<curname>"":");
  29.   run "<xypath>\Tools\MySecret\MySecret.exe -d -w -p $pass -i ""<curitem>"" -o ""<curpath>\<curbase>""";
  30. //===============================
  31.  
  32.  
  33.  
  34.  
  35. "Readme"
  36.  sub "_readme";
  37. //===============================
  38.  
  39.  
  40.  
  41. -
  42.  
  43. "Edit this &script : edit"
  44.    self $ScriptFile, file;
  45.    OpenWith "<xypath>\Tools\NotePad2\Notepad2.exe", ,$ScriptFile;
  46. //===============================  
  47.  
  48.  
  49.  
  50. "_readme"
  51.  text <<<TEXT
  52. MySecret Blowfish Encryption Utility
  53. Version 3.1.1 Released 9 June 2007.
  54.  
  55. Works fine for file size till ~5MB.
  56. Decodeing an file with e.g. 25MB takes a few minutes.
  57.  
  58. TO INSTALL
  59.     1. Copy the file MYSECRET.EXE into a directory on your PC's path,
  60.       e.g. C:\Windows or C:\WINNT
  61.    2. That's it!
  62.    
  63. SYNTAX
  64. Usage: MySecret [OPTIONS] [-p password] [[-i] infile [[-o] outfile]]
  65. OPTIONS:
  66. -?|-h display this Help
  67. -e|-d force Encrypt/Decrypt
  68. -n do Not ask to confirm password
  69. -w Warn before overwriting existing outfile
  70. -2 use v2.0 algorithm (no compression)
  71. -@ use stdin/stdout pipes if in/outfile not given
  72. -L display licence conditions
  73. EXAMPLES:
  74. MySecret                (=clipboard-mode, prompts for password)
  75. MySecret -p "my pass phrase"
  76. MySecret infile outfile (=file-mode)
  77. MySecret -@ infile      (output to stdout)
  78. MySecret -@ -o outfile  (input from stdin)
  79. MySecret -@             (input from stdin/output to stdout)
  80. For more information go to <http://www.di-mgt.com.au/mysecret.html>
  81.  
  82. TERMS AND CONDITIONS
  83.  
  84. MySecret is copyright (C) 2002-7 DI Management Services Pty Ltd, all rights
  85. reserved. MySecret is freeware. Install and use entirely at your own risk.
  86.  
  87. Read more at http://www.di-mgt.com.au/mysecret.html
  88.  
  89. TEXT;
  90. //===============================<EOF>
202
Found Deals and Discounts / Re: gaotd - XYplorer 10.80 2/6/12
« Last post by AbteriX on February 07, 2012, 09:57 AM »
The XYPlorer that is being given away is portable and nothing is written to the registry except uninstall info, which means once you have installed it, back up the folder and use that to "reinstall" it.

Due to the settings in the "startup.ini", the "Xyplorer Appdata folder" is located under your profile folder. (Vista/Win7 issue)
See Xyplorer > "Help > Various Information" for the paths.

So is your XYplorer.ini with the license stored in that appdata folder too.

But you can rename those "startup.ini" to e.g. "startup.ini.txt" and XYplorer will store all settings
under an "Data" sub-folder of the XYplorer main folder (where the XYplorer.exe is)



If you already have configure your XY:
You may want to move the XYplorer-folder from your profile
to the XYplorer main folder (where the XYplorer.exe is) and rename it to "Data". (Or if Data exists already, merge them)

Now XYplorer 10.80 is fully portable and can be copied and used for ever.


Note: of course the data folder must be writeable. This is not true on Vista/Win7 on default installation to Program Files.
But you can copy the now complete XYplorer folder to an partition (or USB Thump-Drive) where you have write access.
Or, if you want to have it still under Program Files, right click the XYplorer folder, chose Properties and Security
and modify the settings to give "MODIFY" rights to the group "USERS". Now this folder is writeable too.


http://www.giveawayo...orer1080/#more-29215
UAC made it necessary to put *by default* the writable part of the configuration to some writable folder,
i.e. under “C:\Users\{myself}\AppData\Roaming\XYplorer”.

However, this default can easily be changed: Open “Startup.ini” (where XYplorer.exe is) and edit the path you see there.
Or simply delete “Startup.ini” in which case the application data path defaults to the subfolder “Data” right under the application folder.
Of course, this folder must be writable. With the latter setup you just copy the application folder with all contents to any stick or whatever
and all your settings travel with you and nothing is written to the host system. 100% portable and stealth.

Don (XY Dev)
Comment by Don — February 6th, 2012 at 5:41 am
-Comment 42


To make it more clear:
The data folder and the XYplorer.ini must be writeable.
If you install XYplorer to default Program Files on Vista/Win7 you are not allowed to write to that folder later when you use XYplorer (Windows issue)
Therefore the setup stores the XYplorer Data -folder to your profile and write that path into the startup.ini, so XYplorer knows where the data and the ini file is stored.

So you have now:
Program Files\XYplorer\
Program Files\XYplorer\XYplorer.exe
Program Files\XYplorer\XYplorer.chm

and so on...
AND
<your profile>\xyz\XYplorer
<your profile>\xyz\XYplorer\Catalogs
<your profile>\xyz\XYplorer\Panes
<your profile>\xyz\XYplorer\Scripts
<your profile>\xyz\XYplorer\XYplorer.ini

and so on...

You can check "Help > Various Information" for the current used paths.


If you delete/rename/modify the startup.ini
you can have all XY data files in an Data sub-folder of your "Program Files\XYplorer\" directory.
For example:
Program Files\XYplorer\
Program Files\XYplorer\Data\Catalogs
Program Files\XYplorer\Data\Panes
Program Files\XYplorer\Data\Scripts
Program Files\XYplorer\Data\XYplorer.ini

Program Files\XYplorer\XYplorer.exe
Program Files\XYplorer\XYplorer.chm

and so on...

XYplorer will create that Data folder and all content for you at next XYplorer start.
But then you have an fresh/virgin setup and you don't have the GOTD license.
Therefore you can do the following:
* delete/rename/modify the startup.ini
* copy the whole "XYplorer" folder from "<your profile>\xyz\" to "Program Files\XYplorer\"
* rename "Program Files\XYplorer\XYplorer"  to  "Program Files\XYplorer\Data"
* Done. Launch XYplorer, do some work, exit with saving, check the modify time stamp
   of the "Program Files\XYplorer\Data\XYplorer.ini", it should be recent.

Now you have all (executable AND Data with ini file) in one single folder which you can copy to any place you want.

Here the same in other words > http://www.xyplorer....faq-topic.php?id=usb



Extra tip: make an ZIP archive from that whole, fresh "Program Files\XYplorer\" folder and store that at an save place for later.


If you have any questions meet us at the XYplorer forum  > http://www.xyplorer.com/xyfc/index.php
(Please mention that you use the GOTD version, so we can give the right advices.)

Maybe i can answer some questions here too.

But in the XYplorer forum you will find many tips and tricks to get out the most of your new file manager pet, e.g.:
Like a new feature? Say thanks here
Cool Usage Tips (CUT)
Link to an Scripting How-to in the first post

Here is an always growing features list >> http://www.xyplorer.com/features.php
You may also want to take The Tour >>>> http://www.xyplorer.com/tour/index.php
203
Just in case someone don't know activAid - A GUI for AutoHotkey

ac’tivAid provides a collection of autohotkey scripts that enhances Windows with useful functions,
some of which you may recognize from other operating systems. The tool itself works like a platform
with a graphical user interface (GUI), to which you can add a custom selection of scripts.
http://www.makeuseof...-scripts-activaid-2/

https://www.donation...ex.php?topic=18224.0


http://www.heise.de/...ivaid/htm/readme.htm


204
Screenshot Captor / Re: Screenshot Captor Splice Tool
« Last post by AbteriX on January 21, 2012, 11:52 AM »
M> New Splice effect teaser:
M> the fact that you can easily SPLICE OUT regions and have the ragged effect in the spliced-out region,

That looks great  :-*  :Thmbsup:
205
Living Room / Re: 2012 WARNING! I'm here and... cough... gack... ZAP! Argh!!!
« Last post by AbteriX on December 31, 2011, 05:06 PM »
I'am in 2012 now too.
Happy new year to all.


For Those About to Rock (We Salute You)  :Thmbsup:
206
can I use SC to add a THICK white border around an image?

At least with 'Resize Image... (Ctrl+G)  >>  Add border of size[ 55] '


ScreenshotCaptor_AddBIGBorder_16c.png
207
Abterix: You have suggested using Regular Expressions, however, I only have the vaguest idea as to what a regular expression is and how it works.
Just google for 'regular expression wiki'

To use it I would guess I would have to have some software installed (you mention EmEditor & HippoEDIT which no doubt I would have to buy and learn how to use).
Not necessary, PSPad can do it also and is freeware.

But an dedicated app would be much more nifty of course.

BTW, our DonationCoder "Clipboard Help and Spell" can do it as well:
(here with an additional feature idea: 'split long lines without punctuation too at char number n' )

Clipboard Help and Spell - RegEx use2b.png
208
You can do that by regular expression f.ex.

FROM:
I need to be able to separate text at any specified punctuation mark onto it's own line and then insert a blank line between it and the next separation.  If this can be done simply (I only use a computer, I have no idea of how they do what they do).  I assume this can be done via something like the find & replace box.  I would be happy to make a decent donation if anyone can devise a way of doing this (and tell me how to use it).

TO:
I need to be able to separate text at any specified punctuation mark onto it's own line and then insert a blank line between it and the next separation.
If this can be done simply (I only use a computer,
I have no idea of how they do what they do).
I assume this can be done via something like the find & replace box.
I would be happy to make a decent donation if anyone can devise a way of doing this (and tell me how to use it)

USE:
[X] Regular Expression

Search for: (.+?)(\.|,)\s*

With EmEditor replace with \1\2\n
With HippoEDIT replace with $1$2\n


Explanation:
(.+?) means: search one-or-more of any sign, non-greedy, and store that in group no. 1
(\.|,) means: search an literal dot "\."  OR an coma, and store that in group no. 2
\s* means: match none-or-more space(s), we don't store that match but drop them (if any)

Then we replace with what is in group 1 by using \1 or $1, that's the matched sentence.
Then we replace with what is in group 2 by using  \2 or $2, that's the matched punctuation mark.
Then we add an line break or two by using \n

Please note that this may not work like that with all editors. The regex implementation is slightly different between different editors.


To get what you want:
I need to be able to separate text at any specified punctuation mark onto it's own line and then insert a blank line between it and the next separation.

If this can be done simply (I only use a computer,

I have no idea of how they do what they do).

I assume this can be done via something like the find & replace box.

I would be happy to make a decent donation if anyone can devise a way of doing this (and tell me how to use it)


just USE two '\n'




HTH?  :D
209
Found Deals and Discounts / Xara Xtreme 5 -- Magix Photo & Graphic Designer 5 FREE
« Last post by AbteriX on November 08, 2011, 03:17 PM »
Magix Photo & Graphic Designer 5 silver till 24. Nov. 2011 for free

http://www.magix.com/?id=9192&L=52


"Photo & Graphic Designer 5 can be used free for 7 days. Register after 7 days and you will be able use the product unlimited for free.",

Install, run, go online, register, receive code, un-lock.

Of course they want your e-mail address to send you promotions. But i have two of them.




Download 360 MB
Install ca. 550 MB

Choose  "Custom" during setup if you would like to disable ASK Toolbar (incl. ASK as Browser Search Provider, ASK.com as Homepage)


Setup will unpack to %temp%  and install:
Windows Installer 3.1
Microsoft Visual C++ 2005 Redistributable
Microsoft Visual C++ 2008 Redistributable
Microsoft Windows Media Video 9 VCM
MSXML 4.0 SP3 Parser
MSXML 6.0 Parser
Firebird SQL Server
MAGIX Photo Manager 10
MAGIX Screenshare
MAGIX Online Print Service
MAGIX Photo & Grafik Designer 5 (silver)

If you don't need this addons, go to unpack folder and delete this folders before installing:
%temp%\mgxpzw08o9d4d\addon\Ask
%temp%\mgxpzw08o9d4d\addon\mos_msi (MAGIX Online Print Service)
%temp%\mgxpzw08o9d4d\addon\PhotoManager_MSI
%temp%\mgxpzw08o9d4d\addon\Screenshare_MSI
(You will see message that something is not found during setup, but will still install)


You can also use UniExtract and then delete that folders and then start the setup  by hand:
\mgxpzw08o9d4d\product\Xtreme_Foto_Grafik_Designer_5_Silver_en-GB_setup.exe

Or de-install this addons after the installation from control panel.


This is Xara Xtreme 5 and all works fine till now.




Software will be Hardware Footprint activated
From license_en-GB.txt:
you will receive an individual serial number
tailored for your CPU or your desktop
which you have to enter during installation.
With the serial number you can activate the software up to three times if this is necessary due to hardware/CPU exchange.
After this, MAGIX will make new activation codes available for your new CPU/hardware upon request.
So you can't reuse the same key on your second pc.


.
210
I'd also suggest we leave off the topic at this point. 

Too late  :-\
211
Don't miss Tools > Sort > Sort...

Little AWK with GUI  :)
212
Thanks rjbull  :Thmbsup:


TED Notepad FAQ
New version: Did you say beta and stable in one sentence? Is it safe?
Version 6.0.1 is classified as beta mainly because its documentation is not finished yet.

As to the stability, the software has been intensively tested for a few months already.
Three types of tests verified its stability so far:

    * Group of testers — about a hundred of volunteers.
    * Covering regression tests — verifying anticipated results of features.
    * Extensive fuzzy tests — verifying stability of features.



at length:  ((or how do i say in english: i waited for this and finally it is there? In german it is: "endlich"))

Does TED Notepad support regular expressions while searching?
Yes, since version 6.0.

TED Notepad features a perl-like syntax: \b[A-Z0-9._%+-]+@(?:[A-Z0-9-]+\.)+[A-Z]{2,}\b
213
*bump* Just an reminder at the deadline (see first post above)

As far as i understood:

If you have bought v8 or earlier you have to register till 31. Oct. your license to be allowed to get free upgrades. If you not register you have to pay again.

If you have already version 9 or newer or if you want to buy now till 31. Oct. you will get free upgrades as long as anyhow possible (an quasi lifetime license)

If you buy after 31. Oct. you will get a version license "only" and you have to pay again for upgrades.


But read yourself: > http://www.emeditor....icle.php?storyid=101
214
That are date files? No system?  Which OS?

Try this:

- Right click the top folder -> Properties
- Security -> Advanced -> Edit...
- Change Owner too: >>> YOU  (or administrators if you are an admin)
-> [X] Replace owner on subcontainers and objects
- OK , OK, OK -> Close Properties

- Right click the top folder -> Properties
- Security -> Edit...
- Select YOU -> [X] Full control



Perhaps we have to go via Advanced again, -> Change Permissions... -> YOU Full Control and "[X] Replace all child..." too
215
Living Room / Re: Sansa Clip Zip: Wow!
« Last post by AbteriX on October 16, 2011, 03:55 PM »
Thanks for that review.
I also have the need for an small player, but after two bad buys (cheap ones) i was afraid of buying an another one.

216
*bump* Just an reminder at the deadline (see first post above)

 (or for that fellows who were on vacation in July  :P )
217
General Software Discussion / Re: looking for a [i]single[/i] pane file manager
« Last post by AbteriX on August 24, 2011, 03:36 PM »
here are two more

But no "customisable toolbar"

.
218
General Software Discussion / Re: looking for a [i]single[/i] pane file manager
« Last post by AbteriX on August 24, 2011, 02:28 PM »
Maybe some clarification:

TC:
you can move the splitter to the far right to get single pane mode, (and enable an tree on the left,)
and then execute "Save position" to make this persistent. (i use an extended menu which have this feature at hand,
but you can also execute it via the TC own command line: cm_ConfigSavePos )


XY:
come as single pane as default. You can enable dual pane via menu.
219
Hey! That realy rocks!  :Thmbsup:

I know that feature to use your editor to modify an edit box from an firefox plugin
and the multiple choice of editors from Total Commander, but this edit text anywhere is great.
I just try it with XYplorer run script dialog to have better edit features.


Thanks for sharing.

How does this works? Some kind of DDE? SendMessage?

Also thanks to fenixproductions for BBCeditor, at last i took the change to try it out and saw this is an great helper too  :Thmbsup:
220
Found Deals and Discounts / BitsDuJour - TeraCopy Pro 2.2 - 50 % OFF $11.00
« Last post by AbteriX on July 15, 2011, 03:00 AM »
Fr. 15. July 2011

TeraCopy Pro 2.2
2K/XP/Vista/7/x64


50 % OFF $11.00
RETAIL $22.00

http://www.bitsdujou...m/software/teracopy/

http://www.codesector.com/teracopy.php

License:

Product may be used indefinitely after purchase. Licensed per user for concurrent use, allowing transfer of a license to another owned computer.
License activation isn't required. Free upgrades for life. Support for 12 months. 30 days return policy.


Some comments from BitsDuJour:


not being update it since September 2010

- If you look into the TerraCopy Bug Tracker at his Website: "Jeff Freeman was last active 7 months ago"
- There is no change-log available for 2.2 .
- There is no user forum (any more?) for TerraCopy.

Sorry, but releasing a new Version at the same day as the Promo, but not in the 10 Month beta stage before?
Does not seem very active and alive to me.




Jeff Freeman: Final v2.2 with 30+ languages here > http://www.codesecto...files/teracopy22.exe

TeraCopy Change Log
Version 2.2 RC
Fixed: mounted volumes detection when choosing same/different devices mode.

The 2.2 version is the RC + 30 languages and a few bug fixes.
221
As an example of its power, is there any other file manager that can do what ZTW's CTRL+B command can do?
Please note that you can do such things with XYplorer too. You can even do it your own way >>>> XYplorer Batch Maker
222
Found Deals and Discounts / BitsDuJour - UltraEdit (Windows v17) $29.95
« Last post by AbteriX on June 29, 2011, 03:11 AM »
,

If YOU want to use this thread and do an repost, be sure to enter your own subject.
223
Found Deals and Discounts / BitsDuJour - Collection thread 2011
« Last post by AbteriX on June 29, 2011, 03:10 AM »
UltraEdit (Windows Version)

29. Juni 2011, deal expires after 22:56:42 hours

50 %OFF => $29.95 (RETAIL $59.95)

30 US$ = 20,84 Euro today


Please note folks: this BDJ-exclusive UltraEdit license includes
maintenance and updates through the current version (v17) only.


EDIT:

- The promo pricing applies to a new, standard license
- This is for the desktop version of UltraEdit, not the USB version
- The license will include all hotfixes and updates for v17 at no extra charge

Policy
Product may be used indefinitely after purchase. Licensed per user for non-concurrent use only,
allowing transfer of a license to another owned computer. Online license activation is required with
a hardware footprint, and 3 installations per footprint. Free upgrades for minor versions, paid upgrade
with 50% discounts to future versions for all purchasers. Support for minor versions. No return policy.



 :o Online license activation is required with a hardware footprint, and 3 installations per footprint.  :'(   :down: :down: :down:
No, thanks!
I used to use my editor on several (test) computers, today this, tomorrow that.
And i don't like that Online activation at all. I buy and want to use. Thats all.
There are better onces. I will stay with HippoEDIT >>> https://www.donation....msg181895#msg181895
224
General Software Discussion / Re: Finally started really using Template.ahk
« Last post by AbteriX on June 24, 2011, 01:28 AM »
Good idea  :Thmbsup:
225
General Software Discussion / IrfanView Version 4.30 released
« Last post by AbteriX on June 21, 2011, 01:14 AM »
Version 4.30 (Release date: 2011-06-20)
Faster JPG loading! (Thanks to D. R. Commander for Turbo-JPG)
New Paste options: Paste on left/right/top/bottom (Edit->Paste Special)
(see also the new option: Properties->Editing->Fit clipboard image)
Changes in Open/Save dialogs (Recent folders box, View mode is remembered)
Menu "File->Recent directories" removed (MRUDs are now in the Open dialog)
New options in Canvas Size dialog
EXIF + IPTC PlugIns merged into Metadata-Plugin
New option in JPG IPTC/Comment dialogs: Allow placeholders
New option in JPG IPTC dialog: Batch editing (if started from Thumbnails)
New options in Capture dialog (send to Clipboard, Printer, new name patterns)
Option to show Alpha channel for TIF/PNG/TGA files (menu: Image->Show channel)
Option to show TIF alpha/transparency (for 32 bit RGBA images, Properties->Viewing)
Added basic support for EXIF saving from Digi-Cam RAW formats to JPG
The Effects dialog can be resized/maximized
AltaLux Effect/PlugIn added (Image->Effects menu, Thanks to Stefano Tommesani)
Option to set a tolerance value for "Auto crop borders" (Properties->Editing)
New Advanced-Batch dialog: Crop width/height can be negative (crop from end)
New option in batch rename dialog: Remember last rename counter
Support for MPO format (Multi Picture Object, first 2 images can be loaded)
Support for GLCD format (Formats PlugIn)
DEL key now allowed in slideshow mode: delete current file
New hotkeys: SHIFT + 1-3: Start external editor 1-3
New hotkey: SHIFT + "." (point): Toggle slideshow modes: random <-> automatic
Several PlugIns are changed/updated, please install the newest versions
http://www.irfanview.com/plugins.htm
Some minor bugs fixed (ALT+F4)
Pages: prev1 ... 4 5 6 7 8 [9] 10 11 12 13 14 ... 46next