summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2014-11-30Fix PLIST for Linux.markd3-14/+4
2014-11-30Updated graphics/py-Pillow to 2.6.1; Added ↵adam1-1/+10
www/py-djangocms-{file,flash,googlemap,inherit,picture,teaser,text-ckeditor,video}
2014-11-30Added essential py-djangocms plug-ins which used to be part of py-django-cms ↵adam33-1/+2008
package prior to version 3
2014-11-30Changes 2.6.1:adam3-14/+16
- Fix SciPy regression for in Image.resize - Fix manifest to include all test files
2014-11-30Update to argus 3.7markd10-10/+260
* Version 3.7 [2013 Feb 14] holt-winters aberrant behavior detection work around bug in some versions of mod_perl TCP/Freeswitch Ticket system integration better/faster resolver custom dashboards style, css schedules bugfixes Also patches to work with CGI >= 4.0
2014-11-30dragonfly patch ought to ifdef __DragonFly__spz2-6/+5
2014-11-30Update of Mono to version 3.10.0spz54-223/+384
Also: general patch refresh Upstream release notes: Mono 3.10.0 is a bugfix release with a few features. Highlights Implemented System.IO.Compression.FileSystem. Uri now implements the .NET 4.5 behavior, it can be reverted to the old behavior in the same way by setting the System.Uri::s_IriParsing static field to false. Performance Remove unnecessary locking from core metadata parsing functions. Avoid cache thrashing of locals array when looping over enumerator. Known Issues The OSX packages have an invalid libgdiplus library that affects users of System.Drawing that requires it to work. This specially affects Xamarin.Mac users that fit the following criteria: Uses Xamarin.Mac Classic (Unified is unaffected). Uses the subsets of System.Drawing that use libgdiplus.dylib internally - System.Drawing.RectangleF, PointF, Colors are unaffected - System.Drawing.Bitmap, and font for example are affected The symptom of the problem is your application failing with: “System.TypeInitializationException: An exception was thrown by the type initializer for System.Drawing.GDIPlus —> System.Exception: GdiplusStartup” Bug fixes +++++++++ Runtime Fix support for unaligned offsets in the store_membase_imm opcodes. Fixes #23267. Fix the lookup of nested types which have a namespace. Fixes #21653. Increase some opcode sizes. Fixes #23026. Always pass the imt arg to interface calls in gsharedvt methods. Fixes #22624. Store the epilog length in MonoArchEHJitInfo instead of encoding it in jinfo->unwind_desc, since the latter can overflow for methods with large epilogs. Fixes #22685. Add a mono_thread_detach_if_exiting () public api function which can be called by embedding code to detach the runtime if the code is running from a pthread dtor. Fixes #21164. Fix yet another native types problem. Fixes #22053. Fix the leaking of mach ports introduced by 98bbf8512aec0fa01b4426583280f6d231d22187. Fixes #22068. Add support for constrained calls with vtype return types in gsharedvt code. Fixes #22109. Fix the PLATFORM_GNU check so it works with gnueabi etc. as well. Fixes #21520. Don’t make runtime invoke signatures generic. Fixes #21973. Allow v8..v15 in unwind info on arm64. Fixes part of #21615. Fix Process.PrivateMemorySize64 etc. on ios. Fixes #21882. Fix enum->int casts in gsharedvt code. Fixes #21893. Don’t assert when loading a generic methodspec with 0 arity. Fixes #19097. Avoid asserting when a cattr cannot be loaded. Fixes #21653. Avoid making generic calls from gsharedvt methods normally, go through the rgctx infrastructure instead. Fixes #21677. Class Libraries Fix Uri UserInfo parsing. Fixes 23246. Update RequestMessage.RequestUri.AbsoluteUri after redirect. Fixes #22383. Fixes XContainer attempt to create a XNode from a null value. Fixes #20151. Changed XObject OnChanged and OnChanging to use Owner. When XObject.Owner is not a XElement XObject.Parent returns null and the owner would not be notified of changing and changed events. Fixes #18772. Process XslLiteralElements with only child attributes as empty ones. Fixes #14751. ‘finally’ protect ClientRuntimeChannel.Begin/EndProcess(). Fixes #22179. WebClient.OpenWrite() must get the response on close. Fixes #10163. Fix WebClient.UploadValuesTaskAsync(); Fixes #20359. Improve System.Security.Claims. Fixes #22282. Fixed serialization of XmlNode field with attribute XmlAnyElement. Fixes #3211. Handle String::Format with escaped closing }. Fixes #22114 Add a missing check to TypeBuilder.CreateType (). Fixes #22059. Xml Serialization of Base class w/o a parameterless constructor. Removed validation code that did not allowed serialization of base classes without a parameterless constructor. Fixes #6913. Fixed XmlSerializer to handle attribute XmlSchemePrivider.IsAny. XmlSerializer no longer outputs a root element with class name when the class has the attribute XmlSchemeProvider and IsAny is true. Fixes #11916 Test that DeflateStream.Read does read an empty stream. Covers #19313. Reseting all private key values to null is required because a new import may not overwrite existing values. Fixes #18482. Handle quoted filename value. Fixes #21960. Dispose XmlReader using correct value. Fixes #21771. C# Compiler Don’t use `1 naming for compiler generated second level and deeper nested types. Fixes #22893. Extend missing type check to type lookups. Fixes #20933. Fix copy and paste error in constraints checker. Fixes #22131. Speed up nullable tokenizer. Fixes #20195. Coalescing operator if the lhs of a null is a integer type that is larger than the integer type on the rhs. Fixes #22054. Check for duplicate destructors. Fixes #21983. Switch statement with constant block at first label. Fixes #21805. Decimal constants modulo folding. Fixes #21743. Update codegen for boolean loads. Fixes #21685. MSBuild Workaround for issues with CreateItem task where metadata are not generated due to up-to-data inputs. Fixes #23022. Add KeepDuplicates etc. to 4.0 as internal. Fixes #20961. ------------------------------------------------------------------------ Mono 3.8.0 has 711 commits since the last release. This is the work of 61 contributors since May 28. 58 bugs were fixed. Highlights Major performance and scalability improvements across the the whole runtime. Finished the Windows 64 port. Debugger wire protocol optimized for usb connections. Debugger Updated wire protocol better handles high latency connections such as those found when doing USB debugging. Client library now aggressively caches information and batches requests. Under one test scenario single stepping packets transmitted dropped from 2233 to only 16, with the latency going from seconds to 20 milliseconds. Performance The JIT now better handles long remainders by powers of two, generating significantly better code. Over 10x faster code is generated for delegates that are only invoked once. C# features such as async and LINQ produce a lot of those delegates, so this improvement will impact everyone. Improved alias analysis can now handle second order aliases and eliminate null checks. The runtime now has a concurrently readable hashtable that can makes reflection heavy workloads significantly faster and more scalable. Garbage Collection Optimized one of the core data structures of the garbage collector; should result in 5-10% reduction in collection times. Bug fixes +++++++++ Runtime Fix the leaking of mach ports introduced by 98bbf8512aec0fa01b4426583280f6d231d22187. Fixes #22068 Fix Process.PrivateMemorySize64 etc. on ios. Fixes #21882 Fix enum->int casts in gsharedvt code. Fixes #21893 Avoid making generic calls from gsharedvt methods normally, go through the rgctx infrastructure instead. Fixes #21677 Fix another native-types problem. Hopefully fixes #21670 and #21636 Use alias information to eliminate explicit null checks. Fixes #21645 Initialize fields in MonoField:GetFieldOffset () if needed. Fixes part of #21604 Properly handle rethrow outside of catch blocks. Fixes #20412 Disable runtime unit tests on linux, because it cannot be linked due to circular dependencies between libraries. Fixes #21520 When parsing a method header, ensure we pass any available generic context. Fixes #21388 Added new mono_domain_set_config function; used to fix ConfigurationErrorsException in #10468 Only apply the maverick stack size hack to the main thread. Fixes #10096 Don’t hardcode the temp dir to /tmp, use g_get_tmp_dir instead. Fixes #20894 Explicit thread GC data around instead of relying on TLS storage. Fixes #20360 Make WaitForPendingFinalizers () really wait for the finalizers added by a previous GC. Fixes #20503 Fix the marshal7.cs test, longs can be aligned to 4 bytes on 32 bit linux, and the runtime no longer aligns structure sizes to 8 bytes. Fixes #20788 Fix the popping of LMF frames during unwinding. Fixes #20616 Fix the marshalling of ByValTStr types which have a size specified. Fixes #20674 Fix the decoding of MonoJitInfo. Fixes #16439 Make it possible to create views to magic zero size files such as /dev/zero. Fixes #19460 Free static bound delegate wrappers of dynamic methods. Fixes #19058 Don’t perform double accounting of offset for named memory segments. Fixes #20591 Avoid joining attached threads. Fixes #19343 Fix support for custom marshallers defined in other assemblies. Fixes #20020 Fix a jit assertion on a class which contains an empty struct as a static field. Fixes #20349 Applied patch from Kyle Edwards kyleedwardsny@gmail.com. Fix isinf () check with clang. Fixes #20244 Fix constrained type unwrap for enum types. Fixes #18371 Class Libraries Handle quoted filename value. Fixes #21960 Correctly handle partial chunk sizes. Fixes #20583 Tweak Dictionary initial capacity to be more conservative. Fixes #21375 Handle closed-over-null delegates created with IL when using InvokeDynamic. Fixes #21196 Fix a race in a Task test. Fixes #20921 Contract the values array when decoding an array with a negative number and a trailer that evals to zero. Fixes #20456 Fixes issue with expression columns and IsNull. Fixes #20925 Array qsort without head allocation. Fixes #20922 Enum::TryParse ignores leading whitespaces. Fixes #20870 Fix disposing of DelegatingHandler. Fixes #20818 Fix digest authentication (bug #18799) Only recycle ServicePoints from the idle timer (fixes #19823) Changed ConcurrentDictionary.Contains(KeyValuePair<TKey, TValue>) to also compare value. Fixes #16990 Add System.ServiceModel.Security assembly. Fixes #20108 Removed NET_2_1 conditional blocks from FileInfo. Fixes #19862 C# Compiler Update codegen for boolean loads. Fixes #21685 Effective base class can include inherited types. Fixes #21390 Handle duplicate resume point registration. Fixes #21387 Arguments can be empty when reporting missing params argument. Fixes #21215 Flow analysis of moved arguments. Fixes #20983 Run new initializer await checks only in async context. Fixes #20614 Parse numeric expressions using invariant culture. Fixes #20582 Reachability analysis should ignore local variables declarations. Fixes #20603 Check for missing dependencies of container types. Fixes #20382 Resolve event expression when testing left side expression. Fixes #20493 Flow analysis of binary expressions not using logical operators. Fixes #20515 MSBuild Add 4.5.1 framework. Fixes #20827 Parsing conditions with property references. Fixes #20634 Implements property functions using constructor syntax. Fixes #12999 Mono Debugger Avoid clearning event requests if they reference an assembly which is unloaded. Instead, remove the assembly reference from the event request so it stays active. Fixes #9924.
2014-11-30Add Linux LDFLAGS.markd1-1/+2
2014-11-30Explicitly disable Soprano and Nepomuk.markd1-1/+3
2014-11-30Explicitly disable Soprano and SharedDesktopOntologies.markd1-1/+4
2014-11-30Explicitly disable Soprano and Nepomuk.markd1-1/+3
2014-11-30Explicitly disable Nepomuk.markd1-1/+3
2014-11-30Explicitly disable Soprano and Nepomuk.markd1-1/+4
2014-11-30On Linux add ALSA support.markd1-1/+6
2014-11-30Add libotr support. Bump PKGREVISION.markd2-2/+22
2014-11-30Explicitly disable Nepomuk.markd1-1/+4
2014-11-30Update phonon-backend-vls to 0.8.1markd2-7/+7
Code style improvements. VLC 2.2 compatibility Changing the volume through the PulseAudio stream itself is not propagated to Phonon AudioOutputs, meaning the application can not reflect volume changes done through other applications (e.g. a volume mixer). Changing the muteness through the PulseAudio stream is not propagated either. The PulseAudio media.role property (as well as derived properties) is always set to 'video' making all Phonon application use the video category for output device selection (e.g. as seen in the Phonon KCM). Revised the logic used to come up with an icon name for libvlc. Setting the libvlc app id is now only dependent on QCoreApplication::applicationName being set (previously it was also dependent on QCoreApplication::applicationVersion). This change was made to accomodate the fact that most applications neglect to set a version. Prevent cross-thread pause attempts on unpausable media as libvlc internally will call stop when a player can not be paused. This could cause a deadlock when using the paused-play feature with internet streams.
2014-11-30Update to phonon-backend-gstreamer 4.8.0markd2-9/+9
Switched from GStreamer 0.10 to GStreamer 1.0 Correct frame format to not result in a blue tint when using Phonon GStreamer in a QGraphicsView (e.g. Gwenview) Prevent a crash in AudioDataOutput when channel count changes during playback Fixed subtitles auto-loading Fixed a typo in AudioDataOutput::processBuffer that could cause a crash under certain conditions Fixed various memory leaks and optimized memory management
2014-11-30compat.h needs config.hmarkd2-1/+16
2014-11-30Bring up to date PLIST.Linux.markd1-4/+6
2014-11-30Linux needs -pthreadmarkd1-1/+3
Explicitly disable libraw
2014-11-30PLIST.opencl for Linux as well.markd1-2/+2
2014-11-30build with gcc 4.9.markd2-1/+1237
fix compilation of plugin API functions (macros) when compiler optimizations are enabled commit 03c0067272caae88758fd7847689177c0e18b48d
2014-11-30Explicitly disable Soprano and Nepomukmarkd1-1/+3
2014-11-30Updated pkgtools/nih to 0.13.0cheusov1-1/+2
2014-11-30Update to 0.13.0cheusov2-6/+6
NIH_<subcommand>_OPTS variables were introduced. With their help one can configure EVERYTHING from config file. NIH_OPTS config variable was also introduced. nih mark: - new option -n was added. nih install: - Option -D doesn't remove temporary directory. - New options -v and -V were added. - NO_REQPROV_CHECK and NO_REQPROV_CHECK config variables were removed. Use NIH_INSTALL_OPTS instead. nih uninstall: - does not need "nih refresh -b". Thanks to Andrey N. Oktyabrski for the report! Fixed: - Finding a correct dependency now works correctly if dependency is ambiguous. - Unicity problem in "nih install PKGNAME" was fixed. - Analysing file conflicts now works correctly with files containing a space character. - Fix in saving ~/.nih/installed_* files - Check for version emptyness in "fake packages" was added.
2014-11-30Updated devel/rt4 to 4.2.9ryoon1-1/+2
2014-11-30Update to 4.2.9ryoon3-8/+12
Changelog: RT 4.2.9 -- 2014-10-29 General user UI * Fix Subject header during ticket printing (#30362) * Comparisons of long text Custom Fields were erroneously reporting updates (#30378) * Broken logo link for the mobile UI when used with $WebPath * No longer leak base64 data to non-english users who change a Dashboard subscription and futureproof for other Attribute updates (#24665) * Previous column selection is remembered when updating search formats (#16972) * Charts could return quadrupled data for aggregate data (such as Time Worked) depending on your rights configuration. * Charts can now be grouped by Priority * Ticket Creation form now leaves Requestor blank on page reload if you cleared it out. Localizations * "check to delete all values" is now localized Command-line * BeforeDue action now accepts 2D as well as 2d (#30449) * bin/rt no longer shows a default Due date unless one is configured on the Queue. Additionally, Starts and Due are served in your time zone (#20334) Admin * Improvements to the layout of the Group Members page Developer * Fix tests that used send_via_mailgate to properly check returns (#19156) * Improvements to rt-static-docs for generating online documentation * Proper warnings testing for cf_date tests * Remove unused code to render Rules during replies/comments * Undo a regression that meant Custom Fields passed to Ticket->Create needed to be readable by the user creating the ticket. Documentation * Add a mention of SelfService to the documentation of $AllowUserAutocompleteForUnprivileged * Update our backups documentation to cover restoring from the suggested backups. RT 4.2.8 -- 2014-10-02 General user UI * Properly hide ticket list when MoreAboutRequestorTicketList is set to "None" Localizations * Allow text in Squelch box on ModifyPeople page to be translatable. * Updated German, Basque, French, Hungarian, and Russian translations. Admin * Allow $OverrideOutgoingMailFrom to key by queue id, as an alternative to name * Stop calling the deprecated _SQLLimit method when limiting by transaction date * Stop hiding the value of the AllowLoginPasswordAutoComplete setting in System Configuration (#30417) * Resolve CVE-2014-7227, arbitrary execution of code by privileged users via SMIME by way of CVE-2015-6271. Developer * Add a ModifyMaxResults callback for Autocomplete endpoints * Properly pass collection class to ColumnMap in /Elements/TSVExport Documentation * Update POD for AddRoleMember/DeleteRoleMember being in RT::Record::Role::Roles now, not RT::Record. RT 4.2.7 -- 2014-09-11 General user UI * Fix algorithm for determining which links to display in ticket relationship graphs with a MaxDepth * Use "Correspondence added" or "Comment added" rather than the general "Message recorded" * Loading saved charts should load all of their settings (#29015) * Stop fixing the width of "New ticket in" button (#27649) * Record transactions in ticket history when attachments were dropped or truncated due to $MaxAttachmentSize * Still delay transaction loading when "full headers" have been requested * Add an "overdue" class on Due columns, to match DueRelative columns. * Only show "overdue" class if the ticket status is still active * Fix styling of "There are unread messages" box in aileron * Keep date and datetime custom field inputs during failed ticket creation * Silence warnings from emails without Content-Transfer-Encoding headers * Silence warnings on user modify pages for disabled users * Let custom field grouping boxes link on Display pages link to the appropriate anchor on editing pages (#30195) Localizations * Localize "Recursive" column title in group memberships page * Additional missing locstrings for numerous titleboxes * Stop translating titles piecemeal in SelfService (#14736) * Updated Catalan, German, Basque, Italian, Japanese, Dutch, Brazilian Portuguese, and Russian translations Command-line * Reduce values queried using "rt ls" to only those displayed; this speeds request time significantly when a large number of custom fields are applied * Add -s option to "rt comment", to set status when adding a comment or correspondence (#30375) Admin * Add %AdminSearchResultRows configuration for altering the number of rows per page of object types in the administrative interface * Add an additional suggested index on Attachments' Creator for deleting users with Shredder * Fix rt-dump-metadata, by removing PrivateKey from _Accessible (#22465) * Rework internals dealing with characters/bytes, for better internal consistency, and su support DBD::Pg 3.3.0 and above. * Provide rt-mailgate version in User-Agent string (#18420) * Reword errors given for rt-crontool when no valid user is found (#18621) * Show the right error message when rt-crontool fails to load a module (#22991) * Properly detect when rt-server is called without --listen * Detect auto-generated mail in the presence of multiple Precedence: headers * Strip non-word characters from custom field variable names in Simple templates; this allows use of custom fields with spaces (#18446) * Streamline 3.8 -> 4.0 and 4.0 -> 4.2 upgrade steps by reducing the number of ALTER TABLE calls that are run, adding/dropping multiple columns at once (#21309) * Remove LogoImageHeight and LogoImageWidth configuration varables, which had no effect (#26827) Developer * Add a callback to manipulate which link types are displayed on tickets * Allow Object to be a subref in @Attributes in initialdata, to allow for attributes on arbitrary objects * Ignore vim swap files when testing * Allow the SuccessfulLogin callback to alter where RT redirects to * Add a callback to alter arguments to Showhistory * Consistently use ->_GroupingClass when determining record class for grouping lookup. * Allow ->Deprecated to take a loglevel * Switch from MIME::Head->set(), deprecated for the last 16 years, to ->replace() (#18417) Documentation * Correct documentation on where Shredder places sqldump files (#19167) * Consistently use say 1/0 instead of true/false in RT_Config.pm documentation * Document how ordering in lifecycle transitions controls ordering in the status drop-down RT 4.2.6 -- 2014-07-16 General web UI * Fix a regression introduced in 4.2.4, which caused lack of formatting of plain text when responding via the rich text editor. * Allow tables in HTML mail if the optional HTML::Gumbo dependency is installed * Fix a regression in 4.2.5 which prevented core date fields (Due, Starts, etc) from being unset (#30180) * Hide empty transaction custom fields when they have no value; this fixes a regression in 4.2.1 where transaction custom fields began displaying on all transactions. (#29757) * Allow searching on requestor city, state, zip, and country in query builder (#26960) * Don't attempt to parse IP/Date(time) CFs if the value is NULL; this prevents warnings. * Remove border-radius: 0 to allow Firefox to use native text entry widgets (#28233) * Allow Firefox to reflow the data table below the chart on rudder * Whitelist user search from CSRF restrictions * Only include closing paren in MakeClicky link if it included an open paren (#29064) * Canonicalize CF values (including dates, IP addresses, and IP ranges) before comparing to the database value; this prevents spurious "changed from a to a" messages. * Allow downloading 0-length files if they have a filename (#9050) * Quick Create now defaults to the lifecycle's default create status, instead of hardcoding "new" * Show Wikitext CFs in bulk update * Add autocompletion to link boxes on bulk update Internationalization * Add localization strings for Articles admin pages * Add localization strings for user "Create Ticket" user summary portlet * Add new #loc{key} form, to allow for more concise Lifecyles in config * Updated German translation Web administration * Provide a default Category on External custom fields, for performance * Provide a new "Notify Owner or AdminCCs" action * Move search widgets for custom field admin interface to the top of the page, to match other admin pages * Use "LIKE" as the default search operator in the queue admin interface * Enable searching by Lifecycle and SubjectTag in the queue admin interface * Add SubjectTag to the default AdminSearchResultFormat for queues * Move Disabled to the last column of the default Queue admin search result format, to match Scrips * Add Disabled column to AdminSearchResultFormat for Classes, CustomFields, Groups, and Users * Add Disabled ColumnMap entry for Classes, Groups, and Users * Prevent RT from locking up if a too-large image was uploaded for the logo (#29929) * Fix bugs in cascaded CFs of radio buttons and checkboxes when categories contained spaces or periods. * Quiet "No valid Type specified" warnings from queue watcher page for user search results that were left blank (#29993) Server administration * DBD::Pg 3.3.0 conflicts with RT's UTF-8 handling; for this release, it has been blacklisted. If you are using PostgreSQL as your database and have DBD::Pg 3.3.0 installed, you will need to download and install DBD::Pg 3.2.1 from CPAN. * Allow the validator to fix incorrect values for Owner (#28403) * Fix a regression in 4.2.5 which caused errors when calling rt-crontool with a numeric --template argument. * Quiet warnings in the 4.2.2 upgrade step for users upgrading from 4.0.x * Add not_member_of restriction for User shredder plugin * Warnings avoidance for RT::Attachments->Address when run as the System User * Update logo attribute as the current user, to allow auditing of who changed it last * Alter Links table on MySQL to support Unicode URLs (#19338) * Warn on non-ASCII right names (#19339) * Support Sphinx builds compiled with --enable-id64 * For compatibility with RT::Extension::MergeUsers, ensure that Shredder checks that a user (possibly resolved from a merged user) is valid before attempting to shred them * Correctly detect presence of graphviz binary (`dot`), instead of libgraph.so, for perl dependency calculation * When merging instances with identical $Organization values, do not qualify groups and queues Developer * Move AboutThisUser callback back to /Ticket/Elements/ShowGroupMembers where it appears to originate, from where RT 4.2.0 accidentally moved it, /Elements/ShowPrincipal/AboutThisUser * Move all runtime module loading to UNIVERSAL::require * Correct error message from RT::Date->Timezone * Simplify code to assume Postgres 8.4, as RT 4.2 requires * Add more class and id attributes to user admin pages and preferences * Pass right number of arguments to sprintf, for Perl 5.22 compatibility * Move sbin/rt-message-catalog into devel/tools and streamline to unify with Launchpad import format * Adjust more tests for RT_TEST_WEB_HANDLER=inline * Remove dependency checks in t/, as they are covered by required developer dependencies Documentation * Improved documentation for RT::Date * Link POD, URLs, and emails in HTML generated from README * Document "Satisfy any" technique for allowing rt-mailgate to post to RT when $WebRemoteUserAuth and Apache authentication is used * Document explicit steps for adding a new status to a lifecycle
2014-11-30Updated www/php-owncloud to 7.0.3ryoon1-1/+2
2014-11-30Update to 7.0.3ryoon3-1176/+3078
Changelog: Release "7.0.3" Oct 22. 2014 - Some OS X server fixes - Several external storage fixes and improvements - Close session early to speedup apps page loading - Add overwrite.cli.url config option - Fix finding old versions in special cases - Make versions and encryption aware of copy operations - Force loading encryption app in all needed cases - Better filesystem scanning error messages - LDAP wizard fixes - Add configuration switch to enable preview mimetypes - Create backup of all encryption keys before recovery - Add displayname for admins - Better config.sample documentation - Better apps descriptions - Improve visual feedback if recovery key password gets changed - Fix some object store integration issues - Improved data directory configuration - Fix DAV permissions without create permissions - Fix filepicker home icon being partly hidden - Do only follow http and https redirects - Properly delete old previews - Prevent upgrades between more than one major versions - Several security fixes - Lots of smaller improvements ----------------------------- Release "6.0.6" Oct 22. 2014 - Fix finding old versions in special cases - Make versions and encryption aware of copy operations - Force loading encryption app in all needed cases - Better filesystem scanning error messages - LDAP wizard fixes - Add configuration switch to enable preview mimetypes - Create backup of all encryption keys before recovery - Add displayname for admins - Several security fixes - Lots of smaller improvements ----------------------------- Release "5.0.18" Oct 22. 2014 - Only allow http and https redirects - Documentation fixes - Several security fixes - Several smaller fixes ----------------------------- Release "7.0.2" Aug 26. 2014 - App upgrading stability improvements - Make default share folder configurable - Improve readability of error messages - Log failed authentication - S3 key fixes - Fix range requests with encryption - Several LDAP fixes - Remove obsolete 'Download preparing' message for zip downloads - Remove not working checks from code checker - No error if we try to delete a file which no longer exists - Fix detection of system wide mount points - Simplify App navigation - Add group management to public api - Remove confusing 'automatic logon rejected' message - Implement a txt preview fallback for the case that ttf is not support - Fix tiny thumbnail bug - Don't display share permission if resharing was disabled by the admin - Close session right before the download starts - Fix date display in filepicker - Don't touch non-oc tables when doing the InnoDB repair step - Several Documents fixes - Correctly handle public uploads activities - Add better 4 image previews to gallery ----------------------------- Release "6.0.5" Aug 26. 2014 - Documentation improvements - fix anonymous upload if logged-in - Fix handling of special characters in group names - Fix downloading of big files in special situations - More consistent handling of debug mode - Fix sharing email notifications - Disabling upload button if upload is not possible - Fix detection of system wide mount points - Handle video viewer in sharing links correctly - Update encryption keys recursively if a folder was moved - Enable download button for public folders - Handle exceptions if file to too big for trash-bin correctly - Quota fixes - Avoid unnecessary writing to the DB when preferences are not changed - Disable download button if zip download is disabled - Fix searching for users in special situations - Mount-point handling fixes - Correctly handle storage stats for trash bin - Remove etag warning for trash bin - Hardened SFTP host verification ----------------------------- Release "7.0.1" Aug 4. 2014 - Set maximum width for notification so they don´t overlap the whole header - Don't preload videos on public sharing - Fix preview size calculation under certain conditions - Fix to always show all available versions in the versions dropdown - Support WebDAV copy operation and make encryption aware of it - Make sure to set the expire date if a date is set as default - Improved link icon for better UX - Fix rendering of blank template - Only call exec if is is enabled by PHP - Limit app menu icon size - Show a warning in the personal settings and admin settins if the encyption keys are not yet initialized - Always remove share permission if user is excluded from sharing - Add OCS api call to set expire date for link shares - Improved db schema migration for sqlite - Don't try to execute background jobs that no longer exist - Improve look of search on mobile, save space in top bar - Set core version after a successful update to make upgrade more robust of app upgrades fail - Verify whether download URLs are valid - Fix preview animation on uploading - Prevent cron.php to trigger apps updating - Fix remote share when remote server is installed at the root - Fix files sorting - Fix calendar import - Fix gallery pause icon - Several contacts fixes specifically for PHP 5.3 - Make updater more robust ----------------------------- Release "7.0.0" July 23. 2014 - New files view including sorting and endless scrolling - Server to Server sharing - Sharing overview - Improved sharing admin control - No more mandatory Shared folder - Improved ownCloud Documents features - Hugely improved Activity app including email notifications - Mobile optimized webinterface - Password strength indicator - Significant speed improvements - New user-management - Support for Swift object stores - Email configuration wizard - Email template editor - Improved upgrade process`
2014-11-29Add upstream bug report URL.wiz3-5/+7
2014-11-29Provide exec_path for cwrappers-20141129 and require that version.joerg1-2/+3
2014-11-29cwrappers-20141129:joerg4-22/+55
- Export path to the wrapper via config file and use that to replace the libtool call in the relink command. - Do not drop rpath entries when processing the relink command, they are still needed.
2014-11-29Don't pass -I without argument to the compiler.joerg2-1/+16
2014-11-29Add comment to patch.wiz2-3/+5
2014-11-29Remove obsolete patch.wiz2-34/+1
2014-11-29Updated multimedia/x265 to 1.4adam1-1/+2
2014-11-29Changes 1.4:adam3-10/+10
* encoder: emit an Active Parameter Sets SEI in stream headers if interlaced * encoder: give more warnings when features are automatically disabled * api: allow --psy-rdoq values up to 50; it can be beneficial for film grain * docs: improve --pmode documentation, the feature is fully functional * analysis: do not allow top-skip and depth earlyout in --pmode with --rd 5/6 * asm: correct wrong index name * docs: update preset table and various command line options * fix rd=0,1 * analysis: fix for --rd 0, do not assume a CU is only inter or intra * analysis: rect cost compare typo fix for pmode * search: ensure RDOQ entropy state is always initialized for chroma intra
2014-11-29Updated audio/flac to 1.3.1adam1-1/+2
2014-11-29Changes 1.3.1:adam3-76/+8
* Improved decoding efficiency of all bit depths but especially so for 24 bits for IA32 architecture. * Faster encoding using SSE and AVX. * Fixed bartlett, bartlett_hann and triangle functions. * New apodization functions partial_tukey and punchout_tukey for improved compression. * Retuned compression presets to incorporate new apodization functions. * Fix -Wcast-align warnings on armhf architecture
2014-11-29Note update of netpgpverify to 20141129agc1-1/+2
2014-11-29Update netpgpverify to version 20141129agc3-4/+4
+ enhancement to tiger.c (from apb, IIRC) to use the union rather than dubious and probably unportable casts. + bump version number
2014-11-29Updated devel/glib2 to 2.42.1prlw11-2/+1
(We don't want to try 2.43.1 from the development series.)
2014-11-29Updated devel/glib2 to 2.42.1prlw11-1/+2
2014-11-29Update glib2 to 2.42.1prlw14-40/+9
Overview of changes in GLib 2.42.1 ================================== * This release disables deprecation warnings by default * Bugs fixed: 728256 gcredentials: add NetBSD support (no more patch-gio_gioenums.h) 736806 gtask: Fix reference count loop causing leaks 737143 Include <stdint.h> in glib/valgrind.h 738170 g_byte_array_new_take() doesn't initialize array->alloc 738197 g_cond_timed_wait() doesn't time out on Mac OS X * Translation updates: Bengali (India) Bulgarian Gujarati Italian Norwegian bokmål Telugu
2014-11-29Updated databases/mysql-connector-c++ to 1.1.5adam1-1/+2
2014-11-29Changes 1.1.5:adam3-7/+9
* It was not possible to delete multiple connection attributes using the OPT_CONNECT_ATTR_DELETE option. This can now be done using the std::list< sql::SQLString > type. * MySQL_Prepared_Statement::getMoreResults() functionality has been implemented, so multiple result sets now can be fetched using a prepared statement. * The following connection options have been implemented: MYSQL_DEFAULT_AUTH, MYSQL_OPT_CONNECT_ATTR_DELETE, MYSQL_OPT_CONNECT_ATTR_RESET, MYSQL_OPT_LOCAL_INFILE, MYSQL_PLUGIN_DIR, MYSQL_READ_DEFAULT_FILE, MYSQL_READ_DEFAULT_GROUP, MYSQL_SET_CHARSET_DIR, and max_statement_timeout for session-based query timeout. * These functions were added: Connection::isValid() checks whether the connection is alive, and Connection::reconnect() reconnects if the connection has gone down. * The Boost dependency was removed from the Connector/C++ API headers. These headers were using the boost::variant type, making it impossible to use Connector/C++ binaries without having Boost installed.
2014-11-29Added print/pmw version 4.28prlw11-1/+2
2014-11-29Add pmw 4.28prlw17-1/+128
Philip (Hazel)'s Music Writer is a high quality music typesetting program.
2014-11-29Updated databases/mysql55 to 5.5.41; www/py-django-cms to 3.0.7adam1-1/+4