Alan Coopersmith (4):
Fix some clang warnings about implicit conversions
Combine usage message into a single string
Add -V option to print version number
sessreg 1.0.8
Ed Schouten (3):
Place NetBSD specific #defines in the proper place.
Make the `line' variable local to main().
Remove dubious code.
Thomas Klausner (1):
Fix compilation on NetBSD - undefined *TMPX paths
This minor maintenance release includes various build improvements,
cleanups, and bug fixes; including making the build configuration scripts
compatible with automake-1.13.
Alan Coopersmith (6):
config: Add missing AC_CONFIG_SRCDIR
Add _X_NORETURN to PrintUsage to clear gcc/clang warnings
Convert from haphazard indenting to X.Org common style
add explicit braces to clarify which if the else goes with
Add -version option
xvinfo 1.1.2
Gaetan Nadon (3):
config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
man: remove trailing spaces and tabs
config: move man pages into their own directory
= Release History
== 2.5.0 / 2013-01-27 Charlie Savage
* Compatibility with older versions for IO::write (rb_io_bufwrite is specific
to ruby >= 1.9.3?)
and symbols are VALUE not ID (julp).
* Fix version for xmlTextWriterSetQuoteChar, it appeared in libxml2 2.9.0, last
version (julp)
* Update use of LIBXML_VERSION (julp).
* Fix misuse of rb_scan_args (julp).
* Update documentation, including DTD docs and added XML Writer (julp).
* Added a new XML::Writer class (julp).
* Improved xml reader api and add namespace support. Note that passing a
numeric value to XML::Reader::move_to_attribute has been deprecated. Instead
you should now use #move_to_attribute_no. (julp).
* Improve error handling and messages (Jarl Friis)
Note that this release changes the default location for the system provided
configuration files from $(libdir)/X11/xsm to $(sysconfdir)/X11/xsm (on most
systems that will be from /usr/lib/X11/xsm to /etc/X11/xsm, though results
may vary depending on configure arguments).
This minor maintenance release also includes various build improvements,
cleanups, and bug fixes; including making the build configuration scripts
compatible with automake-1.13.
Alan Coopersmith (12):
Make System() prototype for Solaris in xsm.h actually a prototype
Convert XtMalloc + sprintf to XtAsprintf
Convert a couple last sprintf calls to snprintf
Terminate execl() arguments with NULL instead of 0
Fix some gcc -Wwrite-strings warnings
Add size limit to scanf string specifier
unifdef -U__UNIXOS2__
config: Add missing AC_CONFIG_SRCDIR
Use standard autoconf defines for mkstemp & putenv instead of imake leftovers
Use mode_t, not int, for umask return/argument value
unifdef ISC
xsm 1.0.3
Egbert Eich (1):
install: Use sysconfdir instead of libdir for config files.
Gaetan Nadon (5):
config: replace deprecated AC_HELP_STRING with AS_HELP_STRING
config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
man: remove trailing spaces and tabs
man: replace hard coded man page section with substitution strings
config: move man pages into their own directory
This minor maintenance release includes various build improvements,
cleanups, and bug fixes; including making the build configuration scripts
compatible with automake-1.13.
Alan Coopersmith (5):
config: Add missing AC_CONFIG_SRCDIR
Mark usage() as _X_NORETURN
Remove CVS/RCS id tags
Print normalized version for X.Org servers, the way xdpyinfo does
xfsinfo 1.0.4
Gaetan Nadon (3):
config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
man: remove trailing spaces and tabs
config: move man pages into their own directory
v1.3.0 (30th December 2012)
- Numerous performance optimisations (thanks Alex Dowad)
- Improved text extraction (thanks Nathaniel Madura)
- Load less of the hashery gem to reduce core monkey patches
- various bug fixes
2.1.8 - 2013-02-10 :
====================
* Port to and require the most recent GTK+ 2 release (2.24)
* Allow experimental compilation against GTK+ 3
* Many memory leaks fixed
* Remove the Debian and RPM packaging
* Christoph J. Thompson's change to not install the ChangeLog
* Adrian Bunk's FLAC, configure, sign comparison warning and GBase64 fixes
* Waqa Qamar's new icons
* Small fixes to allow compilation under mingw
* Fix overlaid text in scanner legend
* Alessio Ababilov's SIGCHLD handling fix
* Move configuration files to XDG firectories
* Andreas Winkelmann's configuration file, remove all text, disc number
column and compiler warning fixes
* Switch to TagLib for MP4 tag editing and drop libmp4v2 support
* Fix album artist entry focus chain order
* Remove Changes tab in about dialog
* Tidy and internationalize the desktop file
* Fix many spelling errors and typos
* Several translation updates
* Rewrite build system
* Use intltool for internationalization
* Drop dependency on libtool
* Leonid Podolny's easytag-2.1.6-from-txt.patch for segfault when pressing
"Apply" in "Load filenames from TXT" dialog,
* WiseLord's fix-genre-tag.patch to fix predefined genres displayed under
legacy systems.
* Michał Smoczyk's updated Polish translation
* Christoph J. Thompson's .desktop cleanup patch
* Christoph J. Thompson's add a new option to trim spaces when renaming
files patch
* Nick Lanham's to make easytag compile against newest version of libmp4v2
* Wojciech Wierchola's file save performance improvement
* Julian Taylor's fix out of bound array access
* Honore Doktorr's revised libmp4v2 patch
* Algimantas Margevičius's Lithuanian translation
Path - a Path manipulation library
Path is a library to manage paths. It is similar to Pathname, but has some
extra goodness. The method names are intended to be short and explicit, and
avoid too much duplication like having 'name' or 'path' in the method name.
I believe the object-oriented approach to manipulate paths is very elegant and
useful. Paths are naturally the subject of their methods and even if they are
simple Strings behind, they carry way much more information and deserve a
first-class status.
Also, using a path library like this avoid to remember in which class the
functionality is implemented, everything is in one place (if not, please open
an issue!).
Parslet makes developing complex parsers easy. It does so by
* providing the best error reporting possible
* not generating reams of code for you to debug
Parslet takes the long way around to make your job easier. It allows for
incremental language construction. Often, you start out small, implementing
the atoms of your language first; _parslet_ takes pride in making this
possible.
BlankSlate provides a base class where almost all of the methods from Object
and Kernel have been removed. This is useful when providing proxy object and
other classes that make heavy use of method_missing.
= Backports Library
* Yearning to use some of the new cool features in Ruby 2.0.0 while using
1.8.6?
* One of your client is stuck with Ruby 1.8.6 but you want to use a gem using
some features of 1.8.7?
* Can't remember if you can use Array#sample or String#each_char on a friend's
box?
This gem is for you!
The goal of 'backports' is to make it easier to write ruby code that runs
across different versions of Ruby. All you need to bring any version of Ruby
up to today's standards:
require 'backports'
This will bring in all the features of 1.8.7 (for Ruby 1.8.6) and many
features of Ruby 1.9.1 (for Ruby 1.8.x), Ruby 1.9.2 and Ruby 1.9.3 (for all
earlier versions)!
+Note+: Although I am a Ruby committer, this gem is a personal project and is
not endorsed by ruby-core.
troubleshooting package for ipv6, into the Packages Collection. This is version
1.3b.
The SI6 Networks' IPv6 toolkit is a set of IPv6
security/trouble-shooting tools, that can send arbitrary IPv6-based
packets.
flow6: A tool to perform a security asseessment of the IPv6 Flow Label.
frag6: A tool to perform IPv6 fragmentation-based attacks and to
perform a security assessment of a number of fragmentation-related
aspects.
icmp6: A tool to perform attacks based on ICMPv6 error messages.
jumbo6: A tool to assess potential flaws in the handling of IPv6 Jumbograms.
na6: A tool to send arbitrary Neighbor Advertisement messages.
ni6: A tool to send arbitrary ICMPv6 Node Information messages, and
assess possible flaws in the processing of such packets.
ns6: A tool to send arbitrary Neighbor Solicitation messages.
ra6: A tool to send arbitrary Router Advertisement messages.
rd6: A tool to send arbitrary ICMPv6 Redirect messages.
rs6: A tool to send arbitrary Router Solicitation messages.
scan6: An IPv6 address scanning tool.
tcp6: A tool to send arbitrary TCP segments and perform a variety of
TCP-based attacks.
## 2.14.1 (tentative) / January 10 2013
## 2.14.0 / January 9 2013
* Removed ui.output_cols limit of 80 chars (@aussielunix)
* Added :p4charset variable for Perforce command line (@randyinla)
* Added support for rolling back assets, and removing expired assets (@ndbroadbent)
* Merged in `capistrano_colors` gem, and renamed to 'log_formatters', since it does much more than just colors
(@ndbroadbent)
* Use more intelligence in setting the :scm variable based on known version control directory names (@czarneckid)
* Remove the deploy:web:{disable, enable} tasks (@carsomyr)
* Group finalize_update shell commands into one command, harden shell calls with #shellescape, and separate arguments
with -- (@ndbroadbent)