Changes between Initial Version and Version 1 of WebKitGTK/2.6.x


Ignore:
Timestamp:
Sep 19, 2014 3:39:58 AM (10 years ago)
Author:
Carlos Garcia Campos
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WebKitGTK/2.6.x

    v1 v1  
     1[[PageOutline]]
     2
     3= Preparing for 2.6.0 =
     4
     5WebkitGtk+ '''2.6.0''' will be the next release in the stable series (following  [wiki:WebKitGTK/2.4.x 2.4.x]). We should merge not overly intrusive patches that improve stability or performance, fix build issues, etc. We branched at  r173752 (19/09/14).
     6
     7When filing bugs (http://bugs.webkit.org) against stable release, please prefix them with "[GTK] [Stable]" to ensure they are addressed with high
     8priority. Also, running a debug build and including stack traces is highly encouraged.
     9
     10To get the stable branch code, simply check out
     11http://svn.webkit.org/repository/webkit/releases/WebKitGTK/webkit-2.6
     12
     13Over the next few weeks we'll be merging important fixes into the
     14branch, so be sure to stay up to date. Thanks for your help!
     15
     16== Proposed merges for 2.5.90 ==
     17
     18  * https://bugs.webkit.org/show_bug.cgi?id=136632 ''Webkitgtk 2.5.3: tarball contains APPLE LICENSE file - stating not distributable''
     19
     20== Changes on track ==
     21
     22   * https://bugs.webkit.org/show_bug.cgi?id=136692 ''Race condition with WebKitWebView:is-loading after starting page load''
     23
     24= Previous versions =
     25For changes in older stable branches see: [wiki:WebKitGTK/2.4.x 2.4.x]
     26
     27= Useful commands =
     28
     29To get a wiki-formated list of commits that just got merged:
     30
     31{{{
     32 $ git log --pretty=oneline <commit>.. | cut -d ' ' -f 5- | sed "s,\(.\+\)\(https://bugs.*\),  * ~~[\2] ''\1''~~,"
     33}}}
     34
     35= How to add a webkit-2.6 branch to existing git-svn clone =
     36
     37If 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.6 branch to there, add a new remote to .git/config:
     38{{{
     39[svn-remote "webkit-2.6"]
     40    url = http://svn.webkit.org/repository/webkit/releases/WebKitGTK/webkit-2.6
     41    fetch = :refs/remotes/git-svn-webkit-2.6
     42}}}
     43
     44and run the following commands:
     45{{{
     46git svn fetch webkit-2.6 -r 173752
     47git branch webkit-2.6 git-svn-webkit-2.6
     48git checkout webkit-2.6
     49git svn rebase
     50}}}