Mrxvt (previously named as materm) is a lightweight and powerful
multi-tabbed X terminal emulator based on the popular rxvt and aterm.
It implements many useful features seen in some modern X terminal
emulators, like gnome-terminal and konsole, but keeps to be
lightweight and independent from the GNOME and KDE desktop
environment.
toneclock hours are now more random thanks to Jouk Jansen.
Updates from changes xscreensaver version of Tim Aucklands fiberlamp
Moving the window will jiggle the lamp (-inwindow only!!)
Fibers are incrementally sorted to improve rendering.
Fibers are all erased at once.
hsetroot is a tool which allows you to compose wallpapers (root pixmaps)
for X. It has a lot of options like rendering gradients, solids and images
but it also allows you to perform manipulations on those things or chain
them together. You could, for example, use one standard background image
together with tint to make it fit your current theme. It is also compatible
with semi-translucent applications like aterm and xchat.
At the moment, hsetroot can render: gradients (multi-color with variable
distance), solids (rectangles) and images (centered, tiled, fullscreen, or
maximum aspect). It supports the following manipulations: tinting
(overlaying a color mask), blurring, sharpening, flipping (horizontally,
diagonally, vertically), and also allows you to adjust brightness, contrast
and gamma-level. At last, it supports alpha-channels during renders.
Package provided by Leonard Schmidt in PR pkg/30304.
Devil's Pie "Can't Join Them? Beat Them" 0.10
=============================================
* Re-implement the required private wnck functions, now builds with G2.10
(Chrispin Flowerday rocks)
* Add min/max hints to the opacity action property
* Display the min/max hints in the generated documentation.
Devil's Pie "Missing Gifts" 0.9
===============================
* Check for libwnck 2.9.92 and pass timestamps if required
* Handle properties containing doubles, so the opacity action works
* Add CONSTRUCT flag to properties (Jean-Yves Lefort)
* Start a private copy of various private wnck functions we need
by Jim Bernard. There are nontrivial differences to the original file.
(looks like a 3.6.4 snapshot)
So just update to 3.6.4.
changes:
-add Proper Motion columns to Data table
-update NAAG also when change horizon offset in Data Setup
-Favorites table now displays full .edb definition of each entry
-allow adding a new Favorite directly from the dialog
-Solver has separate Find Min and Find Max goals
Changes in 0.10.6
=================
Translations:
* Added Hungarian, Nepali, Kinyarwanda translations.
Speech:
* An improved reporting of tables.
Changes in 0.10.5
=================
Translations:
* Updated Canadian English, Dutch, Italiantranslations.
Braille:
* Change range from serial port (now 0-3) and add port "none".
* set the default device to BRLTTY.
Magnifier:
* Do not report any event if mouse is moving.
Speech:
* Corrrect some bug present when a new voice is added, modified or deleted.
Also check if the name contains invalid characters for gconf.
* A better presentation for radio buttons.
changes:
-Remove Industrial engine as it is in gtk-engines now
* Remove Smooth engine as it is in gnome-themes now
-fixes
added russian translation
cvs: ----------------------------------------------------------------------
General:
* new and updated translations: bn_IN, ca, cs, el, el_GR, eo, eu, fi, hu, ja,
ko, mr, pl, ro, vi,
* new french documentation.
gtk-xfce-engine:
* fix various colors issues with ExoIconBar, prelight colors for treeview,
Adobe® Acrobattm 7, progress bar, combo box, gtk scales (#848).
libxfcegui4:
* check ~/.local/share/pixmaps/ as a fallback (#731).
xfcalendar:
* fix compiling with --enable-debug=full (#843),
* remove C99 variable declaration and C++ comments.
xfce4-mixer:
* fix a bug with ALSA.
xfce4-session:
* fix a crash with the MCS plugin.
xfce-utils:
* taskbar: Add a command option "--monitor=x" to allow specifying which
monitor to use in Xinerama mode.
xfdesktop:
* fix translation problems with menu panel plugin,
* fix bug where binding 'xfdesktop -menu' only works sporadically (#441),
* fix unresolved symbol problem with menu module.
xffm:
* fix property dialog crahsing on FreeBSD (#945),
* fix library version info not set on the properties module (#882, #249),
* fix fstab parsing (#524),
* fix compilation issues with ansi compiler and gcc4 (#862).
xfprint:
* make bsdlpr plugin compile,
* change CUPS detection code,
* set correct ld flags (#871),
* add support for printcap aliases (#821),
* fix MCS plugin.
xfwm4:
* fix mouse buttons being left ungrabbed when focus was transfered to
an unmanaged window,
* document hidden option "workspace_scroll" (#948),
* various focus issues (#759, #869, #899, #905, #924, #931),
* fix pixmap depth not being properly set (#895),
* refresh frame when "skip taskbar" state changes (#898),
* allow seemless windows to be hidden from kbd shortcuts,
* code cleanup.
Clearlooks is new and modern-looking GTK2+ engine, based on Bluecurve.
It has the looks of various themes blended together, resulting in a
theme that's easy on the eyes and visually pleasing.
The difference with pixmap based themes is that it does not sacrifice
a lot of speed. In fact, it is roughly as fast as Bluecurve.
This package provides the Metacity theme part of Clearlooks. The GTK2+
theme is included in the gtk2-engines package.
* Added Clearlooks engine and theme [Andrew Johnson, Thomas Wood ]
* Fixed various Crux bugs, and bug 170113 [ Thomas ]
* Memory and other fixes for Smooth engine [ Andrew ]
* Better looking insensitive icons for Industrial [ Michele Cella ]
* Work arounds for GNOME "Places" and "Desktop" menu bar applet item colours in
Industrial, LighthouseBlue, Mist and ThinIce themes [ Thomas ]
While here, use correct patterns in CONFLICTS.
caches variable definitions that were computed by make. These variables
are specified by listing them in MAKE_VARS, e.g.,
.if !defined(FOO)
FOO!= very_time_consuming_command
.endif
MAKE_VARS+= FOO
bsd.pkg.mk will include only the one generated during the most recent
phase. A particular phase's makevars.mk file consists of variable
definitions that are a superset of all of the ones produced in previous
phases of the build.
The caching is useful because bsd.pkg.mk invokes make recursively,
which in the example above has the potential to run the very time-consuming
command each time unless we cause FOO to be defined for the sub-make
processes. We don't cache via MAKE_FLAGS because MAKE_FLAGS isn't
consistently applied to every invocation of make, and also because
MAKE_FLAGS can overflow the maximum length of a make variable very
quickly if we add many values to it.
One important and desirable property of variables cached via MAKE_VARS
is that they only apply to the current package, and not to any
dependencies whose builds may have been triggered by the current
package.
The makevars.mk files are generated by new targets fetch-vars,
extract-vars, patch-vars, etc., and these targets are built during
the corresponding real-* target to ensure that they are being invoked
with PKG_PHASE set to the proper value.
Also, remove the variables cache file that bsd.wrapper.mk was generating
since the new makevars.mk files provide the same functionality at a
higher level. Change all WRAPPER_VARS definitions that were used by
the old wrapper-phase cache file into MAKE_VARS definitions.
package because PKG_OPTION.<pkg> could contain negative options, which
are never part of PKG_OPTIONS. Instead, use the show-var target to
display the value. We cache it in WRAPPER_VARS and in MAKE_FLAGS to
prevent reinvoking the show-var target recursively.