| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
From the changelog [1]:
Some of the fixes included in this release are:
* kio-fish: Only store password in KWallet if the user asked for it.
* The Umbrello Fixes for adding multiline c++ comment support.
* The scrolling behavior in the Okular document viewer has been
improved and is more usable with free-spinning mouse wheels
* A regression that sometimes caused the JuK music player to
crash on start has been fixed
* The Kdenlive video editor has received many stability updates,
including a fix to the DVD chapter creation and a fix that
improves the handling of timecodes, improved handling of missing
clips, draw “photo” frame on image clips to differentiate from
video clips., and previews in the timeline
* KMail now correctly handles existing maildir folders when adding
a new maildir profile and no longer crashes when adding too many
recipients
* Import and export of Kontact settings has been enhanced to include
more data
[1] https://kde.org/announcements/changelog-releases.php?version=20.04.1
Notes:
svn path=/head/; revision=535307
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
KDE's April 2020 Apps Update
A new bundle of KDE applications is here! In these releases, you can expect to
find more features, stability improvements, and more user-friendly tools that
will help you work more effectively.
There are dozens of changes to look forward to in most of your favorite
applications. Take Dolphin, for example. Windows Samba shares are now fully
discoverable.
On the topic of playing music: the Elisa music player is adding features by
leaps and bounds. This release brings a new “Now Playing” view, easy
accessibility through the system tray, and an option to minimize the playlist
whenever you want. Thanks to the recently-added visual shuffle mode, it’s much
easier to rearrange your music in the playlists.
These are just the highlights of what’s new in KDE’s applications this month.
Read on to find out about everything we’ve prepared for you.
Announcement:
https://kde.org/announcements/releases/2020-04-apps-update/
Notes:
svn path=/head/; revision=532696
|
|
|
|
| |
Notes:
svn path=/head/; revision=527897
|
|
|
|
|
|
|
|
| |
Changelog:
https://kde.org/info/releases-19.12.2.php
Notes:
svn path=/head/; revision=525396
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
January 09, 2020. Over 120 individual programs plus dozens of programmer
libraries and feature plugins are released simultaneously as part of KDE’s
release service.
Today they all get new bugfix source releases.
Release Notes: https://community.kde.org/Releases/19.12_Release_Notes
Changelog: https://kde.org/announcements/changelog-releases.php?version=19.12.1
Notes:
svn path=/head/; revision=522541
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
New versions of KDE applications landing in December
The release of new versions for KDE applications is part of KDE’s continued
effort to bring you a complete and up-to-date catalog of fully-featured,
beautiful and useful programs for your system.
Available now are new versions of KDE’s file browser Dolphin; Kdenlive, one of
the most complete open source video editors; the document viewer Okular; KDE’s
image viewer, Gwenview; and all of your other favorite KDE apps and utilities.
All of these applications have been improved, making them faster and more
stable and they boast exciting new features. The new versions of KDE
applications let you be productive and creative, while at the same time making
use of KDE software easy and fun.
We hope you enjoy all the novel features and improvements worked into all of
KDE’s apps!
Announcement: https://kde.org/announcements/releases/2019-12-apps-update/
Notes:
svn path=/head/; revision=519955
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
November 07, 2019.
Today KDE released the third stability update for KDE Applications 19.08. This
release contains only bugfixes and translation updates, providing a safe and
pleasant update for everyone.
More than a dozen recorded bugfixes include improvements to Kontact, Ark,
Cantor, K3b, Kdenlive, Konsole, Okular, Spectacle, Umbrello, among others.
Improvements include:
* In the video-editor Kdenlive, compositions no longer disappear when
reopening a project with locked tracks
* Okular's annotation view now shows creation times in local time zone
instead of UTC
* Keyboard control has been improved in the Spectacle screenshot utility
You can find the full list of changes here:
https://kde.org/announcements/fulllog_applications-aether.php?version=19.08.3
Notes:
svn path=/head/; revision=517112
|
|
|
|
| |
Notes:
svn path=/head/; revision=516396
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3
to GCC 9.1 under most circumstances now after revision 507371.
This includes ports
- with USE_GCC=yes or USE_GCC=any,
- with USES=fortran,
- using Mk/bsd.octave.mk which in turn features USES=fortran, and
- with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang,
c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, everything INDEX-11 shows with a dependency on lang/gcc9 now.
PR: 238330
Notes:
svn path=/head/; revision=507372
|
|
|
|
|
|
|
|
| |
PR: 235093
Submitted by: Piotr Kubaj <pkubaj@anongoth.pl>
Notes:
svn path=/head/; revision=492466
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
a symbol matches multiple clauses the last one takes precedence. If the
catch-all is last it captures everything. In the case of Qt5 libraries
this caused all symbols to have a Qt_5 label while some should have
Qt_5_PRIVATE_API. This only affects lld because GNU ld always gives the
catch-all lowest priority.
Older versions of Qt5Webengine exported some memory allocation symbols from
the bundled Chromium. Version 5.9 stopped exporting these [1] but the
symbols were kept as weak wrappers for the standard allocation functions to
maintain binary compatibility. [2][3] The problem is that the call to the
standard function in these weak wrappers is only resolved to the standard
function if there's a call to this standard function in other parts of
Qt5Webengine, because only then is there a non-weak symbol that takes
precedence over the weak one. If there's no such non-weak symbol the call
in the weak wrapper resolves to the weak wrapper itself creating an infinite
call loop that overflows the stack and causes a crash. Some of the
allocation functions are variants of C++ new and delete and it probably
depends on the compiler whether these variants are used in other parts of
Qt5Webengine.
Remove the weak wrappers (make them Linux specific). This isn't binary
compatible but we are already breaking that with the changes to the symbol
versions.
[1] https://github.com/qt/qtwebengine/commit/5c2cbfccf9aafb547b0b30914c4056abd25942a4
[2] https://github.com/qt/qtwebengine/commit/2ed5054e3a800fa97c2c9e920ba1e6ea4b6ef2a5
[3] https://github.com/qt/qtwebengine/commit/009f5ebb4bd6e50188671e0815a5dae6afe39db5
Bump all ports that depend on Qt5.
PR: 234070
Exp-run by: antoine
Approved by: kde (adridg)
Notes:
svn path=/head/; revision=490472
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Ports that build out of source now simply can use "USES=cmake"
instead of "USES=cmake:outsource". Ports that fail to build
out of source now need to specify "USES=cmake:insource".
I tried to only set insource where explictely needed.
PR: 232038
Exp-run by: antoine
Notes:
svn path=/head/; revision=488341
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
From now on, ports that depend on Qt4 will have to set
USES= qt:4
USE_QT= foo bar
ports depending on Qt5 will use
USES= qt:5
USE_QT= foo bar
PR: 229225
Exp-run by: antoine
Reviewed by: mat
Approved by: portmgr (antoine)
Differential Revision: →https://reviews.freebsd.org/D15540
Notes:
svn path=/head/; revision=473503
|
|
|
|
| |
Notes:
svn path=/head/; revision=468531
|
|
|
|
| |
Notes:
svn path=/head/; revision=468529
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Unfortunately, this also affects some ports using QT3 as a GUI toolkit.
Changes to infrastructure files:
- bsd.kde.mk : obsolete, remove
- bsd.qt.mk : note that a CONFLICTS_BUILD line can probably go after a while
- CHANGES : document the removals from bsd.port.mk
- KNOBS : remove KDE and QT (KDE4 and QT4 should be used instead)
- MOVED : add the removed ports
PR: ports/180745
Submitted by: rene
Approved by: portmgr (bapt)
Exp-run by: bapt
Notes:
svn path=/head/; revision=323748
|
|
|
|
|
|
|
| |
Approved by: portmgr (bapt)
Notes:
svn path=/head/; revision=316464
|
|
|
|
|
|
|
|
|
|
|
|
| |
Thank you Shawn for your work.
While here: trim headers, convert to optionsng
PR: ports/175949
Submitted by: Shane Bell <shanjobe@gmail.com>
Notes:
svn path=/head/; revision=311911
|
|
|
|
| |
Notes:
svn path=/head/; revision=297915
|
|
|
|
|
|
|
| |
Approved by: maintainer, via mail
Notes:
svn path=/head/; revision=295571
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead
PR: 157936
Submitted by: myself
Exp-runs by: pav
Approved by: pav
Notes:
svn path=/head/; revision=282282
|
|
|
|
|
|
|
|
|
|
| |
In the soon to be committed glib and gtk update, the INSTALLS_ICONS macro
will gain the long missing gtk-update-icon-theme dependancy.
After talking with members from of our KDE team. There isn't any indication
that this gtk util is usefull for KDE.
Notes:
svn path=/head/; revision=278534
|
|
|
|
| |
Notes:
svn path=/head/; revision=271305
|
|
|
|
|
|
|
| |
Reminded by: miwi
Notes:
svn path=/head/; revision=269631
|
|
|
|
| |
Notes:
svn path=/head/; revision=265663
|
|
|
|
| |
Notes:
svn path=/head/; revision=255371
|
|
|
|
|
|
|
|
| |
Reviewed by: exp8 run on pointyhat
Supported by: miwi
Notes:
svn path=/head/; revision=251605
|
|
|
|
| |
Notes:
svn path=/head/; revision=249285
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
-Update libtool and libltdl to 2.2.6a.
-Remove devel/libtool15 and devel/libltdl15.
-Fix ports build with libtool22/libltdl22.
-Bump ports that depend on libltdl22 due to shared library version change.
-Explain what to do update in the UPDATING.
It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop
and applications in the runtime.
With help: marcus and kwm
Pointyhat-exp: a few times by pav
Tested by: pgollucci, "Romain Tartière" <romain@blogreen.org>, and
a few MarcusCom CVS users. Also, I might have missed a few.
Repocopy by: marcus
Approved by: portmgr
Notes:
svn path=/head/; revision=238781
|
|
|
|
|
|
|
|
|
| |
bumped or updated
Requested by: edwin
Notes:
svn path=/head/; revision=238701
|
|
|
|
|
|
|
| |
Suggested by: rafan
Notes:
svn path=/head/; revision=225291
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The affected ports are the ones with gettext as a run-dependency
according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT
in Makefile (29 of them).
PR: ports/124340
Submitted by: edwin@
Approved by: portmgr (pav)
Notes:
svn path=/head/; revision=214430
|
|
|
|
|
|
|
|
| |
PR: 119816
Submitted by: Shane Bell <decept0@gmail.com> (maintainer)
Notes:
svn path=/head/; revision=205898
|
|
|
|
|
|
|
|
|
| |
PR: ports/116810
Submitted by: Shane Bell <decept0 gmail.com> (maintainer)
Approved by: miwi (co-mentor)
Notes:
svn path=/head/; revision=201567
|
|
|
|
|
|
|
|
| |
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}.
Notes:
svn path=/head/; revision=191544
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
www.kde-apps.org
www.kde-look.org
www.gnome-look.org
changed their file location.
PR: ports/109389
Noticed by: Phillip Neumann <pneumann at gmail.com>
Approved by: portmgr (pav)
Notes:
svn path=/head/; revision=185659
|
|
|
|
|
|
|
|
| |
PR: ports/99876
Submitted by: maintainer
Notes:
svn path=/head/; revision=167155
|
|
Features:
* Smoothly rolls down from the top of your screen
* Tabbed interface
* Configurable dimensions and animation speed
* Skinnable
* Sophisticated DCOP interface
WWW: http://extragear.kde.org/apps/yakuake/
PR: ports/94674
Submitted by: decept
Notes:
svn path=/head/; revision=167118
|