[[PageOutline]] = Preparing for 2.10.0 = WebkitGtk+ '''2.10.0''' will be the next release in the stable series (following [wiki:WebKitGTK/2.8.x 2.8.x]). We should merge not overly intrusive patches that improve stability or performance, fix build issues, etc. We branched at r188381 (13/08/15). When filing bugs (http://bugs.webkit.org) against stable release, please prefix them with "[GTK] [Stable]" to ensure they are addressed with high priority. Also, running a debug build and including stack traces is highly encouraged. To get the stable branch code, simply check out http://svn.webkit.org/repository/webkit/releases/WebKitGTK/webkit-2.10 Over the next few weeks we'll be merging important fixes into the branch, so be sure to stay up to date. Thanks for your help! == Proposed merges for 2.9.92 == * http://trac.webkit.org/changeset/188973 ''[GTK] Disable ACCELERATED_2D_CANVAS by default'' * https://bugs.webkit.org/show_bug.cgi?id=148606 ''[GTK] [Stable] Build GL texture mapper only if USE_TEXTURE_MAPPER_GL'' * https://bugs.webkit.org/show_bug.cgi?id=148607 ''[GTK] [Stable] InstallMissingMediaPluginsPermissionRequest not defined when building without GStreamer'' * http://trac.webkit.org/changeset/189170 ''[Freetype] FontCache::strengthOfFirstAlias leaks an FcPattern'' * http://trac.webkit.org/changeset/189133 ''JavaScriptCore fails to build using GCC 5'' * http://trac.webkit.org/changeset/189526 ''Crash when WebCore::SQLiteFileSystem::openDatabase is called from multiple threads'' * http://trac.webkit.org/changeset/189566 ''[GTK] Volume bar is broken'' Translations: * http://trac.webkit.org/changeset/189661 ''[GTK] [l10n] Updated Turkish translation of WebKitGTK+'' * http://trac.webkit.org/changeset/189663 ''[l10n] Updated Polish translation of WebKitGTK+'' * http://trac.webkit.org/changeset/189664 ''[l10n] Updated Bulgarian translation'' * http://trac.webkit.org/changeset/189665 ''Webkit Tamil translations updated'' * http://trac.webkit.org/changeset/189666 ''Updated Slovenian translation'' * http://trac.webkit.org/changeset/189667 ''Updated Spanish translation'' * http://trac.webkit.org/changeset/189673 ''Webkit Gujarati Translations'' == Proposed merges for 2.9.91 == * http://trac.webkit.org/changeset/188912 ''Require GCC version at least 4.9'' * ~~http://trac.webkit.org/changeset/188902 ''Clear cairo-gl surface for initialization''~~ == Changes on track == = Previous versions = For changes in older stable branches see: [wiki:WebKitGTK/2.8.x 2.8.x] = Useful commands = To get a wiki-formated list of commits that just got merged: {{{ $ git log --pretty=oneline .. | cut -d ' ' -f 5- | sed "s,\(.\+\)\(https://bugs.*\), * ~~[\2] ''\1''~~," }}} = How to add a webkit-2.10 branch to existing git-svn clone = If you have already cloned git://git.webkit.org/WebKit.git, it only contains a git-svn clone of the svn trunk. To add webkit-2.10 branch to there, add a new remote to .git/config: {{{ [svn-remote "webkit-2.10"] url = http://svn.webkit.org/repository/webkit/releases/WebKitGTK/webkit-2.10 fetch = :refs/remotes/git-svn-webkit-2.10 }}} and run the following commands: {{{ git svn fetch webkit-2.10 -r 188381 git branch webkit-2.10 git-svn-webkit-2.10 git checkout webkit-2.10 git svn rebase }}}