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


Ignore:
Timestamp:
Feb 19, 2016 1:00:13 AM (8 years ago)
Author:
Carlos Garcia Campos
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WebKitGTK/2.12.x

    v1 v1  
     1[[PageOutline]]
     2
     3= Preparing for 2.12.0 =
     4
     5WebkitGtk+ '''2.12.0''' will be the next release in the stable series (following  [wiki:WebKitGTK/2.10.x 2.10.x]). We should merge not overly intrusive patches that improve stability or performance, fix build issues, etc. We branched at  r 196806 (19/02/16).
     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(Don't use "[Stable]" if the bug also applies to master, though.)
     10
     11To get the stable branch code, simply check out
     12http://svn.webkit.org/repository/webkit/releases/WebKitGTK/webkit-2.12
     13
     14Over the next few weeks we'll be merging important fixes into the
     15branch, so be sure to stay up to date. Thanks for your help!
     16
     17== Proposed merges for 2.11.91 ==
     18
     19 
     20== Changes on track ==
     21   
     22= Previous versions =
     23For changes in older stable branches see: [wiki:WebKitGTK/2.10.x 2.10.x]
     24
     25= Useful commands =
     26
     27To get a wiki-formated list of commits that just got merged:
     28
     29{{{
     30 $ git log --pretty=oneline <commit>.. | cut -d ' ' -f 5- | sed "s,\(.\+\)\(https://bugs.*\),  * ~~[\2] ''\1''~~,"
     31}}}
     32
     33= How to add a webkit-2.12 branch to existing git-svn clone =
     34
     35If 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.12 branch to there, add a new remote to .git/config:
     36{{{
     37[svn-remote "webkit-2.12"]
     38    url = http://svn.webkit.org/repository/webkit/releases/WebKitGTK/webkit-2.12
     39    fetch = :refs/remotes/git-svn-webkit-2.12
     40}}}
     41
     42and run the following commands:
     43{{{
     44git svn fetch webkit-2.12 -r 196806
     45git branch webkit-2.12 git-svn-webkit-2.12
     46git checkout webkit-2.12
     47git svn rebase
     48}}}