delayed shutdown windows
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 325
Class::Container 0.12
Class::Container is a Perl module with Glues object frameworks together transparently. more>>
Class::Container is a Perl module with Glues object frameworks together transparently.
SYNOPSIS
package Car;
use Class::Container;
@ISA = qw(Class::Container);
__PACKAGE__->valid_params
(
paint => {default => burgundy},
style => {default => coupe},
windshield => {isa => Glass},
radio => {isa => Audio::Device},
);
__PACKAGE__->contained_objects
(
windshield => Glass::Shatterproof,
wheel => { class => Vehicle::Wheel,
delayed => 1 },
radio => Audio::MP3,
);
sub new {
my $package = shift;
# windshield and radio objects are created automatically by
# SUPER::new()
my $self = $package->SUPER::new(@_);
$self->{right_wheel} = $self->create_delayed_object(wheel);
... do any more initialization here ...
return $self;
}
This class facilitates building frameworks of several classes that inter-operate. It was first designed and built for HTML::Mason, in which the Compiler, Lexer, Interpreter, Resolver, Component, Buffer, and several other objects must create each other transparently, passing the appropriate parameters to the right class, possibly substituting other subclasses for any of these objects.
The main features of Class::Container are:
Explicit declaration of containment relationships (aggregation, factory creation, etc.)
Declaration of constructor parameters accepted by each member in a class framework
Transparent passing of constructor parameters to the class that needs them
Ability to create one (automatic) or many (manual) contained objects automatically and transparently
<<lessSYNOPSIS
package Car;
use Class::Container;
@ISA = qw(Class::Container);
__PACKAGE__->valid_params
(
paint => {default => burgundy},
style => {default => coupe},
windshield => {isa => Glass},
radio => {isa => Audio::Device},
);
__PACKAGE__->contained_objects
(
windshield => Glass::Shatterproof,
wheel => { class => Vehicle::Wheel,
delayed => 1 },
radio => Audio::MP3,
);
sub new {
my $package = shift;
# windshield and radio objects are created automatically by
# SUPER::new()
my $self = $package->SUPER::new(@_);
$self->{right_wheel} = $self->create_delayed_object(wheel);
... do any more initialization here ...
return $self;
}
This class facilitates building frameworks of several classes that inter-operate. It was first designed and built for HTML::Mason, in which the Compiler, Lexer, Interpreter, Resolver, Component, Buffer, and several other objects must create each other transparently, passing the appropriate parameters to the right class, possibly substituting other subclasses for any of these objects.
The main features of Class::Container are:
Explicit declaration of containment relationships (aggregation, factory creation, etc.)
Declaration of constructor parameters accepted by each member in a class framework
Transparent passing of constructor parameters to the class that needs them
Ability to create one (automatic) or many (manual) contained objects automatically and transparently
Download (0.019MB)
Added: 2006-10-06 License: Perl Artistic License Price:
1113 downloads
Parallel port powerSwitch 0.1.1
Parallel port powerSwitch is a TCP/IP server to control a parallel port power switch. more>>
Parallel port powerSwitch project is a TCP/IP server to control a parallel port power switch.
pp_powerSwitch is a TCP/IP based server, which controls a power switching device through the parallel port. Besides Java, I used a bit C to handle the parallel port I/O.
I use it for controling heating, lamps, computers, coffee machine and other things (device has eight ports).
Main features:
- multiple connections
- user athorization
- cron-like scheduled switching
- reads configurations from file
- configurable log output
- simple port descriptions (add a short description to each port)
- remote shutdown
<<lesspp_powerSwitch is a TCP/IP based server, which controls a power switching device through the parallel port. Besides Java, I used a bit C to handle the parallel port I/O.
I use it for controling heating, lamps, computers, coffee machine and other things (device has eight ports).
Main features:
- multiple connections
- user athorization
- cron-like scheduled switching
- reads configurations from file
- configurable log output
- simple port descriptions (add a short description to each port)
- remote shutdown
Download (0.009MB)
Added: 2007-01-16 License: Freeware Price:
1016 downloads
Irregular Operations Database 1.0
Irregular Operations Database is a project used for tracking flight delays. more>>
Irregular Operations Database is a project used for tracking flight delays.
Irregular Ops is a CGI script for intranet use to track irregular operations (flight delays) for scheduled airlines.
<<lessIrregular Ops is a CGI script for intranet use to track irregular operations (flight delays) for scheduled airlines.
Download (0.013MB)
Added: 2007-02-19 License: GPL (GNU General Public License) Price:
979 downloads
raidmon 1.6.1
Raidmon is a shell script which runs as a daemon and monitors software RAID devices (Linux MD). more>>
Raidmon is a shell script which runs as a daemon and monitors software RAID devices (Linux MD).
raidmon starts to beep when a disk fails or while a RAID device is resyncing after an unclean shutdown.
Every event also triggers the email alert mechanism, which sends mail to one or more persons with the details of whats going on.
<<lessraidmon starts to beep when a disk fails or while a RAID device is resyncing after an unclean shutdown.
Every event also triggers the email alert mechanism, which sends mail to one or more persons with the details of whats going on.
Download (0.014MB)
Added: 2006-12-15 License: GPL (GNU General Public License) Price:
1046 downloads
THC-Flood Connect 1.5
THC-Flood Connect is a connection flooding tool which supports SSL, sending + dumping data, closing or keeping sessions etc. more>>
THC-Flood Connect is a connection flooding tool which supports SSL, dumping + sending data, closing or keeping sessions etc.
Just a small release. Have fun.
Use allowed only for legal purposes.
To compile:
cc -o flood_connect -O2 flood_connect.c
openssl: cc -o flood_connect -O2 flood_connect.c -DOPENSSL -lssl -lcrypt
Options:
-S use SSL after TCP connect (not usuable with -u, sets port=443)
-u use UDP protocol (default: TCP) (not usable with -c)
-p port port to connect to (default: %d)
-f forks number of forks to additionally spawn (default: 0)
-i file data to send to the port (default: none)
-n connects maximum number of connects (default: unlimited)
-N delay delay between connects in ms (default: 0)
-c close after connect (and sending data, if used with -i)
use twice to shutdown SSL sessions hard (-S -c -c)
-C delay delay before closing the port (for use with -c) (default: 0)
-d dump data read from server
-D delay delay before trying to read+dump data from server (default: 0)
-e stop when no more connects possible (default: retry forever)
-k no keep-alive after finnishing with connects, terminate!
-v verbose mode
TARGET target to flood attack (ip or dns)
<<lessJust a small release. Have fun.
Use allowed only for legal purposes.
To compile:
cc -o flood_connect -O2 flood_connect.c
openssl: cc -o flood_connect -O2 flood_connect.c -DOPENSSL -lssl -lcrypt
Options:
-S use SSL after TCP connect (not usuable with -u, sets port=443)
-u use UDP protocol (default: TCP) (not usable with -c)
-p port port to connect to (default: %d)
-f forks number of forks to additionally spawn (default: 0)
-i file data to send to the port (default: none)
-n connects maximum number of connects (default: unlimited)
-N delay delay between connects in ms (default: 0)
-c close after connect (and sending data, if used with -i)
use twice to shutdown SSL sessions hard (-S -c -c)
-C delay delay before closing the port (for use with -c) (default: 0)
-d dump data read from server
-D delay delay before trying to read+dump data from server (default: 0)
-e stop when no more connects possible (default: retry forever)
-k no keep-alive after finnishing with connects, terminate!
-v verbose mode
TARGET target to flood attack (ip or dns)
Download (0.004MB)
Added: 2006-03-08 License: GPL (GNU General Public License) Price:
1338 downloads
cryptmount 2.1
cryptmount is a utility for GNU/Linux operating systems which allows an ordinary user to mount an encrypted filesystem. more>>
cryptmount project is a utility for GNU/Linux operating systems which allows an ordinary user to mount an encrypted filesystem.
cryptmount was written to address differences between the capabilities of the loopback device and the newer, preferred, device-mapper mechanisms of the 2.6 kernel series, which make it more difficult for a non-root user to configure the devices necessary for access to an encrypted filesystem.
After the initial configuration of the encrypted filesystem, an ordinary user can mount and unmount the filesystem on demand, solely by providing the decryption password.
Enhancements:
- A new interactive tool to assist with initial setup of encrypted filesystems, support for reading/writing OpenSSL key files via libgcrypt, facilities for translating between key files stored in different formats, and support for improved dismantling of loopback filesystems during system shutdown.
<<lesscryptmount was written to address differences between the capabilities of the loopback device and the newer, preferred, device-mapper mechanisms of the 2.6 kernel series, which make it more difficult for a non-root user to configure the devices necessary for access to an encrypted filesystem.
After the initial configuration of the encrypted filesystem, an ordinary user can mount and unmount the filesystem on demand, solely by providing the decryption password.
Enhancements:
- A new interactive tool to assist with initial setup of encrypted filesystems, support for reading/writing OpenSSL key files via libgcrypt, facilities for translating between key files stored in different formats, and support for improved dismantling of loopback filesystems during system shutdown.
Download (0.046MB)
Added: 2007-08-06 License: GPL (GNU General Public License) Price:
810 downloads
Beatfish 0.2.1
Beatfish is a music machine. more>>
Beatfish is a music machine.
It has 8 drum channels, two feedback delays and a VCF303 filter. You can drag notes around on the drum machine and there is a scrub bar for scrubbing on the loop as it is being played.
<<lessIt has 8 drum channels, two feedback delays and a VCF303 filter. You can drag notes around on the drum machine and there is a scrub bar for scrubbing on the loop as it is being played.
Added: 2006-03-23 License: GPL (GNU General Public License) Price:
1312 downloads
ElphelOgm 0.9.9
ElphelOgm is a command line program that receives a realtime multicast UDP stream in RTP/MJPEG format. more>>
ElphelOgm is a command line program that receives a realtime multicast UDP stream in RTP/MJPEG format and saves it in Ogg/MJPEG format with variable framerate.
ElphelOgm project has a fastidious algorithm with reordering UDP packets and detection of errors and losses.
Enhancements:
- A new option -b to control number of ready frames delayed in the buffer.
<<lessElphelOgm project has a fastidious algorithm with reordering UDP packets and detection of errors and losses.
Enhancements:
- A new option -b to control number of ready frames delayed in the buffer.
Download (0.052MB)
Added: 2006-09-12 License: GPL (GNU General Public License) Price:
1140 downloads
Zaval Proxy Suite 1.0.0
The Zaval Proxy Suite is an easy-to-use solution that allows monitoring TCP-based protocols. more>>
The Zaval Proxy Suite is an easy-to-use solution that allows monitoring TCP-based protocols, such as HTTP, NNTP and others. It is extremely useful in software development and can be used as a debug tool. Another area of appliance is multiple connections logging with proxy facilities. As soon as its a pure java solution it can be used almost everywhere.
The Zaval Proxy functions as a proxy and transfers data between the server and the client writing incoming and outgoing traffic into log files. So you can see these raw data as is.
On start the Zaval Proxy Suite goes through configuration file and creates the specified number of proxy servers and the shutdown server.
"Proxy server" is a server socket listening on the specified port. When the client is connected proxy connects to the target server and transfers data between them logging entire traffic. On each connection 2 files are created - xxx-input (request data from the client) and xxx-output (response data from the server). The "xxx" means here the sequential number of the connection for the proxy server. The traffic is logged into the separate directory for each proxy.
Shutdown server is needed to close all open connections correctly and close the program.
So, in the particular case you should specify address of proxy server in client application (web browser, for example) and address of the target server in the proxy configuration file. You can create any number of proxy servers that run at the same time, however, they should use different port numbers.
<<lessThe Zaval Proxy functions as a proxy and transfers data between the server and the client writing incoming and outgoing traffic into log files. So you can see these raw data as is.
On start the Zaval Proxy Suite goes through configuration file and creates the specified number of proxy servers and the shutdown server.
"Proxy server" is a server socket listening on the specified port. When the client is connected proxy connects to the target server and transfers data between them logging entire traffic. On each connection 2 files are created - xxx-input (request data from the client) and xxx-output (response data from the server). The "xxx" means here the sequential number of the connection for the proxy server. The traffic is logged into the separate directory for each proxy.
Shutdown server is needed to close all open connections correctly and close the program.
So, in the particular case you should specify address of proxy server in client application (web browser, for example) and address of the target server in the proxy configuration file. You can create any number of proxy servers that run at the same time, however, they should use different port numbers.
Download (0.091MB)
Added: 2006-07-01 License: GPL (GNU General Public License) Price:
1385 downloads
libjackasyn 0.11
libjackasyn is a library that allows you to use programs written for the OSS sound API with the JACK audio server. more>>
libjackasyn is a library that allows you to use programs written for the OSS sound API with the JACK audio server. libjackasyn is a library that can be used for two purposes.
First it can be loaded via the LD_PRELOAD variable, turning OSS applications automatically into JACK-aware applications.
Second, it can be used to link against the program during build time, making it trivial to turn an OSS aware sound application into a JACK aware sound application in a short time.
libjackasyn got its name from the asynchronous manner in which it communicates with the JACK server, which means by using libjackasyn you will introduce an additional delay exactly the size of one JACK audiobuffer (1024 samples or 44 ms with the JACK default settings).
This delay can be reduced by reducing the JACK buffersize. It should not matter for sound generating applications, but it might introduce phasing effects when doing sound processing.
Enhancements:
- fixed RDONLY and WRONLY handling
- act upon jack shutdown, allows to switch between JACK and non-JACK operation
- several small bug fixes
- debug compilation optional
<<lessFirst it can be loaded via the LD_PRELOAD variable, turning OSS applications automatically into JACK-aware applications.
Second, it can be used to link against the program during build time, making it trivial to turn an OSS aware sound application into a JACK aware sound application in a short time.
libjackasyn got its name from the asynchronous manner in which it communicates with the JACK server, which means by using libjackasyn you will introduce an additional delay exactly the size of one JACK audiobuffer (1024 samples or 44 ms with the JACK default settings).
This delay can be reduced by reducing the JACK buffersize. It should not matter for sound generating applications, but it might introduce phasing effects when doing sound processing.
Enhancements:
- fixed RDONLY and WRONLY handling
- act upon jack shutdown, allows to switch between JACK and non-JACK operation
- several small bug fixes
- debug compilation optional
Download (0.072MB)
Added: 2006-02-10 License: GPL (GNU General Public License) Price:
1351 downloads
Sub::DeferredPartial 0.01
Sub::DeferredPartial is a deferred evaluation / partial application. more>>
Sub::DeferredPartial is a deferred evaluation / partial application.
SYNOPSIS
use Sub::DeferredPartial def;
$S = def sub : P1 P2 P3 { %_=@_; join , @_{qw(P1 P2 P3)} };
print $S->( P1 => 1, P2 => 2, P3 => 3 )->(); # 123
$A = $S->( P3 => 1 ); # partial application
$B = $S->( P3 => 2 );
$C = $A + $B; # deferred evaluation
$D = $C->( P2 => 3 );
$E = $D->( P1 => 4 );
print $E->(); # force evaluation: 863
$F = $E - $D;
$G = $F->( P1 => 0 ) / 2;
print $G->(); # 400
print $G; # ( ( CODE(0x15e3818): P1 => 4, P2 => 3, P3 => 1 + CODE ...
$F->(); # Error: Free parameter : P1
$A->( P3 => 7 ); # Error: Bound parameter: P3
$A->( P4 => 7 ); # Error: Wrong parameter: P4
An instance of this class behaves like a sub (or, more precisely: subroutine reference), but it supports partial application and the evaluation of operators applied to such function objects is deferred too.
That means, evaluation has to be forced explicitly (which makes it easier to add introspection capabilities).
Objects that represent deferred (delayed, suspended) expressions are known as suspensions or thunks in various programming circles. Dont confuse with the same terms in the context of threads!
<<lessSYNOPSIS
use Sub::DeferredPartial def;
$S = def sub : P1 P2 P3 { %_=@_; join , @_{qw(P1 P2 P3)} };
print $S->( P1 => 1, P2 => 2, P3 => 3 )->(); # 123
$A = $S->( P3 => 1 ); # partial application
$B = $S->( P3 => 2 );
$C = $A + $B; # deferred evaluation
$D = $C->( P2 => 3 );
$E = $D->( P1 => 4 );
print $E->(); # force evaluation: 863
$F = $E - $D;
$G = $F->( P1 => 0 ) / 2;
print $G->(); # 400
print $G; # ( ( CODE(0x15e3818): P1 => 4, P2 => 3, P3 => 1 + CODE ...
$F->(); # Error: Free parameter : P1
$A->( P3 => 7 ); # Error: Bound parameter: P3
$A->( P4 => 7 ); # Error: Wrong parameter: P4
An instance of this class behaves like a sub (or, more precisely: subroutine reference), but it supports partial application and the evaluation of operators applied to such function objects is deferred too.
That means, evaluation has to be forced explicitly (which makes it easier to add introspection capabilities).
Objects that represent deferred (delayed, suspended) expressions are known as suspensions or thunks in various programming circles. Dont confuse with the same terms in the context of threads!
Download (0.005MB)
Added: 2007-05-03 License: Perl Artistic License Price:
904 downloads
game control program 1.1.0
game control program project helps administrate game servers, especially automated kicking of players. more>>
game control program project helps administrate game servers, especially automated kicking of players.
game control program helps you administrate gameservers (its written for Q1 and Q3, but works for others). It is highly modular and therefore extensible.
With the current modules, it can start/stop servers, create and rotate logfiles, allow remote administration via telnet, and kick misbehaving players automagically (according to a rule set).
Main features:
- starting a game server and getting hold of all log messages
- creating log files (complete or rotated per map)
- parsing log messages (game independent and configurable)
- sophisticated remote administration (user groups, extensible command set)
- sending commands to a running server (Q,QW,Q2,Q3)
- automatic kicking system according to specific rules (eg. too high rate set by the client)
- check if a server is hanging and kill the process to force a restart
- sending commands to the server at specified timesallows timed startup / shutdown of servers
Enhancements:
- renamed packages and modules (see doc/config)
- added new module: CommandScheduler
- sends a command to the server in defineable periods - see cfg/events.xml allows:
- COMMAND - send as RCon command (command is set as attribute parameter)
- KILLSERVER
- STARTUP
- SHUTDOWN
<<lessgame control program helps you administrate gameservers (its written for Q1 and Q3, but works for others). It is highly modular and therefore extensible.
With the current modules, it can start/stop servers, create and rotate logfiles, allow remote administration via telnet, and kick misbehaving players automagically (according to a rule set).
Main features:
- starting a game server and getting hold of all log messages
- creating log files (complete or rotated per map)
- parsing log messages (game independent and configurable)
- sophisticated remote administration (user groups, extensible command set)
- sending commands to a running server (Q,QW,Q2,Q3)
- automatic kicking system according to specific rules (eg. too high rate set by the client)
- check if a server is hanging and kill the process to force a restart
- sending commands to the server at specified timesallows timed startup / shutdown of servers
Enhancements:
- renamed packages and modules (see doc/config)
- added new module: CommandScheduler
- sends a command to the server in defineable periods - see cfg/events.xml allows:
- COMMAND - send as RCon command (command is set as attribute parameter)
- KILLSERVER
- STARTUP
- SHUTDOWN
Download (0.84MB)
Added: 2006-11-28 License: GPL (GNU General Public License) Price:
1081 downloads
Getopt::Clade 0.0.1
Getopt::Clade is a Perl module with command-Line Argument Declaration Engine. more>>
Getopt::Clade is a Perl module with command-Line Argument Declaration Engine.
This module is a placeholder for the real Getopt::Clade module. The module was supposed to be released by July 2005, to support the book "Perl Best Practices". Unfortunately, due to a series of family medical crises, the release of the module has been delayed, probably to early September 2005.
I sincerely apologize for any inconvenience this delay may cause. If you are looking for an alternative Getopt:: module, you may like to consider Getopt::Declare or Getopt::Euclid.
<<lessThis module is a placeholder for the real Getopt::Clade module. The module was supposed to be released by July 2005, to support the book "Perl Best Practices". Unfortunately, due to a series of family medical crises, the release of the module has been delayed, probably to early September 2005.
I sincerely apologize for any inconvenience this delay may cause. If you are looking for an alternative Getopt:: module, you may like to consider Getopt::Declare or Getopt::Euclid.
Download (0.003MB)
Added: 2007-01-13 License: Perl Artistic License Price:
1014 downloads
GtkPBButtons 0.6.10
GtkPBButtons is client for pbbuttonsd displays small popup windows each time a message from the daemon pbbuttonsd appeares. more>>
GtkPBButtons is client for pbbuttonsd displays small popup windows each time a message from the daemon pbbuttonsd appeares. The view of each popup could individually configured.
The following windows could pop up:
brightness level
The current display brightness level would be displayed.
keyboard illumination level
The current keyboard brightness level would be displayed.
volume level
The current volume level would be displayed
mute
The window shows if the speakers were muted.
battery warning
This window shows that battery is running low and how long it would last until shutdown.
trackpad mode
This window shows the current trackpad mode.
sleep warning
This window shows that the machine is going to enter sleep mode. Usually at that time you could press any key or move the mouse to prevent sleep mode.
ejecting CDROM
This window signals that a CDROM will be ejected or the tray will be closed.
activate external video
This window shows the status of the external video output as soon as the status has been changed by pbbuttonsd.
The window appears after someone has pressed one of the special keys or an event message has been received. After roundabout two seconds without any changes, the popup window vanishes again.
The client gives the user a visual feedback of the daemons background work and displays those events to the user that the daemon believes the user should know about. It wont run without a running daemon.
Enhancements:
- Minor bug fix. GtkPBButtons will play sound again and doesnt block the sound device anymore when lauched as daemon.
<<lessThe following windows could pop up:
brightness level
The current display brightness level would be displayed.
keyboard illumination level
The current keyboard brightness level would be displayed.
volume level
The current volume level would be displayed
mute
The window shows if the speakers were muted.
battery warning
This window shows that battery is running low and how long it would last until shutdown.
trackpad mode
This window shows the current trackpad mode.
sleep warning
This window shows that the machine is going to enter sleep mode. Usually at that time you could press any key or move the mouse to prevent sleep mode.
ejecting CDROM
This window signals that a CDROM will be ejected or the tray will be closed.
activate external video
This window shows the status of the external video output as soon as the status has been changed by pbbuttonsd.
The window appears after someone has pressed one of the special keys or an event message has been received. After roundabout two seconds without any changes, the popup window vanishes again.
The client gives the user a visual feedback of the daemons background work and displays those events to the user that the daemon believes the user should know about. It wont run without a running daemon.
Enhancements:
- Minor bug fix. GtkPBButtons will play sound again and doesnt block the sound device anymore when lauched as daemon.
Download (0.52MB)
Added: 2007-07-07 License: GPL (GNU General Public License) Price:
840 downloads
Chimera Browser 1.70
Chimera is an X/Athena Web client for UNIX-based workstations. more>>
Chimera is an X/Athena Web client for UNIX-based workstations. If you do not know about the Web then try to grab a FAQ from rtfm.mit.edu using ftp. Chimera is not built on Motif so does not require this.
Installation:
See ./INSTALL for installation and configuration instructions.
See ./INSTALL.hints for tips on getting it to work in special cases.
What are all these files:
A description of the structure of the files in this distribution appears
near the end of this file.
Enhancements:
- Chimera 1.70 contains many new features compared to 1.65p1+1:
- 1) Table support has been vastly improved.
- 2) mailto:user@host URLs are now supported (via an external Perl script).
- 3) Display refresh has been substantially optimized.
- 4) Image handling improvements speed up rendering, a lot in some cases.
- 5) DNS caching cuts domain name lookup calls by about 90%.
- 6) Connection progress is displayed in the Title area.
- 7) The "Host:" HTTP request header has been added.
- 8) A new toggle button, DeferPix, has been added that turns delayed image loading on and off (or you can type i if you prefer).
- 9) If serious HTML command errors are encountered on a visited page, a small message saying so will appear at the bottom of the page.
-
- Chimera 1.70 also contains a long list of bug fixes, including these:
- Some 20 different memory leaks have been fixed, including all the major ones.
- Handling of excess "../"s in a relative URL has been fixed, and URL parsing in general has been greatly improved. The bug that a JPEG image in a file named *.gif would not only fail, but prevent ALL further image display has been fixed. A pages Title and URL are now restored in many cases where before they werent.
-
<<lessInstallation:
See ./INSTALL for installation and configuration instructions.
See ./INSTALL.hints for tips on getting it to work in special cases.
What are all these files:
A description of the structure of the files in this distribution appears
near the end of this file.
Enhancements:
- Chimera 1.70 contains many new features compared to 1.65p1+1:
- 1) Table support has been vastly improved.
- 2) mailto:user@host URLs are now supported (via an external Perl script).
- 3) Display refresh has been substantially optimized.
- 4) Image handling improvements speed up rendering, a lot in some cases.
- 5) DNS caching cuts domain name lookup calls by about 90%.
- 6) Connection progress is displayed in the Title area.
- 7) The "Host:" HTTP request header has been added.
- 8) A new toggle button, DeferPix, has been added that turns delayed image loading on and off (or you can type i if you prefer).
- 9) If serious HTML command errors are encountered on a visited page, a small message saying so will appear at the bottom of the page.
-
- Chimera 1.70 also contains a long list of bug fixes, including these:
- Some 20 different memory leaks have been fixed, including all the major ones.
- Handling of excess "../"s in a relative URL has been fixed, and URL parsing in general has been greatly improved. The bug that a JPEG image in a file named *.gif would not only fail, but prevent ALL further image display has been fixed. A pages Title and URL are now restored in many cases where before they werent.
-
Download (0.262MB)
Added: 2006-06-15 License: GPL (GNU General Public License) Price:
1226 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above delayed shutdown windows search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed