Commit graph

236260 commits

Author SHA1 Message Date
wiz
068b8d08f3 Update to 1.4.8, provided by Mayuresh on pkgsrc-users.
* 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.
2015-07-12 08:40:48 +00:00
wiz
a3167d27dd Updated games/lgogdownloader to 2.24 2015-07-12 08:32:17 +00:00
wiz
dd79c21bbf Update to 2.24:
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
2015-07-12 08:32:08 +00:00
wiz
bbae3217dc Updated www/p5-HTTP-Message to 6.08 2015-07-12 08:04:44 +00:00
wiz
70b03edfa1 Update to 6.08:
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)
2015-07-12 08:04:36 +00:00
wen
0b0b2af5f9 Updated cad/py-simpy to 3.0.8 2015-07-12 07:58:43 +00:00
wen
3656f59b27 Update to 3.0.8
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.
2015-07-12 07:56:09 +00:00
dholland
ffcd1131f8 dtcpclient 2015-07-12 07:27:12 +00:00
dholland
6d45e6a17f Use BROKEN_EXCEPT_ON_PLATFORM for package requiring minor porting. 2015-07-12 07:22:08 +00:00
dholland
b72c1daae2 Remove bogus ONLY_FOR_PLATFORM.
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.
2015-07-12 07:19:13 +00:00
pgoyette
9f9eeca29a The game debugger tool is not provided as a patch file. It was submitted
and accepted by upstream.
2015-07-12 07:14:43 +00:00
dholland
f1bb000a6c typo 2015-07-12 07:05:19 +00:00
dholland
0f1754e983 Relax ONLY_FOR_PLATFORM to *-*-i386. Was limited to NetBSD, FreeBSD, and
Linux but there's no obvious reason in the source and it's just been that
way since the package was first added a long time ago.
2015-07-12 07:02:13 +00:00
dholland
dbc63f62aa systrace was removed in NetBSD 5.0; update ONLY_FOR_PLATFORM accordingly.
(probably this package should be removed entirely)
2015-07-12 06:52:58 +00:00
dholland
1548a371ef Add MirBSD and Bitrig to ONLY_FOR_PLATFORM; should just build. Also,
the package explicitly claims to support Linux, so add that too.
2015-07-12 06:43:24 +00:00
dholland
c8b354dc5f Add MirBSD and Bitrig to ONLY_FOR_PLATFORM. They most likely won't
build out of the box but should require only minor attention.
2015-07-12 06:40:46 +00:00
dholland
c1c86e32a2 Add MirBSD and Bitrig to ONLY_FOR_PLATFORM. They won't build out of
the box, but should only require minor attention. This way they stand
some chance of getting it.
2015-07-12 06:38:23 +00:00
dholland
2e93a06c6d Use BROKEN_EXCEPT_ON_PLATFORM for package requiring porting. This
depends on tunneling interfaces and such, so porting isn't entirely
trivial; but most remaining pkgsrc platforms are like one it already
supports.
2015-07-12 06:31:26 +00:00
dholland
a0d30944e5 Expand ONLY_FOR_PLATFORM: the package internally thinks it supports
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.
2015-07-12 06:25:37 +00:00
dholland
22959d8584 Use BROKEN_EXCEPT_FOR_PLATFORM for package that needs porting. Also,
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.
2015-07-12 06:20:01 +00:00
dholland
ad1d3244a1 Don't use "*BSD" in ONLY_FOR_PLATFORM as it is both an
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.
2015-07-12 06:06:14 +00:00
dholland
f25e49319b Sync the logic that decides whether to pull in openssl with the makefile
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 :-/
2015-07-12 05:36:50 +00:00
dholland
b5690f5ec3 Drop ONLY_FOR_PLATFORM. A quick review of the source shows nothing
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.
2015-07-12 05:31:47 +00:00
dholland
093ab270bf Use BROKEN_EXCEPT_ON_PLATFORM instead of ONLY_FOR_PLATFORM for package
that needs porting.
2015-07-12 05:14:20 +00:00
dholland
c67510fa15 Remove bogus ONLY_FOR_PLATFORM. This package is just a .jar file (without
even any docs to speak of) and will run anywhere that has a suitable
Java VM.
2015-07-12 05:12:10 +00:00
dholland
56d48b6ad7 Remove bogus ONLY_FOR_PLATFORM. This package is just a .jar file and
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.
2015-07-12 05:10:32 +00:00
dholland
b7691dde27 Drop spurious ONLY_FOR_PLATFORM. This package is a binary blob
(it's a .jar file and some docs) so it will run on anything.

XXX: packages that are binary blobs ought to be tagged somehow
2015-07-12 05:05:50 +00:00
dholland
69ff3b52fd Set SPECIAL_PERMS and use user-destdir mode instead of privileged
destdir mode.
2015-07-12 04:59:55 +00:00
wen
50e703a640 Updated math/p5-Number-Tolerant to 1.706 2015-07-12 03:27:23 +00:00
wen
2afc7db360 Update to 1.706
Upstream changes:
1.706     2015-03-22 12:27:08-04:00 America/New_York
        - do not allow offsets with inverted/broken offset values

1.705     2014-11-16 13:59:01-05:00 America/New_York
        - correct reversed-order of parameters in documentation for
          Test::Tolerant

1.704     2014-10-30 23:11:41-04:00 America/New_York
        - do not rely on feature.pm -- that was an accident

1.703     2014-02-01 19:31:40-05:00 America/New_York
        - overload tolerances for ~~ operator (thanks, Smylers!)

1.702     2013-10-07 10:22:17 America/New_York
          update bugtracker

          avoid circular loading problems (with a nasty hack)

          fix spelling error; thanks, Alexandre Mestiashvili!
2015-07-12 03:26:17 +00:00
wen
f862501e04 Updated databases/p5-DBIx-Class-Helpers to 2.030001 2015-07-12 03:22:38 +00:00
wen
6cbded313e Update to 2.030001
Update DEPENDS

Upstream changes:
2.030001  2015-07-10 22:38:58-07:00 America/Los_Angeles
 - Make ::Schema::Verifier aggregate errors instead of dying on first one

2.030000  2015-07-01 10:11:42-07:00 America/Los_Angeles
 - Add ::Row::OnColumnMissing (Thanks ZipRecruiter!)

2.029000  2015-06-27 14:16:31-07:00 America/Los_Angeles
 - Add ::ResultSet::OneRow (Thanks Aran Deltac!)

2.028000  2015-05-30 17:06:01-05:00 America/Chicago
 - Add ::Verifier::RelationshipColumnName (Thanks for the idea mcsnolte!)
 - Add ::ResultSet::Shortcut::Search (Closes GH#44 and GH#47) (Thanks moltar!)

2.027001  2015-05-16 11:47:15-05:00 America/Chicago
 - Fix missing POD in ::ResultSet::Explain

2.027000  2015-05-08 19:35:13-05:00 America/Chicago
 - Add ::Verifier::Parent

2.026000  2015-05-02 00:27:28-05:00 America/Chicago
 - Add new ::Schema::Verifier framework
 - ... including inaugural ::Verifier::C3
2015-07-12 03:21:34 +00:00
wen
02c3eaaea5 Updated databases/p5-DBIx-Class to 0.082820 2015-07-12 03:12:29 +00:00
wen
fdd15273c9 Update to 0.082820
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)
2015-07-12 03:10:28 +00:00
wiz
3e12d975d1 Another PKGREVISION bump for a reimport. 2015-07-12 00:50:26 +00:00
wiz
643c44f612 Update comments for gnome option. 2015-07-12 00:48:14 +00:00
wiz
5779d5027a Added net/gnome-online-accounts version 3.16.3 2015-07-12 00:47:06 +00:00
wiz
787b7d2cad + gnome-online-accounts. 2015-07-12 00:46:55 +00:00
wiz
4dbd44461c Import gnome-online-accounts-3.16.3 as net/gnome-online-accounts.
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).
2015-07-12 00:46:43 +00:00
wiz
1d09d2a67c Updated www/webkit-gtk to 2.8.1 2015-07-12 00:45:42 +00:00
wiz
3a231859f9 Added www/webkit24-gtk version 2.4.9nb1 2015-07-12 00:45:09 +00:00
wiz
b9e8d5ceb8 Update to 2.8 and new 4.0 webkit API. From Leonardo Taccari in pkgsrc-wip.
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.
2015-07-12 00:44:46 +00:00
wiz
b26bd1eae8 Switch from www/webkit-gtk to www/webkit24-gtk. Bump PKGREVISION. 2015-07-12 00:39:55 +00:00
wiz
e0b9500793 + webkit24-gtk. 2015-07-12 00:38:00 +00:00
wiz
b6dafe7567 Re-import webkit-gtk as webkit24-gtk-2.4.9nb1 as www/webkit24-gtk to make
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.
2015-07-12 00:37:47 +00:00
sevan
20d954bcc8 Always install man-pages
Patch from maintainer.

Reviewed by wiz@
2015-07-11 23:44:21 +00:00
wiz
8d9d7e0465 Fix previous (hi martin! PKGVERSION != PKGREVISION) 2015-07-11 23:40:49 +00:00
kamil
30551ed053 Package is not Python3 ready
Reported by Joyent.
2015-07-11 23:19:54 +00:00
asau
a1200c52e0 Updated devel/netbeans-ide to 8.0.2 2015-07-11 19:29:24 +00:00
asau
5d47c48e78 Update to NetBeans 8.0.2.
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.
2015-07-11 19:21:13 +00:00