Version up 0.8.13
[platform/core/graphics/tizenvg.git] / CONTRIBUTING.md
index 5713ff5..b06e3cb 100644 (file)
@@ -4,15 +4,11 @@ We always appreciate your contribution. ThorVG doesn't expect perfect patch cont
 Hermet Park (hermet) is the lead maintainer. Also there are designated maintainers you can request your pull-request for separate modules.
 
 <b>common:</b> Junsu Choi (JSUYA) <br />
-<b>sw_engine:</b> Junsu Choi (JSUYA), Mira Grudzinska (mgrudzinska), Michal Szczecinski (mihashco) <br />
-<b>gl_engine:</b> Prudhvi Raj Vasireddi (prudhvirajv) <br />
-<b>svg_loader:</b> Junsu Choi (JSUYA), Mira Grudzinska (mgrudzinska), Michal Maciola (mmaciola) <br />
-<b>jpg_loader:</b> Michal Maciola (mmaciola) <br />
-<b>tvg_loader:</b> Michal Maciola (mmaciola) <br />
+<b>sw_engine:</b> Junsu Choi (JSUYA), Mira Grudzinska (mgrudzinska), Peter Vullings (projectitis) <br />
+<b>svg_loader:</b> Junsu Choi (JSUYA), Mira Grudzinska (mgrudzinska) <br />
 <b>tvg_saver:</b> Mira Grudzinska (mgrudzinska) <br />
-<b>wasm:</b> Shinwoo Kim (kimcinoo), Michal Maciola (mmaciola) <br />
-<b>svg2png:</b> Junsu Choi (JSUYA), Michal Maciola (mmaciola) <br />
-<b>capi:</b> Michal Szczecinski (mihashco), Mira Grudzinska (mgrudzinska) <br />
+<b>svg2png:</b> Junsu Choi (JSUYA) <br />
+<b>capi:</b> Mira Grudzinska (mgrudzinska) <br />
 <br />
 
 ## Self Test & Verification
@@ -46,7 +42,7 @@ If your change don't belonged to any sub modules, you can replace with proper na
 The name must be written in all lower alphabet characters.
   - ex) build / doc / infra / common / sw_engine / gl_engine / svg_loader / examples / wasm / svg2png  ...
 
-- [Feature] is what major function/feature you changed. Normally this indicates a representive file name. 
+- [Feature] is what major function/feature you changed. Normally this indicates a representive file name.
 You can keep the file name, but don't please contain any prefix(tvg) nor suffix(Impl) here.
   - ex) Canvas / TaskScehduler / SvgLoader / SvgBuilder / SwRle / GlRenderer / ...
 
@@ -55,51 +51,51 @@ You can keep the file name, but don't please contain any prefix(tvg) nor suffix(
   - ex) "Fixed compile warnings"
   - ex) "Code refactoring"
   - ex) "Fixed a rendering bug that overlapped shapes inproper way."
-  
+
 - [Description] There is no any strict formats, but it must describe what you did in this patch as far as possible you can describe in detail.
 
   If you fixed any bugs, it must contain below:
-  - what type of bug  
+  - what type of bug
   - conditions to reproduce it
   - root cause
-  - solution 
-  
+  - solution
+
   Or if you add a new feature or function, it must contain below:
   - what sort of features
   - api full specification (if any api additions)
   - any necessity
-  - condition / restriction  
+  - condition / restriction
   - reference or sample
-  
+
   Lastly, please append any issue ticket numbers in this section if any.
-  
-  
+
+
 - Here is a overall commit message what we expect to review:
-  
+
   - common composite: newly added path clipping feature
 
     We introduced new method Paint::composite() to support composite behaviors. </br>
     This allows paints to composite with other paints instances. </br>
     Composite behaviors depend on its composite method type. </br>
-    Here we firstly introduced "ClipPath" method to support clipping by path unit of paint.</br>    
-    
+    Here we firstly introduced "ClipPath" method to support clipping by path unit of paint.</br>
+
     tagetPaint->composite(srcPaint, CompositeMethod::ClipPath);</br>
-    
+
     Beaware if the source paint doesn't contain any path info, clipping won't be applied as you expected.
-    
+
     @API Additions:</br>
     enum CompositeMethod {None = 0, ClipPath}; </br>
     Result Paint::composite(std::unique_ptr<Paint> target, CompositeMethod method) const noexcept;</br>
 
     @Examples: added ClipPath</br>
-    
+
     @References: any links to the references such as screenshot images.
 
     @Issues: 49
 <br />
 
 ## Pull Request
-  
+
 Once you submitted a pull request(PR), please make it sure below check list.
 -  Reviewers: Check Reviewers List
 -  Assignees: You