* Changes since 1.4.7
This is mostly a bugfix release.
** fix cmd_sfdump with multiple screens
Broken since last release, from Joshua Leners.
** respect --enable-history=no
From Jeroen Roovers (jer@gentoo).
** fix for sloppy.c
The ugly sloppy.c had "a bug". It may be fixed now.
** README improvements
From Jeff Abrahamson.
* Changes since 1.4.6
** More fixes and code cleanup.
** UTF-8 editing support in the input bar
** get rid of "XGetWMName failed" spam on stderr
Introduced in the previous release, sorry!
** groups can now be renumbered (`gnumber')
** contrib/rpdate.sh, fancy calendar shell script to use instead of `time'
** fix `meta', which was sending garbage and made firefox unusable
** handle errors about missing config files
- ratpoison -f missing-config-file -> error
- unreadable ~/.ratpoisonrc file -> warning
** respect --sysconfdir for the global ratpoisonrc file
Rather than a hardcoded /etc/ratpoisonrc location.
** rpws gains a new `current' command (prints the current workspace)
** new manpage, mdoc(7) formatted
** X socket closed before spawning processes
Let's save those precious file descriptors.
** DWIM windows/groups names matching
Window and group names are first looked up for exact match; in last
resort a fuzzy match is attempted.
** try to cope with unset/empty HOME env. variable
** ratpoison.el is now installed at the proper location
ie. in $prefix/share/emacs/site-lisp/
** ratpoison now restricts permissions on your history file
* Changes since 1.4.5
** *Lots* of reliability fixes in ratpoison itself
Please check out the ChangeLog for more details.
** Build process cleanup
e.g. detection of getline() was fixed, build is ok with old gcc's (2.95)
** ratpoison -c now reports errors ($? != 0)
** UTF-8 text is now printed correctly
Both with and without Xft support.
** contrib/ cleanup
Scripts should be more portable, ruby bindings work with newer ruby versions.
** New newwindow and titlechanged hooks
** Functionality was added to rpws
It can now move windows to other workspaces; workspaces can be dumped and
restored.
LGOGDownloader 2.24
- Downloader::repairFile now creates new XML data on filesize
mismatches
- Added check for extras missing filenames
* Extras without filename are skipped
- Added order-only prerequisite to OBJ_RELEASE and OBJ_DEBUG in
Makefile
- Added option to ignore DLC count information
* --ignore-dlc-count option sets regular expression for games to
ignore DLC count
* Game specific option "ignore-dlc-count" can be set in
$XDG_CONFIG_HOME/lgogdownloader/gamename.conf
- Better startup time when using --game regex especially when using
generic --ignore-dlc-count='.*' (patch by: Petr BÄhan)
- Added support for Brazilian Portuguese
- Platform and language constants are now set using left shift to
make code easier to understand
- Better handling of connection issues
* Assume that we have connection error and abort/retry transfer if
download speed is less than 200 B/s for 30 seconds
- Fixed issue with incomplete files when using --status option
- JSON parsing failure in Downloader::getGames is assumed to be
caused by expired cookies and user is told to try --login
- Fixed handling large files on 32 bit platforms (patch by: Erik
Fleischer)
- The downloader now deletes old cookies before login attempt when
using --login
* Helps with some login issues
- Json::Reader::getFormattedErrorMessages is now used instead of
deprecated getFormatedErrorMessages
* jsoncpp >= 0.6.0 required
6.08 2015-07-10
- Resolve new uninitialized warning from
HTTP::Request::Common::request_type_with_data (RT#105787)
6.07 2015-07-09
- Allow subclasses to override the class of parts - it used to be
hardcoded to HTTP::Message. (Gisle Aas, RT#79239)
- Added support for is_client_error, is_server_error to HTTP::Response
(Karen Etheridge)
- Added flatten interface to HTTP::Headers (Tokuhiro Matsuno, GH#5)
- Allow PUT to pass content data via hashrefs just like with POST (Michael
Schilli, GH#9)
- Fix for "Content-Encoding: none" header (Gisle Aas, RT#94882)
- Add support for HTTP status 308, defined in RFC 7238 (Olivier Mengué,
RT#104102)
- drop the use of "use vars" (Karen Etheridge)
Update LICENSE HOMEPAGE and MASTER_SITES
Now it is python3 compatible
Complete test target
Upstream changes:
3.0.8 2015-06-23
[NEW] Added a monitoring guide to the documentation.
[FIX] Improved packaging (thanks to Larissa Reis).
[FIX] Fixed and improved various test cases.
3.0.7 2015-03-01
[FIX] State of resources and requests were inconsistent before the request has been processed (issue #62).
[FIX] Empty conditions were never triggered (regression in 3.0.6, issue #63).
[FIX] Environment.run() will fail if the until event does not get triggered (issue #64).
[FIX] Callback modification during event processing is now prohibited (thanks to Andreas Beham).
3.0.6 - 2015-01-30
[NEW] Guide to SimPy resources.
[CHANGE] Improve performance of condition events.
[CHANGE] Improve performance of filter store (thanks to Christoph Körner).
[CHANGE] Exception tracebacks are now more compact.
[FIX] AllOf conditions handle already processed events correctly (issue #52).
[FIX] Add sync() to RealtimeEnvironment to reset its internal wall-clock reference time (issue #42).
[FIX] Only send copies of exceptions into processes to prevent traceback modifications.
[FIX] Documentation improvements.
3.0.5 2014-05-14
[CHANGE] Move interruption and all of the safety checks into a new event (pull request #30)
[FIX] FilterStore.get() now behaves correctly (issue #49).
[FIX] Documentation improvements.
3.0.4 2014-04-07
[NEW] Verified, that SimPy works on Python 3.4.
[NEW] Guide to SimPy events
[CHANGE] The result dictionary for condition events (AllOF / & and AnyOf / |) now is an OrderedDict sorted in the same way as the original events list.
[CHANGE] Condition events now also except processed events.
[FIX] Resource.request() directly after Resource.release() no longer successful. The process now has to wait as supposed to.
[FIX] Event.fail() now accept all exceptions derived from BaseException instead of only Exception.
3.0.3 2014-03-06
[NEW] Guide to SimPy basics.
[NEW] Guide to SimPy Environments.
[FIX] Timing problems with real time simulation on Windows (issue #46).
[FIX] Installation problems on Windows due to Unicode errors (issue #41).
[FIX] Minor documentation issues.
3.0.2 2013-10-24
[FIX] The default capacity for Container and FilterStore is now also inf.
3.0.1 2013-10-24
[FIX] Documentation and default parameters of Store didn’t match. Its default capacity is now inf.
3.0 2013-10-11
SimPy 3 has been completely rewritten from scratch. Our main goals were to simplify the API and code base as well as making SimPy more flexible and extensible. Some of the most important changes are:
Stronger focus on events. Processes yield event instances and are suspended until the event is triggered. An example for an event is a timeout (formerly known as hold), but even processes are now events, too (you can wait until a process terminates).
Events can be combined with & (and) and | (or) to create condition events.
Process can now be defined by any generator function. You don’t have to subclass Process anymore.
No more global simulation state. Every simulation stores its state in an environment which is comparable to the old Simulation class.
Improved resource system with newly added resource types.
Removed plotting and GUI capabilities. Pyside and matplotlib are much better with this.
Greatly improved test suite. Its cleaner, and the tests are shorter and more numerous.
Completely overhauled documentation.
Note that it currently doesn't build at all (AFAICT) so the mere fact
that it doesn't build on some buggix 0.9 release isn't indicative of
much.
If in the future there turn out to be platforms it really doesn't
build for, use BROKEN_ON_PLATFORM, or ONLY_FOR_PLATFORM if it'll
really never work as opposed to nobody feels like bothering to fix it.
Solaris, so enable that; and if it works on NetBSD and Dragonfly with
a single "bsd" setting we can reasonably assume that it will work on
FreeBSD and OpenBSD (and MirBSD and Bitrig) with only minor
adjustments.
These probably won't all quite work out of the box yet, but that's
what bulk runs are for.
update the list from the package's own build system (taken from
common/Imakefile) - this adds FreeBSD, and also OSF1 and IRIX.
Probably porting this package requires nothing besides flogging imake.
underapproximation (doesn't match some of the newer variants) and
possibly an overapproxmation (matches "GNUkFreeBSD", which most likely
won't work)... write it out instead. Also, this way if we ever get
canned infrastructure support for this list, grep will find this case.
logic that decides whether to use -lcrypto. These need to stay the same
to avoid the possibility of getting a silent dependence on a (possibly
very old) builtin openssl. Of course, all it uses -lcrypto for is MD5,
but still...
PKGREVISION -> 1.
XXX: this probably shouldn't be using MD5 anyway :-/
particularly BSD-specific. It might not build on vintage SVR3 but we
probably don't care... and it will probably need minor patching on
Solaris and Linux but we can do that.
some docs, so it'll run anywhere there's a suitable JVM.
It seems that the ONLY_FOR_PLATFORM setting was originally inserted to
conservatively limit the package to platforms that had or where pkgsrc
could provide a JVM, and then both persisted after that was no longer
necessary and got cargo-culted elsewhere.
Update DEPENDS
Upstream changes:
0.082820 2015-03-20 20:35 (UTC)
* Fixes
- Protect destructors from rare but possible double execution, and
loudly warn the user whenever the problem is encountered (GH#63)
- Relax the 'self_result_object' argument check in the relationship
resolution codepath, restoring exotic uses of inflate_result
http://lists.scsys.co.uk/pipermail/dbix-class/2015-January/011876.html
- Fix updating multiple CLOB/BLOB columns on Oracle
- Fix exception on complex update/delete under a replicated setup
http://lists.scsys.co.uk/pipermail/dbix-class/2015-January/011903.html
- Fix uninitialized warnings on empty hashes passed to join/prefetch
https://github.com/vanstyn/RapidApp/commit/6f41f6e48 and
http://lists.scsys.co.uk/pipermail/dbix-class/2015-February/011921.html
- Fix hang in t/72pg.t when run against DBD::Pg 3.5.0. The ping()
implementation changes due to RT#100648 made an alarm() based
timeout lock-prone.
* Misc
- Remove warning about potential side effects of RT#79576 (scheduled)
- Various doc improvements (GH#35, GH#62, GH#66, GH#70, GH#71, GH#72)
- Depend on newer Moo, to benefit from a safer runtime (RT#93004)
- Fix intermittent failures in the LeakTracer on 5.18+
- Fix failures of t/54taint.t on Windows with spaces in the $^X
executable path (RT#101615)
Gnome Online Accounts (GOA) provides a centralized service that
allows a set of online accounts to be configured for use with core
GNOME applications. In UX terms, GOA provides a static list of
online accounts that can be setup by users (through the Online
Accounts panel in System Settings). These accounts can then be used
by core GNOME applications.
While third party applications can access the accounts setup through
GOA, this is not its explicit goal, nor does GOA set out to enable
third party applications to add online accounts of their own. There
are several reasons for this:
* Third-party applications should be able to identify themselves
to online services for the purposes of branding and tracking.
* Third-party applications shouldn't be able to identify themselves
under a generic OS or distributor key - this would be misleading
as to what is actually accessing the account, and would prevent
there from being specific contracts of trust between users and
applications who access their data.
* It would prevent users from blocking specific applications from
accessing their account (should an application sandboxing framework
come into effect).
2.8.1
What’s new in the WebKitGTK+ 2.8.1 release?
Handle keep-alive connections in GStreamer HTTP source element.
Fix a crash in DOMObjectCache when a wrapped object owned by the cache is unreffed by the user.
Fix rendering of drag and drop icon.
Fix the build with REDIRECTED_XCOMPOSITE_WINDOW disabled in X11 platform.
Fix the build with Wayland target enabled.
Fix the build for HPPA.
2.8
Highlights of the WebKitGTK+ 2.8.0 release
Initial gestures support.
HTML5 notifications.
User script messages.
HTML5 color input.
APNG support.
Performance improvements.
Playing audio notification signal.
Web view background colors.
and lots of changes in the 2.6 series; major changes in 2.6 were:
Highlights of the WebKitGTK+ 2.6.0 release
WebKit1 API has been removed.
Switch to CMake build system.
Binary version bump to make WebKit1 and WebKit2 parallel installable.
Several API changes.
The DOM bindings API has been split into stable and unstable parts.
Support for browser plugins using GTK+3, leaving the GTK+2
dependency optional for building a plugin process with support
for GTK+2 plugins.
HighDPI support for non-accelerated compositing contents.
Dynamic user agent string depending on the site.
User scripts API.
space for the next major version.
WebKit is an open source web browser engine. WebKit is also the name of
the Mac OS X system framework version of the engine that's used by
Safari, Dashboard, Mail, and many other OS X applications. WebKit's HTML
and JavaScript code began as a branch of the KHTML and KJS libraries
from KDE.
This is the GTK2+ port of the engine of the 2.4 series.
Remove support for JDK older than JDK 1.5, accept OpenJDK 8.
There is a lot of changes since NetBeans 3.5.1.
NetBeans IDE 8.0.2 Information
* Bug fixes in the installer for OS X 10.9.5 and 10.10
* Bug fixes included in Patches 1, 1.1, 2 for NetBeans IDE 8.0
and Patches 1.1, 2 for NetBeans IDE 8.0.1
* GlassFish 4.1 and Tomcat 8.0.15 bundled with the IDE
* Support for WildFly Server and WebLogic Server 12.1.3
* Added support for RequireJS
* Grunt tasks available in the popup menu for web projects
* Support for debugging JavaScript files with Karma
* Node.JS and Bower modules can be installed directly within the IDE
* Improved Git support
NetBeans IDE 8.0 New Feature Highlights
Java
* JDK 8 support: tools and editor enhancements for working with
Profiles, Lambdas, and Streams.
* Java SE Embedded support to deploy, run, debug or profile Java
SE applications on an embedded device, such as Raspberry PI,
directly from the NetBeans IDE.
* Java ME Embedded 8 support.
* Several Java Editor enhancements, such as many new Java hints,
Javadoc shown as tooltip, instant rename enhancements, and code
completion exclusions.
* Improved integration with JavaFX Scene Builder.
Java EE
* New PrimeFaces code generators, to generate complete PrimeFaces
skeleton CRUD applications with connection to databases.
* Support for WildFly Server and WebLogic 12.1.3
* Bundled GlassFish updated to 4.1
* Tomcat 8.0.15 and TomEE support, including out-of-box JPA, JSF
and JAXRS configuration and data sources.
* Facelets Template Client wizard asks for sections to generate.
* Code completion for template sections, and within JSF composite
components.
* Enhanced CDI integration in beans.xml file, with code completion
for alternative classes and stereotypes.
* More flexibility for JPA hints, which can be disabled, enabled,
and warning level changed.
Maven
* New Maven graph layout switcher.
* Navigator shows POM goals.
* Additional web resources shown in Projects window.
* Improved Maven performance when re-running Web applications.
* Improved Maven performance of "Apply Code Changes" while
debugging.
JavaScript
* RequireJS Support
* AngularJS navigation via hyperlinking from view to controllers.
* Many enhancements for AngularJS in code completion between
artifacts, such as code completion in the view to properties
defined in controllers.
* Code completion support in Knockout templates.
* New editor support for creating JQuery widgets and plugins.
* Debugging of JavaScript code executed in Nashorn (JDK 8+) script
engine is supported.
HTML5
* Android 4.4 WebKit debugging supported for Cordova 3.3+.
* New Karma test runner support.
* New Grunt build support.
* Avatar.js is available in the Plugin Manager, via Tools | Plugins.
After installation, you're able to create Avatar.js projects.
PHP
* Support for PHP 5.6.
* New support for Nette tester.
* New support for PHP CS Fixer.
* Enhancements for Twig, Latte, and Neon.
* Composer supported by New Project Wizard.
C/C++
* New Breadcrumbs feature for navigation in editor.
* New GDB Console to enable usage of command line GDB mode.
* New hints and code completions.
* Improved remote performance.
Platform
* Enhanced flexibility in the Window System, such as split of
editor via drag and drop, and a new API to customize editor tabs.
* New design of user interface for managing Project Groups.
* Files in folders can be sorted by extension.
Miscellaneous
* Profiler enhancements: Profile on embedded platforms, show
thread owning monitor for lock contention, and improved Threads view.
* Versioning enhancements: Support for Subversion 1.8 working
copies, various enhancements to Git and Mercurial support.
* Task Schedule and other new features in Tasks window for bug tracking.