twilight stuff
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 494
Way Of The Warrior: Sons of twilight 5.0
Way of The Warrior: Sons of Twilight is a Web-based boardgame of fantasy battle. more>>
Way of The Warrior: Sons of Twilight is a Web-based boardgame of fantasy battle. Like a boardgame, it is turn based and at least 2 players are neeed, but there is no upper limit on the number of players.
Way Of The Warrior: Sons of twilight is fully and easily customizable, from the unit to the board tile.
Enhancements:
- board visualization is now good
- sincronization algoritm for the save process
<<lessWay Of The Warrior: Sons of twilight is fully and easily customizable, from the unit to the board tile.
Enhancements:
- board visualization is now good
- sincronization algoritm for the save process
Download (3.0MB)
Added: 2006-10-11 License: Other/Proprietary License Price:
1110 downloads
cpulimit 1.1
cpulimit is a simple program that attempts to limit the cpu usage of a process (expressed in percentage, not in cpu time). more>>
cpulimit is a simple program that attempts to limit the cpu usage of a process (expressed in percentage, not in cpu time). This is useful to control batch jobs, when you dont want they eat too much cpu.
cpulimit project does not act on the nice value or other scheduling priority stuff, but on the real cpu usage. Also, it is able to adapt itself to the overall system load, dynamically and quickly.
<<lesscpulimit project does not act on the nice value or other scheduling priority stuff, but on the real cpu usage. Also, it is able to adapt itself to the overall system load, dynamically and quickly.
Download (0.005MB)
Added: 2007-01-09 License: GPL (GNU General Public License) Price:
1023 downloads
Libbling 0.1
Libbling package contains attractive user interface widgets for Gtk. more>>
Libbling package contains attractive user interface widgets for Gtk.
Libbling is designed to provide attractive widgets, taking advanatage of new Gtk technologies, to add bling to your application.
Enhancements:
- Added and adapted a spinner widget
- Tweaked spinner drawing code. Added most-likely scenario to tests.
- Removed osd-* and awn-* stuff and made bling-window partially configurable through GObject properties.
<<lessLibbling is designed to provide attractive widgets, taking advanatage of new Gtk technologies, to add bling to your application.
Enhancements:
- Added and adapted a spinner widget
- Tweaked spinner drawing code. Added most-likely scenario to tests.
- Removed osd-* and awn-* stuff and made bling-window partially configurable through GObject properties.
Download (MB)
Added: 2007-03-19 License: GPL (GNU General Public License) Price:
950 downloads
Linux Multimedia System 0.1.2
LMMS is a window manager written in Python/Pygame. more>>
LMMS is a project trying to create a gui for TV that can be used with a gamepad/joystick. In future there shall be various applications for playing audiofiles (Ogg-Vorbis, MP3, WMA, CD etc) and videofiles (DivX, MPEG, DVD, TV etc). Games and other stuff (recording TV etc) are planed too.
For now the whole project is written in python/pygame and there are some applications available:
Menu - for choosing another application
Image-Viewer - as the name says, it will allow you to watch some images
CD-Player - for playing Audio-CDs
Audio-Player - with support for Ogg and MP3
Actually the following gamepads/joysticks are supported:
Gravis Gamepad Pro
Microsofts X-Box pad
Nintendos SNES pad
<<lessFor now the whole project is written in python/pygame and there are some applications available:
Menu - for choosing another application
Image-Viewer - as the name says, it will allow you to watch some images
CD-Player - for playing Audio-CDs
Audio-Player - with support for Ogg and MP3
Actually the following gamepads/joysticks are supported:
Gravis Gamepad Pro
Microsofts X-Box pad
Nintendos SNES pad
Download (3.1MB)
Added: 2005-11-15 License: GPL (GNU General Public License) Price:
1439 downloads
Public Fox 1.04
Public Fox cleans stuff after downloading. more>>
Public Fox cleans stuff after downloading.
Tired of cleaning stuff people download? Use this to limit file downloading.
Prevent browser changes.
Public Fox blocks users from downloading unwanted files.
Locks down Add-ons.
Locks down Preferences.
Locks down about:config
All with a central password.
<<lessTired of cleaning stuff people download? Use this to limit file downloading.
Prevent browser changes.
Public Fox blocks users from downloading unwanted files.
Locks down Add-ons.
Locks down Preferences.
Locks down about:config
All with a central password.
Download (0.019MB)
Added: 2007-07-23 License: MPL (Mozilla Public License) Price:
862 downloads
mii-tool 1.9.1.1
The mii-tool command allows you to set or autodetect the media type or mii chipset-based ethernet devices. more>>
The mii-tool command provides an tool for checking and setting ethernet cabling parameters.
It is normally included in Bernd Eckenfels net-tools package, but this is an single distribution which only contains mii-tool. This package also comes with cleaned makefile and allows build-time relocation and cross/sysroot-compiling.
Enhancements:
- removed evrything whats not mii-tool
- removed I18N stuff
- added support for specifying an installation root via the DESTDIR environment variable
- removed the config stuff (not needed for mii-tool)
<<lessIt is normally included in Bernd Eckenfels net-tools package, but this is an single distribution which only contains mii-tool. This package also comes with cleaned makefile and allows build-time relocation and cross/sysroot-compiling.
Enhancements:
- removed evrything whats not mii-tool
- removed I18N stuff
- added support for specifying an installation root via the DESTDIR environment variable
- removed the config stuff (not needed for mii-tool)
Download (0.015MB)
Added: 2005-07-04 License: GPL (GNU General Public License) Price:
1617 downloads
Thread::Tie 0.12
Thread::Tie can tie variables into a thread of their own. more>>
Thread::Tie can tie variables into a thread of their own.
SYNOPSIS
use Thread::Tie; # use as early as possible for maximum memory savings
# use default thread + tieing + create thread when needed
tie $scalar, Thread::Tie;
tie @array, Thread::Tie;
tie %hash, Thread::Tie;
tie *HANDLE, Thread::Tie;
# use alternate implementation
tie $scalar, Thread::Tie,
{ module => Own::Tie::Implementation, # used automatically
use => Use::This::Module::Also, # optional, also as []
eval => arbitrary Perl code, # optional
};
# initialize right away
tie $scalar, Thread::Tie, {}, 10;
tie @array, Thread::Tie, {}, qw(a b c);
tie %hash, Thread::Tie, {}, (a => A, b => B, c => C);
tie *HANDLE, Thread::Tie, {},>:layer,filename;
# create an alternate thread and use that
my $tiethread = Thread::Tie::Thread->new;
tie $scalar, Thread::Tie, {thread => $tiethread};
# object methods
my $tied = tie stuff,Thread::Tie,parameters;
my $tied = tied( stuff );
my $semaphore = $tied->semaphore; # scalar for lock()ing tied variable
my $module = $tied->module; # module tied to in thread
my $tiethread = $tied->thread; # thread to which variable is tied
my $tid = $tiethread->tid; # thread id of tied thread
my $thread = $tiethread->thread; # actual "threads" thread
untie( stuff ); # calls DESTROY in thread, cleans up thoroughly
Thread::Tie->shutdown; # shut down default handling thread
$tiethread->shutdown; # shut down specific thread
<<lessSYNOPSIS
use Thread::Tie; # use as early as possible for maximum memory savings
# use default thread + tieing + create thread when needed
tie $scalar, Thread::Tie;
tie @array, Thread::Tie;
tie %hash, Thread::Tie;
tie *HANDLE, Thread::Tie;
# use alternate implementation
tie $scalar, Thread::Tie,
{ module => Own::Tie::Implementation, # used automatically
use => Use::This::Module::Also, # optional, also as []
eval => arbitrary Perl code, # optional
};
# initialize right away
tie $scalar, Thread::Tie, {}, 10;
tie @array, Thread::Tie, {}, qw(a b c);
tie %hash, Thread::Tie, {}, (a => A, b => B, c => C);
tie *HANDLE, Thread::Tie, {},>:layer,filename;
# create an alternate thread and use that
my $tiethread = Thread::Tie::Thread->new;
tie $scalar, Thread::Tie, {thread => $tiethread};
# object methods
my $tied = tie stuff,Thread::Tie,parameters;
my $tied = tied( stuff );
my $semaphore = $tied->semaphore; # scalar for lock()ing tied variable
my $module = $tied->module; # module tied to in thread
my $tiethread = $tied->thread; # thread to which variable is tied
my $tid = $tiethread->tid; # thread id of tied thread
my $thread = $tiethread->thread; # actual "threads" thread
untie( stuff ); # calls DESTROY in thread, cleans up thoroughly
Thread::Tie->shutdown; # shut down default handling thread
$tiethread->shutdown; # shut down specific thread
Download (0.015MB)
Added: 2007-08-06 License: Perl Artistic License Price:
809 downloads
kfilewatcher 0.1
kfilewatcher project watches for file changes and allows you to react on them. more>>
kfilewatcher project watches for file changes and allows you to react on them.
Example:
kfilewatcher /tmp/test 2>&1 | while read a; do echo "File has changed - doing something"; done
This command does something every time kfilewatcher detects a change. At the moment, the only action is to output "File has changed - doing something", but you can write anything there, e.g.
- backup stuff as soon as it changes
- publish files on your homepage everytime they change
- keep directories in sync
<<lessExample:
kfilewatcher /tmp/test 2>&1 | while read a; do echo "File has changed - doing something"; done
This command does something every time kfilewatcher detects a change. At the moment, the only action is to output "File has changed - doing something", but you can write anything there, e.g.
- backup stuff as soon as it changes
- publish files on your homepage everytime they change
- keep directories in sync
Download (1.7MB)
Added: 2006-12-28 License: GPL (GNU General Public License) Price:
1030 downloads
wmSun 1.03
wmSun dockapp shows the rise/set time of Sun. more>>
wmSun dockapp shows the rise/set time of Sun.
Long = 155d 55m = 155.92
Lat = 19d 35m = 19.58
ToDo:
- Add multiple "pages" like wmMoonClock?
- Eclipse info?
- Twilight Calcs. Civil, Astro, Nautical....
- Transit time?
- Graphical Annalemma or plot of Eq of Time...
- Add user definable twiddle factor to account for local terrain etc.. Could even go way overbaord and download USGS topo info? (Man! that is going overboard!).
<<lessLong = 155d 55m = 155.92
Lat = 19d 35m = 19.58
ToDo:
- Add multiple "pages" like wmMoonClock?
- Eclipse info?
- Twilight Calcs. Civil, Astro, Nautical....
- Transit time?
- Graphical Annalemma or plot of Eq of Time...
- Add user definable twiddle factor to account for local terrain etc.. Could even go way overbaord and download USGS topo info? (Man! that is going overboard!).
Download (0.18MB)
Added: 2006-10-12 License: GPL (GNU General Public License) Price:
1109 downloads
PHAT 0.0.1
PHAT is a browser-based network management solution. more>>
PHAT is a browser-based network management solution with a heavy lean toward switches, routers, and other traffic handlers which can be used to control either a single node, subnet, or vlan.
As you can probably see if youre reading this, PHAT is not the worlds most useful tool... yet. The reason I released this code in the first place was because I found myself in a vicious cycle: I didnt want to release the code until it was a little cleaner, a little more useful, and less dependent on site-specific stuff (currently, PHAT is quite reliant on NIS for example). However, I really havent had all the time in the world to devote to coding (Im also a sys/network admin), so getting PHAT to this presentable state has been tough (obviously, as I still dont consider it very presentable). I realized the only way to be useful was if I just released it for better or worse, and let people have at it.
Right now, the only things PHAT can really do depend on NIS, and MySQL. However, the NIS stuff should go away soon, and its not very hard to understand whats happening. Anyone with a decent level of networking and PHP expertise should be able to rip out the NIS stuff and replace it, or abstract the stuff altogether. The MySQL stuff will go away too, but not tomorrow or next week. As more people get involved who have more experience in dealing with ADODB or the PEAR DB stuff well move toward one of those.
In addition to reading this file, you really should read the source files as well, as I have a tendency to write really verbose stuff in there.
So, in a nutshell, I picked the release name "pseudocode" because thats exactly what PHAT currently is. Its a proof of concept. Everything has been done in a very brute force manner and has been tested just enough that theres some evidence that this stuff can work and I can demo it for a few interested local parties :)
At this stage in the game, ideas reign supreme. The only thing that rules over talking about ideas is coding prototypes for them.
Enhancements:
- PHP 4.x: As far as I know, any 4.x version works. I always use the latest version of PHP, and the version I used initially was 4.1x, I dont exactly remember which one.
-
- Apache: This has only ever been tested on Apache. UNIX/Linux: PHAT, at this stage, still makes a couple of systemcalls that are *nix specific. Its been tested on Linux and
- Solaris. This dependency should eventually go away.
-
- NIS: This dependency really has to go away. Abstracting the things PHAT uses NIS for right now is the first order of business.
-
- MySQL: I want to use the PEAR or ADODB stuff, but havent been overjoyed with either one. I dont want to have PHAT be dependent on any one database.
<<lessAs you can probably see if youre reading this, PHAT is not the worlds most useful tool... yet. The reason I released this code in the first place was because I found myself in a vicious cycle: I didnt want to release the code until it was a little cleaner, a little more useful, and less dependent on site-specific stuff (currently, PHAT is quite reliant on NIS for example). However, I really havent had all the time in the world to devote to coding (Im also a sys/network admin), so getting PHAT to this presentable state has been tough (obviously, as I still dont consider it very presentable). I realized the only way to be useful was if I just released it for better or worse, and let people have at it.
Right now, the only things PHAT can really do depend on NIS, and MySQL. However, the NIS stuff should go away soon, and its not very hard to understand whats happening. Anyone with a decent level of networking and PHP expertise should be able to rip out the NIS stuff and replace it, or abstract the stuff altogether. The MySQL stuff will go away too, but not tomorrow or next week. As more people get involved who have more experience in dealing with ADODB or the PEAR DB stuff well move toward one of those.
In addition to reading this file, you really should read the source files as well, as I have a tendency to write really verbose stuff in there.
So, in a nutshell, I picked the release name "pseudocode" because thats exactly what PHAT currently is. Its a proof of concept. Everything has been done in a very brute force manner and has been tested just enough that theres some evidence that this stuff can work and I can demo it for a few interested local parties :)
At this stage in the game, ideas reign supreme. The only thing that rules over talking about ideas is coding prototypes for them.
Enhancements:
- PHP 4.x: As far as I know, any 4.x version works. I always use the latest version of PHP, and the version I used initially was 4.1x, I dont exactly remember which one.
-
- Apache: This has only ever been tested on Apache. UNIX/Linux: PHAT, at this stage, still makes a couple of systemcalls that are *nix specific. Its been tested on Linux and
- Solaris. This dependency should eventually go away.
-
- NIS: This dependency really has to go away. Abstracting the things PHAT uses NIS for right now is the first order of business.
-
- MySQL: I want to use the PEAR or ADODB stuff, but havent been overjoyed with either one. I dont want to have PHAT be dependent on any one database.
Download (0.23MB)
Added: 2006-07-03 License: GPL (GNU General Public License) Price:
1212 downloads
Text::Template::Inline 0.13
Text::Template::Inline allows easy formatting of hierarchical data. more>>
Text::Template::Inline allows easy formatting of hierarchical data.
SYNOPSIS
# you can import any name you want instead of "render"
use Text::Template::Inline render;
# yields "Replace things and stuff."
render {
foo => things,
bar => stuff,
}, q ;
# yields "Three Two One Zero"
render [qw/ Zero One Two Three /], {3} {2} {1} {0};
# for a blessed $obj that has id and name accessors:
render $obj, {id} {name};
# a "fat comma" can be used as syntactic sugar:
render $obj => {id} {name};
# its also possible to traverse heirarchies of data,
# even of different types.
# the following yields "one two three"
render {
a => { d => one },
b => { e => two },
c => { f => [qw/ zero one two three /], },
} => {a.d} {b.e} {c.f.3};
# theres also an automatic unindent feature that
# lines up to the least-indented line in the template:
render {
a => { d => one },
b => { e => two },
c => { f => [qw/ zero one two three /], },
} => q{
{a.d}
{b.e}
{c.f.3}
};
# the above results in this:
one
two
three
<<lessSYNOPSIS
# you can import any name you want instead of "render"
use Text::Template::Inline render;
# yields "Replace things and stuff."
render {
foo => things,
bar => stuff,
}, q ;
# yields "Three Two One Zero"
render [qw/ Zero One Two Three /], {3} {2} {1} {0};
# for a blessed $obj that has id and name accessors:
render $obj, {id} {name};
# a "fat comma" can be used as syntactic sugar:
render $obj => {id} {name};
# its also possible to traverse heirarchies of data,
# even of different types.
# the following yields "one two three"
render {
a => { d => one },
b => { e => two },
c => { f => [qw/ zero one two three /], },
} => {a.d} {b.e} {c.f.3};
# theres also an automatic unindent feature that
# lines up to the least-indented line in the template:
render {
a => { d => one },
b => { e => two },
c => { f => [qw/ zero one two three /], },
} => q{
{a.d}
{b.e}
{c.f.3}
};
# the above results in this:
one
two
three
Download (0.006MB)
Added: 2007-08-22 License: Perl Artistic License Price:
793 downloads
yaGTD 0.1.5
yaGTD is a very simple utility designed to make the management of your to-do list quick and easy. more>>
What I wanted was something lightweight and flexible, a simple way to carry and maintain my tasks around on a USB stick.
The program needed to be capable of running on different platforms and must not depend on any data format or any web connection.
yaGTD incorporates major features from Allens Getting Things Done philosophy and notion of urgency and importance preached by Stephen Covey (cf Seven Habits of Highly Effective People book).
To resume, if you are comfortable at the command line a simple plain text is an age-old but perfect method for tracking your stuff, and yaGTD can help you to manage efficiently this file.
The project is released under the GPL so anyone can try it and make their own modifications.
<<lessThe program needed to be capable of running on different platforms and must not depend on any data format or any web connection.
yaGTD incorporates major features from Allens Getting Things Done philosophy and notion of urgency and importance preached by Stephen Covey (cf Seven Habits of Highly Effective People book).
To resume, if you are comfortable at the command line a simple plain text is an age-old but perfect method for tracking your stuff, and yaGTD can help you to manage efficiently this file.
The project is released under the GPL so anyone can try it and make their own modifications.
Download (0.026MB)
Added: 2006-12-22 License: GPL (GNU General Public License) Price:
1036 downloads
THC-Probe 4.1
THC-Probe is the ultimate host scanner compilation for Linux, featuring nmap, snmpscan, netbios auditing tool. more>>
THC-Probe is the ultimate host scanner compilation for Linux, featuring nmap, snmpscan, netbios auditing tool and super-cool vh shell script.
INSTALL: just run "make install". Everything will be installed in /usr/local
RUN: just run "netprobe" and see the options.
Every host scanned will be saved as a "host.bla.com.probe" file in your current directory.
It does many stuff like snmp guessing, samba pw guessing and information gathering.
Nothing great and big, but it suits my needs.
<<lessINSTALL: just run "make install". Everything will be installed in /usr/local
RUN: just run "netprobe" and see the options.
Every host scanned will be saved as a "host.bla.com.probe" file in your current directory.
It does many stuff like snmp guessing, samba pw guessing and information gathering.
Nothing great and big, but it suits my needs.
Download (0.64MB)
Added: 2006-03-08 License: GPL (GNU General Public License) Price:
1333 downloads
DateTime::Astro::Sunrise 0.01_01
DateTime::Astro::Sunrise is a Perl DateTime extension for computing the sunrise/sunset on a given day. more>>
DateTime::Astro::Sunrise is a Perl DateTime extension for computing the sunrise/sunset on a given day.
SYNOPSIS
use DateTime; use DateTime::Astro::Sunrise; ^
my $dt = DateTime->new( year => 2000,
month => 6,
day => 20,
);
my $sunrise = DateTime::Astro::Sunrise ->new(-118,33,undef,1);
my ($tmp_rise, $tmp_set) = $sunrise->sunrise($dt);
This module will return a DateTime Object for sunrise and sunset for a given day.
USAGE
my $sunrise = DateTime::Astro::Sunrise -new(longitutide,latatude,ALT,Iteration);>
inter is set to either 0 or 1. If set to 0 no Iteration will occur. If set to 1 Iteration will occur. Default is 0.
There are a number of sun altitides to chose from. The default is -0.833 because this is what most countries use. Feel free to specify it if you need to. Here is the list of values to specify altitude (ALT) with:
0 degrees
Center of Suns disk touches a mathematical horizon
-0.25 degrees
Suns upper limb touches a mathematical horizon
-0.583 degrees
Center of Suns disk touches the horizon; atmospheric refraction accounted for
-0.833 degrees
Suns supper limb touches the horizon; atmospheric refraction accounted for
-6 degrees
Civil twilight (one can no longer read outside without artificial illumination)
-12 degrees
Nautical twilight (navigation using a sea horizon no longer possible)
-15 degrees
Amateur astronomical twilight (the sky is dark enough for most astronomical observations)
-18 degrees
Astronomical twilight (the sky is completely dark)
Notes on Iteration
The orginal method only gives an approximate value of the Suns rise/set times. The error rarely exceeds one or two minutes, but at high latitudes, when the Midnight Sun soon will start or just has ended, the errors may be much larger. If you want higher accuracy, you must then use the iteration feature. This feature is new as of version 0.7. Here is what I have tried to accomplish with this.
a) Compute sunrise or sunset as always, with one exception: to convert LHA from degrees to hours, divide by 15.04107 instead of 15.0 (this accounts for the difference between the solar day and the sidereal day.
b) Re-do the computation but compute the Suns RA and Decl, and also GMST0, for the moment of sunrise or sunset last computed.
c) Iterate b) until the computed sunrise or sunset no longer changes significantly. Usually 2 iterations are enough, in rare cases 3 or 4 iterations may be needed.
($sunrise, $sunset) = $sunrise->($dt);
Returns two DateTime objects sunrise and sunset. Please note that the time zone for these objects is set to UTC. So dont forget to set your timezone!!
<<lessSYNOPSIS
use DateTime; use DateTime::Astro::Sunrise; ^
my $dt = DateTime->new( year => 2000,
month => 6,
day => 20,
);
my $sunrise = DateTime::Astro::Sunrise ->new(-118,33,undef,1);
my ($tmp_rise, $tmp_set) = $sunrise->sunrise($dt);
This module will return a DateTime Object for sunrise and sunset for a given day.
USAGE
my $sunrise = DateTime::Astro::Sunrise -new(longitutide,latatude,ALT,Iteration);>
inter is set to either 0 or 1. If set to 0 no Iteration will occur. If set to 1 Iteration will occur. Default is 0.
There are a number of sun altitides to chose from. The default is -0.833 because this is what most countries use. Feel free to specify it if you need to. Here is the list of values to specify altitude (ALT) with:
0 degrees
Center of Suns disk touches a mathematical horizon
-0.25 degrees
Suns upper limb touches a mathematical horizon
-0.583 degrees
Center of Suns disk touches the horizon; atmospheric refraction accounted for
-0.833 degrees
Suns supper limb touches the horizon; atmospheric refraction accounted for
-6 degrees
Civil twilight (one can no longer read outside without artificial illumination)
-12 degrees
Nautical twilight (navigation using a sea horizon no longer possible)
-15 degrees
Amateur astronomical twilight (the sky is dark enough for most astronomical observations)
-18 degrees
Astronomical twilight (the sky is completely dark)
Notes on Iteration
The orginal method only gives an approximate value of the Suns rise/set times. The error rarely exceeds one or two minutes, but at high latitudes, when the Midnight Sun soon will start or just has ended, the errors may be much larger. If you want higher accuracy, you must then use the iteration feature. This feature is new as of version 0.7. Here is what I have tried to accomplish with this.
a) Compute sunrise or sunset as always, with one exception: to convert LHA from degrees to hours, divide by 15.04107 instead of 15.0 (this accounts for the difference between the solar day and the sidereal day.
b) Re-do the computation but compute the Suns RA and Decl, and also GMST0, for the moment of sunrise or sunset last computed.
c) Iterate b) until the computed sunrise or sunset no longer changes significantly. Usually 2 iterations are enough, in rare cases 3 or 4 iterations may be needed.
($sunrise, $sunset) = $sunrise->($dt);
Returns two DateTime objects sunrise and sunset. Please note that the time zone for these objects is set to UTC. So dont forget to set your timezone!!
Download (0.006MB)
Added: 2007-02-15 License: GPL (GNU General Public License) Price:
983 downloads
Relokate 0.4.1
Relokate is a puzzle game which comes with 3 different levels of complexity. more>>
Relokate is a strategy puzzle game for the K Desktop Environment (KDE). The player must reorder the cards to match the original image or order of numbers.
Relokate has support for adding background images and puzzle themes using the Get Hot New Stuff framework (GHNS).
Enhancements:
- It is a quick bugfix update to 0.4 which didnt install the configuration correctly!
<<lessRelokate has support for adding background images and puzzle themes using the Get Hot New Stuff framework (GHNS).
Enhancements:
- It is a quick bugfix update to 0.4 which didnt install the configuration correctly!
Download (1.2MB)
Added: 2005-06-21 License: GPL (GNU General Public License) Price:
1585 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 twilight stuff 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