0.2.8
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 25
gcb 0.2.8
gcb is a Gtk copy-paste buffer. more>>
It is something like xcb. It has multiple buttons to store strings of paste buffer. You click a button to put the content into paste-buffer/clipboard.
Main features:
- Use right button to assign the button as a snooper. It is more straightforward than xcb.
- It has tool-tip to display the complete content.
- It is written in Gtk, so by default it has i18 display capability.
- It can watch the clipboard of gtk (mozilla).
- History of changes of paste buffer
- By default, it is sticky on Gnome/Gtk.
- You can also specify option to turn window decoration off (borderless). No more tedius desktop setup to install it.
Enhancements:
- Change the the duration of sleep from 0.1 to 0.03
<<lessMain features:
- Use right button to assign the button as a snooper. It is more straightforward than xcb.
- It has tool-tip to display the complete content.
- It is written in Gtk, so by default it has i18 display capability.
- It can watch the clipboard of gtk (mozilla).
- History of changes of paste buffer
- By default, it is sticky on Gnome/Gtk.
- You can also specify option to turn window decoration off (borderless). No more tedius desktop setup to install it.
Enhancements:
- Change the the duration of sleep from 0.1 to 0.03
Download (0.010MB)
Added: 2005-08-01 License: GPL (GNU General Public License) Price:
1544 downloads
ROTE 0.2.8
ROTE is a simple C library for VT102 terminal emulation. more>>
ROTE is a simple C library for VT102 terminal emulation. It allows the programmer to set up virtual screens and send them data.
The virtual screens will emulate the behavior of a VT102 terminal, interpreting escape sequences, control characters and such. The library supports ncurses as well so that you may render the virtual screen to the real screen when you need to.
There are several programs that do terminal emulation, such as xterm, rxvt, screen and even the Linux console driver itself.
However, it is not easy to isolate their terminal emulation logic and put it in a module that can be easily reused in other programs. Thats where the ROTE library comes in.
The goal of the ROTE library is to provide terminal emulation support for C/C++ applications, making it possible to write programs that display terminals in embedded windows within them, or even monitor the display produced by other programs.
The ROTE library does not depend on any other library (except libc, of course), and ncurses support can be enabled or disabled at compile-time.
With ncurses support compiled in, the ROTE library is able to render the virtual screens to the physical screen (actually any ncurses window) and can also translate ncurses key codes to the escape sequences the Linux console would have produced (and feed them into the terminal).
Ncurses support is not mandatory however, and ROTE will work fine without it, but in that case the application must take care of drawing the terminal to the screen in whichever way it sees fit.
ROTE also encapsulates the functionality needed to execute a child process using the virtual screen as the controlling terminal. It will handle the creation of the pseudo-terminal and the child process.
All the application has to do is tell it the command to run in the terminal and call an update function at regular intervals to allow the terminal to update itself.
<<lessThe virtual screens will emulate the behavior of a VT102 terminal, interpreting escape sequences, control characters and such. The library supports ncurses as well so that you may render the virtual screen to the real screen when you need to.
There are several programs that do terminal emulation, such as xterm, rxvt, screen and even the Linux console driver itself.
However, it is not easy to isolate their terminal emulation logic and put it in a module that can be easily reused in other programs. Thats where the ROTE library comes in.
The goal of the ROTE library is to provide terminal emulation support for C/C++ applications, making it possible to write programs that display terminals in embedded windows within them, or even monitor the display produced by other programs.
The ROTE library does not depend on any other library (except libc, of course), and ncurses support can be enabled or disabled at compile-time.
With ncurses support compiled in, the ROTE library is able to render the virtual screens to the physical screen (actually any ncurses window) and can also translate ncurses key codes to the escape sequences the Linux console would have produced (and feed them into the terminal).
Ncurses support is not mandatory however, and ROTE will work fine without it, but in that case the application must take care of drawing the terminal to the screen in whichever way it sees fit.
ROTE also encapsulates the functionality needed to execute a child process using the virtual screen as the controlling terminal. It will handle the creation of the pseudo-terminal and the child process.
All the application has to do is tell it the command to run in the terminal and call an update function at regular intervals to allow the terminal to update itself.
Download (0.060MB)
Added: 2005-09-28 License: LGPL (GNU Lesser General Public License) Price:
1486 downloads
NuttX 0.2.8
NuttX project is a real-time embedded operating system (RTOS). more>>
NuttX project is a real-time embedded operating system (RTOS). It has a small footprint that is usable in micro-controller environments. It is fully scalable from tiny (8-bit) to moderate embedded (32-bit) systems. It also aims to be fully compliant to standards, to be fully real time, and to be totally open.
Main features:
Small Footprint
- Usable in all but the tightest micro-controller environments, The focus is on the tiny-to-small, deeply embedded environment.
Rich Feature OS Set
- The goal is to provide most standard POSIX OS interfaces to support a rich multi-threaded development environment.
- NON-GOALS: (1) It is not a goal to provide OS subsystems such as network or USB (but these could obviously be added). (2) There is no MMU-based support for processes. At present, NuttX assumes a flat address space.
Highly Scalable
- Fully scalable from tiny (8-bit) to moderate embedded (32-bit). Scalability with rich feature set is accomplished with: Many tiny source files, link from static libraries, highly configurable, use of weak symbols when available.
Standards Compliance
- NuttX strives to achieve a high degree of standards compliance. The primary governing standards are POSIX and ANSI standards. Additional standard APIs from Unix and other common RTOSs are adopted for functionality not available under these standards or for functionaly that is not appropriate for the deeply-embedded RTOS (such as fork()).
- Because of this standards conformance, software developed under other standard OSs (such as Linux) should port easily to NuttX.
Real-Time
- Fully pre-emptible, fixed priority and round-robin scheduling.
Totally Open
- Non-restrictive BSD license.
Enhancements:
- tools/Makefile.mkconfig: Under Cygwin, executable has a different name
- tools/mkdeps.sh & arch/arm/src/Makefile: Corrected a problem makeing dependencies
- tools/zipme.sh: Force directory name to be nuttx-xx.yy.zz
- fs/fs_opendir.c: Correct errors in semaphore usage that can cause deadlock.
- lib/lib_getopt.c: Added getopt() support
- examples/nsh/: NSH now supports cat, mount, umount, and mkdir. ls supports -l -s, and -R
- Added basic OS support to manage environment variables: environment storage, cloning on task creation, sharing on pthread creation, destruction on thread/task exit.
- Add environment variables APIs: environ, getenv, putenv, clearenv, setenv, unsetenv
- Correct an error in realloc() when the block is extended "down" in memory. In this case, the old memory contents need to be copied to the new location and an allocated bit was not being set.
- examples/ostest/: Added an environment variable test.
- examples/nsh/: Break into several files.
- lib/: Added strrchr, basename, dirname
- examples/nsh/: Add cp, rm, rmdir, set, unset commands. echo will now print environment variables.
<<lessMain features:
Small Footprint
- Usable in all but the tightest micro-controller environments, The focus is on the tiny-to-small, deeply embedded environment.
Rich Feature OS Set
- The goal is to provide most standard POSIX OS interfaces to support a rich multi-threaded development environment.
- NON-GOALS: (1) It is not a goal to provide OS subsystems such as network or USB (but these could obviously be added). (2) There is no MMU-based support for processes. At present, NuttX assumes a flat address space.
Highly Scalable
- Fully scalable from tiny (8-bit) to moderate embedded (32-bit). Scalability with rich feature set is accomplished with: Many tiny source files, link from static libraries, highly configurable, use of weak symbols when available.
Standards Compliance
- NuttX strives to achieve a high degree of standards compliance. The primary governing standards are POSIX and ANSI standards. Additional standard APIs from Unix and other common RTOSs are adopted for functionality not available under these standards or for functionaly that is not appropriate for the deeply-embedded RTOS (such as fork()).
- Because of this standards conformance, software developed under other standard OSs (such as Linux) should port easily to NuttX.
Real-Time
- Fully pre-emptible, fixed priority and round-robin scheduling.
Totally Open
- Non-restrictive BSD license.
Enhancements:
- tools/Makefile.mkconfig: Under Cygwin, executable has a different name
- tools/mkdeps.sh & arch/arm/src/Makefile: Corrected a problem makeing dependencies
- tools/zipme.sh: Force directory name to be nuttx-xx.yy.zz
- fs/fs_opendir.c: Correct errors in semaphore usage that can cause deadlock.
- lib/lib_getopt.c: Added getopt() support
- examples/nsh/: NSH now supports cat, mount, umount, and mkdir. ls supports -l -s, and -R
- Added basic OS support to manage environment variables: environment storage, cloning on task creation, sharing on pthread creation, destruction on thread/task exit.
- Add environment variables APIs: environ, getenv, putenv, clearenv, setenv, unsetenv
- Correct an error in realloc() when the block is extended "down" in memory. In this case, the old memory contents need to be copied to the new location and an allocated bit was not being set.
- examples/ostest/: Added an environment variable test.
- examples/nsh/: Break into several files.
- lib/: Added strrchr, basename, dirname
- examples/nsh/: Add cp, rm, rmdir, set, unset commands. echo will now print environment variables.
Download (0.45MB)
Added: 2007-07-02 License: BSD License Price:
850 downloads
SiVeCo 0.2.8
SiVeCo is a simple version control program. more>>
SiVeCo is a simple version control program. It is very easy to install and use, and has nearly no dependencies. This application is meant to be used for someone working alone on smaller projects, with contributors sending patches infrequently.
Enhancements:
- Bugs were fixed.
- The ability to export data to other SCMs was added, and an example for mercurial is included.
<<lessEnhancements:
- Bugs were fixed.
- The ability to export data to other SCMs was added, and an example for mercurial is included.
Download (0.043MB)
Added: 2007-08-17 License: GPL (GNU General Public License) Price:
801 downloads
BBDock 0.2.8
BBDock is an application launcher for Blackbox (and others) that allows you to create application buttons in the slit/dock. more>>
BBDock is an application launcher for Blackbox (and others) that allows you to create application buttons in the slit/dock. It works with PNG files rather than XPM images. BBDock supports alpha blending at 16, 24 and 32 bits color-depth.
Also, the raise-window function is available to window managers which implement the EWMH specification.
Note: there is a trancparency issue with blackbox 0.70. A workaround is this
Slit.cc replacement (place into blackbox-0.70/src/).
Configuration
You may invoke BBDock either with your icons specified on command line or simply create a short configuration file (.bbdockrc) in your home directory.
The syntax for a command-line-argument or a line in the configuration file is equal:
IMAGEFILE:COMMAND[:WINDOWTITLE;[:IDLE]]
IMAGEFILE - should be path and filename of some PNG icon
COMMAND - a script or binary to execute
WINDOWTITLE - is a semicolon-seperated list of case-insensitive
window-titles of corresponding application-windows. Those
strings may contain wildcard characters (* and/or ?) to
exclusively identify a window. By providing this list you
make the icon exclusive to one instance of course. Clicking
on already launched icons will raise the corresponding
window instead of invoking a new instance.
IDLE - idle time after triggering one icon in miliseconds, instead
of using numbers you may also use the terms "lame" (~ 10 s),
"slow" (~ 5 s), "fast" (~ 500 ms) or "fastest" (~ 250 ms)
For example, run it from command line this way:
$ bbdock "~/.icons/firefox.png:firefox:*Firefox"
Sample out of a ~/.bbdockrc:
~/.icons/terminal.png:xterm::1
~/.icons/firefox.png:firefox:*Firefox
To start by configuration file, just run bbdock. Type "bbdock -h" for a detailed view of general options.
<<lessAlso, the raise-window function is available to window managers which implement the EWMH specification.
Note: there is a trancparency issue with blackbox 0.70. A workaround is this
Slit.cc replacement (place into blackbox-0.70/src/).
Configuration
You may invoke BBDock either with your icons specified on command line or simply create a short configuration file (.bbdockrc) in your home directory.
The syntax for a command-line-argument or a line in the configuration file is equal:
IMAGEFILE:COMMAND[:WINDOWTITLE;[:IDLE]]
IMAGEFILE - should be path and filename of some PNG icon
COMMAND - a script or binary to execute
WINDOWTITLE - is a semicolon-seperated list of case-insensitive
window-titles of corresponding application-windows. Those
strings may contain wildcard characters (* and/or ?) to
exclusively identify a window. By providing this list you
make the icon exclusive to one instance of course. Clicking
on already launched icons will raise the corresponding
window instead of invoking a new instance.
IDLE - idle time after triggering one icon in miliseconds, instead
of using numbers you may also use the terms "lame" (~ 10 s),
"slow" (~ 5 s), "fast" (~ 500 ms) or "fastest" (~ 250 ms)
For example, run it from command line this way:
$ bbdock "~/.icons/firefox.png:firefox:*Firefox"
Sample out of a ~/.bbdockrc:
~/.icons/terminal.png:xterm::1
~/.icons/firefox.png:firefox:*Firefox
To start by configuration file, just run bbdock. Type "bbdock -h" for a detailed view of general options.
Download (0.018MB)
Added: 2006-10-25 License: GPL (GNU General Public License) Price:
1099 downloads
GOPDIT 0.2.8
GOPDIT (GOP accurate eDITor) is a simple program that lets you cut and merge MPEG2-PS files. more>>
GOPDIT (GOP accurate eDITor) is a simple program that allows you to cut and merge MPEG2-PS files at GOP boundaries without reencoding. Thats it. No other file types, no other operations! I use it mainly for removing commercials out of tv recordings.
The state of this program is more or less beta. GOPDIT project is usable, when you know, what works and when you have MPEG2 files like the ones I use.
The interface isnt much tested yet. So if you are doing something unexpected and currently nearly everything is unexpected this could result in in strange behaviour!
As for MPEG2 file formats currently I work only with two different types resulting from ATI and Hauppauge encoders. So I dont know, how this program will behave on other formats.
Encoders that encode with closed GOPs are preferable, because transitions are usually smoother.
Usage:
- open a mpeg2 file (file -> open ... )
- navigate to the beginning of your wanted clip
- (via playing, scrolling, keyboard accelerators - zoom in, when youre close)
- click the clip begin button left below the clip table
- navigate to the end of your clip
- click the clip end button right below the clip table the clip will now appear in the table
- you can repeat steps 2-5 or 1-5
- save the concatenated clips to a new mpeg2 file (file -> save as ...)
Closing a file will close the actual file (the one that is displayed below the screen) and remove ALL clips from the clip table.
Clips can be selected and then cut, copied or pasted.
In order to speed up the search for the correct cut point, you can zoom in: the slider will then range over a smaller section of the file.
The numbers displayed arent GOP or frame numbers, the numbers are simply file offsets divided by a constant (1000000). They should give you some idea of where you are.
The time displayed is just the time found in the GOP structure.
If the checkbox I-frames is checked, only I-frames are displayed. It helps reducing traffic, when you want to work remote (i.e. with a wireless laptop).
With the checkbox inclusive you have the choice of the GOP boundry to be before (checked) or after the picture actually displayed.
You can inhibit X firing up:
# gopdit [< options >] -x [< mpegin >] < editlist > < mpegout >
< editlist > and < mpegout > can be replaced by -, meaning stdin and stdout respectively. Parameters are read from .gopditrc, but can be overriden by options (see gopdit -h). When < mpegin > isnt specified, the editlist must contain commands for opening mpeg files.
As the cuts are done just before the pack headers, that preceed a GOP, the transition results are totally dependent on the way how mpeg2 encoding is done. In the case of Hauppauge cards, the results seem to be pretty good (especially if you have closed GOP encoding).
With other encodings transitions might look awful and before generating DVDs, some further processing (i.e. replex see DVB Replex at freshmeat.net) is usually necessary.
Version restrictions:
- Crashes (please tell me about them, in order to improve stability).
- End of file handling isnt clean yet.
- Though GOPs are marked broken after clip transitions, transitions might still look awful.
- There seem to be Linux distribution, where the QT installation isnt correctly detected (I would be extremely greatful for a more complete autoconf macro than the one in autoqt-0.03).
- If you load several shows at once, they must have the same characteristics, frame size, frame rate etc - otherwise the program will probably crash.
<<lessThe state of this program is more or less beta. GOPDIT project is usable, when you know, what works and when you have MPEG2 files like the ones I use.
The interface isnt much tested yet. So if you are doing something unexpected and currently nearly everything is unexpected this could result in in strange behaviour!
As for MPEG2 file formats currently I work only with two different types resulting from ATI and Hauppauge encoders. So I dont know, how this program will behave on other formats.
Encoders that encode with closed GOPs are preferable, because transitions are usually smoother.
Usage:
- open a mpeg2 file (file -> open ... )
- navigate to the beginning of your wanted clip
- (via playing, scrolling, keyboard accelerators - zoom in, when youre close)
- click the clip begin button left below the clip table
- navigate to the end of your clip
- click the clip end button right below the clip table the clip will now appear in the table
- you can repeat steps 2-5 or 1-5
- save the concatenated clips to a new mpeg2 file (file -> save as ...)
Closing a file will close the actual file (the one that is displayed below the screen) and remove ALL clips from the clip table.
Clips can be selected and then cut, copied or pasted.
In order to speed up the search for the correct cut point, you can zoom in: the slider will then range over a smaller section of the file.
The numbers displayed arent GOP or frame numbers, the numbers are simply file offsets divided by a constant (1000000). They should give you some idea of where you are.
The time displayed is just the time found in the GOP structure.
If the checkbox I-frames is checked, only I-frames are displayed. It helps reducing traffic, when you want to work remote (i.e. with a wireless laptop).
With the checkbox inclusive you have the choice of the GOP boundry to be before (checked) or after the picture actually displayed.
You can inhibit X firing up:
# gopdit [< options >] -x [< mpegin >] < editlist > < mpegout >
< editlist > and < mpegout > can be replaced by -, meaning stdin and stdout respectively. Parameters are read from .gopditrc, but can be overriden by options (see gopdit -h). When < mpegin > isnt specified, the editlist must contain commands for opening mpeg files.
As the cuts are done just before the pack headers, that preceed a GOP, the transition results are totally dependent on the way how mpeg2 encoding is done. In the case of Hauppauge cards, the results seem to be pretty good (especially if you have closed GOP encoding).
With other encodings transitions might look awful and before generating DVDs, some further processing (i.e. replex see DVB Replex at freshmeat.net) is usually necessary.
Version restrictions:
- Crashes (please tell me about them, in order to improve stability).
- End of file handling isnt clean yet.
- Though GOPs are marked broken after clip transitions, transitions might still look awful.
- There seem to be Linux distribution, where the QT installation isnt correctly detected (I would be extremely greatful for a more complete autoconf macro than the one in autoqt-0.03).
- If you load several shows at once, they must have the same characteristics, frame size, frame rate etc - otherwise the program will probably crash.
Download (0.18MB)
Added: 2006-01-06 License: GPL (GNU General Public License) Price:
1386 downloads
GJay 0.2.8.3
GJay generates playlists across a collection of music. more>>
GJay (Gtk+ DJ) generates playlists across a collection of music (ogg, mp3, wav) such that each song sounds good following the previous song.
GJay project is ideal for home users who want a non-random way to wander large collections or for DJs planning a set list.
You can generate playlists from within the application, or run GJay as a standalone command-line utility.
Playlist matches are based on:
Song characteristics that dont change
Frequency fingerprint
Beats per minute
Location in file system
Song attributes that you set
Rating
Color (whatever that means to you)
Currently, GJay only works under Linux. There are plans afoot to get it working on MacOS.
Enhancements:
Bugs:
- Color saturation was being factored in _way_ too much for playlist generation (thanks to William Thomas for pointing this out)
- Fix case where some long analysis runs were not getting written to data.xml properly (sourceforge bug 698761)
Features:
- Make playlist time 4 digits wide so users can have extra-long lists (sourceforge bug 745364)
- Use both inode and dev for identifying symlinks (debian bug 227122)
<<lessGJay project is ideal for home users who want a non-random way to wander large collections or for DJs planning a set list.
You can generate playlists from within the application, or run GJay as a standalone command-line utility.
Playlist matches are based on:
Song characteristics that dont change
Frequency fingerprint
Beats per minute
Location in file system
Song attributes that you set
Rating
Color (whatever that means to you)
Currently, GJay only works under Linux. There are plans afoot to get it working on MacOS.
Enhancements:
Bugs:
- Color saturation was being factored in _way_ too much for playlist generation (thanks to William Thomas for pointing this out)
- Fix case where some long analysis runs were not getting written to data.xml properly (sourceforge bug 698761)
Features:
- Make playlist time 4 digits wide so users can have extra-long lists (sourceforge bug 745364)
- Use both inode and dev for identifying symlinks (debian bug 227122)
Download (0.096MB)
Added: 2006-02-16 License: GPL (GNU General Public License) Price:
1349 downloads
Omnitty 0.2.8
Omnitty is an SSH multiplexer that allows you to log into several machines simultaneously. more>>
Omnitty is a curses-based program that allows one to log into several machines simultaneously and interact with them, selectively directing input to individual machines or groups of selected machines.
You can run both line-oriented and screen oriented in the target machines, because Omnitty has built-in terminal emulation capability. When the window is large enough, Omnitty also displays a "summary area" for each machine, in which it shows what the latest output from the machine was, so you can have an idea of what is going on in each machine.
<<lessYou can run both line-oriented and screen oriented in the target machines, because Omnitty has built-in terminal emulation capability. When the window is large enough, Omnitty also displays a "summary area" for each machine, in which it shows what the latest output from the machine was, so you can have an idea of what is going on in each machine.
Download (0.048MB)
Added: 2005-04-06 License: GPL (GNU General Public License) Price:
1662 downloads
VyQChat 0.2.8
VyQChat is a serverless chat software for small home and office networks that runs on GNU Linux. more>>
VyQChat is a real-time, text-based, serverless chat program dedicated to LANs, that runs on Linux using Qt/X11 library.
It is almost 100% compatible with Vypress Chat(TM) for Windows. It allows you to chat with friends on public or private channels, send and recieve messages etc.
The GUI is meant to be user-friendly and lets you to do most things with mouse. There is also optional sound support. VyQChat has been written in C++ and requires Qt library, version 3.x.
Main features:
- UDP based protocol -- no server required
- Support for multicast (planned)
- Almost full support for VypressChat 1.9.x protocol
- Easy to use GUI
- Support for systray
- Easy to configure -- tries to guess your local network IP address
- Sound support through arts, libao, PC Speaker and external command
- Support for executing arbitrary scripts for certain chat events
- Commands and chat history, accessible with up/down keys and history window
Version restrictions:
- File transfers
- Remote file execution
- RSA keys and digital signatures introduced in VypressChat 1.9.5
- Bulletin Board, introduced in VypressChat 1.9.5
- Multicast (almost ready but not working for unknown reasons, so it is disabled for now
Enhancements:
- a presence notify packet is sent to the requester only, not to all; this should stop flood alerts.
- a bug with zombie processes in libao and arts support was fixed
- a memory leak on the play command and external scripts execution was fixed
- the autoconf script was updated with the latest version of the bnv_have_qt macro
<<lessIt is almost 100% compatible with Vypress Chat(TM) for Windows. It allows you to chat with friends on public or private channels, send and recieve messages etc.
The GUI is meant to be user-friendly and lets you to do most things with mouse. There is also optional sound support. VyQChat has been written in C++ and requires Qt library, version 3.x.
Main features:
- UDP based protocol -- no server required
- Support for multicast (planned)
- Almost full support for VypressChat 1.9.x protocol
- Easy to use GUI
- Support for systray
- Easy to configure -- tries to guess your local network IP address
- Sound support through arts, libao, PC Speaker and external command
- Support for executing arbitrary scripts for certain chat events
- Commands and chat history, accessible with up/down keys and history window
Version restrictions:
- File transfers
- Remote file execution
- RSA keys and digital signatures introduced in VypressChat 1.9.5
- Bulletin Board, introduced in VypressChat 1.9.5
- Multicast (almost ready but not working for unknown reasons, so it is disabled for now
Enhancements:
- a presence notify packet is sent to the requester only, not to all; this should stop flood alerts.
- a bug with zombie processes in libao and arts support was fixed
- a memory leak on the play command and external scripts execution was fixed
- the autoconf script was updated with the latest version of the bnv_have_qt macro
Download (0.33MB)
Added: 2005-07-20 License: GPL (GNU General Public License) Price:
1560 downloads
Tangerine 0.2.8
Tangerine project is a music server. more>>
Tangerine project is a music server.
Tangerine is a music server which uses the DAAP protocol. It allows you to listen to music over the network using a variety of applications (iTunes, Banshee, Rhythmbox, for example).
It can automatically find your music through Beagle, and features an easy-to-use tool for configuration. It is similar to the popular mt-daapd server.
<<lessTangerine is a music server which uses the DAAP protocol. It allows you to listen to music over the network using a variety of applications (iTunes, Banshee, Rhythmbox, for example).
It can automatically find your music through Beagle, and features an easy-to-use tool for configuration. It is similar to the popular mt-daapd server.
Download (0.86MB)
Added: 2006-09-13 License: GPL (GNU General Public License) Price:
1172 downloads
3dDesktop 0.2.8
3dDesktop is an OpenGL virtual desktop switching program. more>>
3D-Desktop is an OpenGL program for switching virtual desktops in a seamless 3-dimensional manner on Linux. The current desktop is mapped into a fullscreen 3D environment where you may choose other screens. Several different visualization modes are available.
The transition from working desktop to fullscreen 3D environment is seamless. In other words when the pager activates you see your current desktop appear to zoom out to a point in space where you can see your other virtual desktops allowing you to select another. The best way to understand is to try it out and get the full effect!
<<lessThe transition from working desktop to fullscreen 3D environment is seamless. In other words when the pager activates you see your current desktop appear to zoom out to a point in space where you can see your other virtual desktops allowing you to select another. The best way to understand is to try it out and get the full effect!
Download (0.068MB)
Added: 2005-04-28 License: GPL (GNU General Public License) Price:
1640 downloads
KThinkBat 0.2.8
KThinkBat is a laptop battery monitor for the KDE-Kicker. more>>
KThinkBat is a laptop battery monitor for the KDE-Kicker. KThinkBat is inspired by the "Battery Maximizer" includes with IBM ThinkPads (now Levono).
Yes, I know, there is allready a standard battery monitor KDE-Application, but it is simply too small to realize the real battery charge at first blush.
Installation:
The simplest way to compile this package is:
1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system. If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute `configure itself.
Running `configure takes a while. While running, it prints some messages telling which features it is checking for.
2. Type `make to compile the package.
3. Type `make install to install the programs and any data files and documentation.
4. You can remove the program binaries and object files from the source code directory by typing `make clean.
Enhancements:
- Added Czech translation send by Martin Samek
- Refactored complete internal battery handling
- Introduced new abstract base class for Bat Info
- Added new Bat Info Sum class
- Fixed bug with wrong calculation remaining time when using two batteries
- Translation updates: Bulgarian (by Aleksandar Tsankov), German, Slovak (by Jozef Riha), Spanish (Luis Sobalvarro)
- Show current power consuption as current charge rate if charging
- More intelligent remaining time calculation in battery summary mode (if only one battery present, use the more accurate value from this battery instead of generic recalculation)
- Added COPYING.LIB (LGPL) and COPYING.DOC (GNU FDL) as some files are released under these licenses (thanks to Harald Sitter from Kubuntu team)
<<lessYes, I know, there is allready a standard battery monitor KDE-Application, but it is simply too small to realize the real battery charge at first blush.
Installation:
The simplest way to compile this package is:
1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system. If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute `configure itself.
Running `configure takes a while. While running, it prints some messages telling which features it is checking for.
2. Type `make to compile the package.
3. Type `make install to install the programs and any data files and documentation.
4. You can remove the program binaries and object files from the source code directory by typing `make clean.
Enhancements:
- Added Czech translation send by Martin Samek
- Refactored complete internal battery handling
- Introduced new abstract base class for Bat Info
- Added new Bat Info Sum class
- Fixed bug with wrong calculation remaining time when using two batteries
- Translation updates: Bulgarian (by Aleksandar Tsankov), German, Slovak (by Jozef Riha), Spanish (Luis Sobalvarro)
- Show current power consuption as current charge rate if charging
- More intelligent remaining time calculation in battery summary mode (if only one battery present, use the more accurate value from this battery instead of generic recalculation)
- Added COPYING.LIB (LGPL) and COPYING.DOC (GNU FDL) as some files are released under these licenses (thanks to Harald Sitter from Kubuntu team)
Download (MB)
Added: 2007-07-29 License: GPL (GNU General Public License) Price:
820 downloads
XArchive 0.2.8-6
XArchive is a generic front-end that uses external wrappers around command line archiving tools. more>>
XArchive is a generic front end for archives that uses external wrappers around the command line tools. XArchive checks its wrapper directory when it starts, consulting each wrapper found to see what file types are supported.
Thus, a new archive format can easily be supported by just writing a wrapper for it and dropping it in the wrappers directory.
Currently there are bash shell wrappers for: rar, tar, zip, and ace
(ace supported using unace, so only reading and extracting available).
These can easily be copied and modified to have xarchive support other command line tools and file types without having to touch xarchive at all.
Enhancements:
- This version supports adding files to an archive using Drag n Drog, and has a few GUI clean ups.
<<lessThus, a new archive format can easily be supported by just writing a wrapper for it and dropping it in the wrappers directory.
Currently there are bash shell wrappers for: rar, tar, zip, and ace
(ace supported using unace, so only reading and extracting available).
These can easily be copied and modified to have xarchive support other command line tools and file types without having to touch xarchive at all.
Enhancements:
- This version supports adding files to an archive using Drag n Drog, and has a few GUI clean ups.
Download (0.052MB)
Added: 2006-02-27 License: GPL (GNU General Public License) Price:
1339 downloads
Real Poker 0.2.8
Real Poker project is a poker simulation. more>>
Real Poker project is a poker simulation.
New poker games may be created by the user. Hand simulations may be run.
Upon execution the first thing that is displayed is the main window for Real Poker.
Poker games may be created, saved, deleted, and edited. Poker games may also be filtered through a learning process, the results of which are used by the robot players.
There is a game library provided with Real Poker "out of the box" which includes four poker games: Seven Card Stud, Five Card Stud, Texas Holdem, and Five Card Draw. The game library file is named "games.lib".
A game library may contain a maximum of 50 games. When Real Poker is first loaded, the default game library (games.lib) will automatically be loaded provided it is present in the .RP directory within your HOME directory (see the INSTALL file).
Use your mouse to click on the GAME LIBRARY drop-down item under the MISC menu selection to perform various functions concerning the game library.
<<lessNew poker games may be created by the user. Hand simulations may be run.
Upon execution the first thing that is displayed is the main window for Real Poker.
Poker games may be created, saved, deleted, and edited. Poker games may also be filtered through a learning process, the results of which are used by the robot players.
There is a game library provided with Real Poker "out of the box" which includes four poker games: Seven Card Stud, Five Card Stud, Texas Holdem, and Five Card Draw. The game library file is named "games.lib".
A game library may contain a maximum of 50 games. When Real Poker is first loaded, the default game library (games.lib) will automatically be loaded provided it is present in the .RP directory within your HOME directory (see the INSTALL file).
Use your mouse to click on the GAME LIBRARY drop-down item under the MISC menu selection to perform various functions concerning the game library.
Download (0.25MB)
Added: 2007-01-10 License: GPL (GNU General Public License) Price:
1028 downloads
WoW Companion 0.2.8
WoW Companion is a Java client/server used to centrally store character, item, and other data for World of Warcraft. more>>
WoW Companion is a Java client and server used to centrally store item, character and other data for World of Warcraft.
Data is made available via the Web in XML and other formats. Frontends for displaying character profiles are also included.
<<lessData is made available via the Web in XML and other formats. Frontends for displaying character profiles are also included.
Download (0.67MB)
Added: 2006-01-10 License: GPL (GNU General Public License) Price:
1391 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 2
- 1
- 2
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above 0.2.8 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