Deployed da41b6d with MkDocs version: 1.0.4

This commit is contained in:
Christian Schabesberger 2019-07-02 13:24:37 +01:00
parent dbcbf2bad6
commit bc52d25446
59 changed files with 1794 additions and 1748 deletions

7
00_Prepare_everything/index.html Executable file → Normal file
View File

@ -153,10 +153,9 @@
<div class="section"> <div class="section">
<h1 id="before-you-start">Before You Start</h1> <h1 id="before-you-start">Before You Start</h1>
<p>These documents will guide you through the process of creating your own Extractor <p>These documents will guide you through the process of understanding or creating your own Extractor
service of which will enable NewPipe to access additional streaming services, such as the currently supported YouTube and SoundCloud. service of which will enable NewPipe to access additional streaming services, such as the currently supported YouTube, SoundCloud and MediaCCC.
The whole documentation consists of this page, which explains the general concept of the NewPipeExtractor, as well as our The whole documentation consists of this page and <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/">Jdoc</a> setup, which explains the general concept of the NewPipeExtractor.</p>
<a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/">Jdoc</a> setup.</p>
<p><strong>IMPORTANT!!!</strong> This is likely to be the worst documentation you have ever read, so do not hesitate to <p><strong>IMPORTANT!!!</strong> This is likely to be the worst documentation you have ever read, so do not hesitate to
<a href="https://github.com/teamnewpipe/documentation/issues">report</a> if <a href="https://github.com/teamnewpipe/documentation/issues">report</a> if
you find any spelling errors, incomplete parts or you simply don't understand something. We are an open community you find any spelling errors, incomplete parts or you simply don't understand something. We are an open community

77
01_Concept_of_the_extractor/index.html Executable file → Normal file
View File

@ -75,7 +75,7 @@
<li><a class="toctree-l3" href="#collectorextractor-pattern-for-lists">Collector/Extractor Pattern for Lists</a></li> <li><a class="toctree-l3" href="#collectorextractor-pattern-for-lists">Collector/Extractor Pattern for Lists</a></li>
<li><a class="toctree-l3" href="#infoitems-encapsulated-in-pages">InfoItems Encapsulated in Pages</a></li> <li><a class="toctree-l3" href="#listextractor">ListExtractor</a></li>
</ul> </ul>
@ -196,15 +196,16 @@ try {
<h2 id="collectorextractor-pattern-for-lists">Collector/Extractor Pattern for Lists</h2> <h2 id="collectorextractor-pattern-for-lists">Collector/Extractor Pattern for Lists</h2>
<p>Information can be represented as a list. In NewPipe, a list is represented by a <p>Information can be represented as a list. In NewPipe, a list is represented by a
<a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/InfoItemsCollector.html">InfoItemsCollector</a>. <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/InfoItemsCollector.html">InfoItemsCollector</a>.
A InfoItemCollector will collect and assemble a list of <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/InfoItem.html">InfoItem</a>. A InfoItemsCollector will collect and assemble a list of <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/InfoItem.html">InfoItem</a>.
For each item that should be extracted, a new Extractor must be created, and given to the InfoItemCollector via <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/InfoItemsCollector.html#commit-E-">commit()</a>.</p> For each item that should be extracted, a new Extractor must be created, and given to the InfoItemsCollector via <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/InfoItemsCollector.html#commit-E-">commit()</a>.</p>
<p><img alt="InfoItemsCollector_objectdiagram.svg" src="../img/InfoItemsCollector_objectdiagram.svg" /></p> <p><img alt="InfoItemsCollector_objectdiagram.svg" src="../img/InfoItemsCollector_objectdiagram.svg" /></p>
<p>If you are implementing a list for your service you need to extend InfoItem containing the extracted information <p>If you are implementing a list in your service you need to implement an <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/Extractor.html">InfoItemExtractor</a>,
and implement an <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/Extractor.html">InfoItemExtractor</a>, that will be able to retreve data for one and only one InfoItem. This extractor will then be <em>comitted</em> to the <strong>InfoItemsCollector</strong> that can collect the type of InfoItems you want to generate.</p>
that will return the data of one InfoItem.</p>
<p>A common implementation would look like this:</p> <p>A common implementation would look like this:</p>
<pre><code>private MyInfoItemCollector collectInfoItemsFromElement(Element e) { <pre><code>private SomeInfoItemCollector collectInfoItemsFromElement(Element e) {
MyInfoItemCollector collector = new MyInfoItemCollector(getServiceId()); // See *Some* as something like Stream or Channel
// e.g. StreamInfoItemsCollector, and ChannelInfoItemsCollector are provided by NP
SomeInfoItemCollector collector = new SomeInfoItemCollector(getServiceId());
for(final Element li : element.children()) { for(final Element li : element.children()) {
collector.commit(new InfoItemExtractor() { collector.commit(new InfoItemExtractor() {
@ -225,15 +226,21 @@ that will return the data of one InfoItem.</p>
</code></pre> </code></pre>
<h2 id="infoitems-encapsulated-in-pages">InfoItems Encapsulated in Pages</h2> <h2 id="listextractor">ListExtractor</h2>
<p>There is more to know about lists:</p>
<ol>
<li>
<p>When a streaming site shows a list of items, it usually offers some additional information about that list like its title, a thumbnail, <p>When a streaming site shows a list of items, it usually offers some additional information about that list like its title, a thumbnail,
and its creator. Such info can be called <strong>list header</strong>.</p> and its creator. Such info can be called <strong>list header</strong>.</p>
<p>When a website shows a long list of items it usually does not load the whole list, but only a part of it. In order to get more items you may have to click on a next page button, or scroll down. </p> </li>
<p>This is why a list in NewPipe lists are chopped down into smaller lists called <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/ListExtractor.InfoItemsPage.html">InfoItemsPage</a>s. Each page has its own URL, and needs to be extracted separately.</p> <li>
<p>Additional metadata about the list and extracting multiple pages can be handled by a <p>When a website shows a long list of items it usually does not load the whole list, but only a part of it. In order to get more items you may have to click on a next page button, or scroll down.</p>
<a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/ListExtractor.html">ListExtractor</a>, </li>
and its <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/ListExtractor.InfoItemsPage.html">ListExtractor.InfoItemsPage</a>.</p> </ol>
<p>For extracting list header information it behaves like a regular extractor. For handling <code>InfoItemsPages</code> it adds methods <p>Both of these Problems are fixed by the <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/ListExtractor.html">ListExtractor</a> which takes care about extracting additional metadata about the liast,
and by chopping down lists into several pages, so called <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/ListExtractor.InfoItemsPage.html">InfoItemsPage</a>s.
Each page has its own URL, and needs to be extracted separately.</p>
<p>For extracting list header information a <code>ListExtractor</code> behaves like a regular extractor. For handling <code>InfoItemsPages</code> it adds methods
such as:</p> such as:</p>
<ul> <ul>
<li><a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/ListExtractor.html#getInitialPage--">getInitialPage()</a> <li><a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/ListExtractor.html#getInitialPage--">getInitialPage()</a>
@ -245,6 +252,46 @@ such as:</p>
</ul> </ul>
<p>The reason why the first page is handled special is because many Websites such as YouTube will load the first page of <p>The reason why the first page is handled special is because many Websites such as YouTube will load the first page of
items like a regular web page, but all the others as an AJAX request.</p> items like a regular web page, but all the others as an AJAX request.</p>
<p>An InfoItemsPage itself has two constructors which take these parameters:
- The <strong>InfoitemsCollector</strong> of the list that the page should represent
- A <strong>nextPageUrl</strong> which represents the url of the following page (may be null if not page follows).
- Optionally <strong>errors</strong> which is a list of Exceptions that may have happened during extracton.</p>
<p>Here is a simplified reference implementation of a list extractor that only extracts pages, but not metadata:</p>
<pre><code>class MyListExtractor extends ListExtractor {
...
private Document document;
...
public InfoItemsPage&lt;SomeInfoItem&gt; getPage(pageUrl)
throws ExtractionException {
SomeInfoItemCollector collector = new SomeInfoItemCollector(getServiceId());
document = myFunctionToGetThePageHTMLWhatever(pageUrl);
//remember this part from the simple list extraction
for(final Element li : document.children()) {
collector.commit(new InfoItemExtractor() {
@Override
public String getName() throws ParsingException {
...
}
@Override
public String getUrl() throws ParsingException {
...
}
...
}
return new InfoItemsPage&lt;SomeInfoItem&gt;(collector, myFunctionToGetTheNextPageUrl(document));
}
public InfoItemsPage&lt;SomeInfoItem&gt; getInitialPage() {
//document here got initialzied by the fetch() function.
return getPage(getTheCurrentPageUrl(document));
}
...
}
</code></pre>
</div> </div>
</div> </div>

0
02_Concept_of_LinkHandler/index.html Executable file → Normal file
View File

0
03_Implement_a_service/index.html Executable file → Normal file
View File

0
04_Run_changes_in_App/index.html Executable file → Normal file
View File

0
05_releasing/index.html Executable file → Normal file
View File

0
06_documentation/index.html Executable file → Normal file
View File

0
07_maintainers_view/index.html Executable file → Normal file
View File

0
404.html Executable file → Normal file
View File

124
css/github.min.css vendored Executable file → Normal file
View File

@ -1,62 +1,62 @@
.hljs { .hljs {
display:block; display:block;
overflow-x:auto; overflow-x:auto;
padding:1em; padding:1em;
color:#333; color:#333;
background:#f8f8f8 background:#f8f8f8
} }
.hljs-comment,.hljs-quote { .hljs-comment,.hljs-quote {
color:#998; color:#998;
font-style:italic font-style:italic
} }
.hljs-keyword,.hljs-selector-tag,.hljs-subst { .hljs-keyword,.hljs-selector-tag,.hljs-subst {
color:#333; color:#333;
font-weight:bold font-weight:bold
} }
.hljs-number,.hljs-literal,.hljs-variable,.hljs-template-variable,.hljs-tag .hljs-attr { .hljs-number,.hljs-literal,.hljs-variable,.hljs-template-variable,.hljs-tag .hljs-attr {
color:#008080 color:#008080
} }
.hljs-string,.hljs-doctag { .hljs-string,.hljs-doctag {
color:#d14 color:#d14
} }
.hljs-title,.hljs-section,.hljs-selector-id { .hljs-title,.hljs-section,.hljs-selector-id {
color:#900; color:#900;
font-weight:bold font-weight:bold
} }
.hljs-subst { .hljs-subst {
font-weight:normal font-weight:normal
} }
.hljs-type,.hljs-class .hljs-title { .hljs-type,.hljs-class .hljs-title {
color:#458; color:#458;
font-weight:bold font-weight:bold
} }
.hljs-tag,.hljs-name,.hljs-attribute { .hljs-tag,.hljs-name,.hljs-attribute {
color:#000080; color:#000080;
font-weight:normal font-weight:normal
} }
.hljs-regexp,.hljs-link { .hljs-regexp,.hljs-link {
color:#009926 color:#009926
} }
.hljs-symbol,.hljs-bullet { .hljs-symbol,.hljs-bullet {
color:#990073 color:#990073
} }
.hljs-built_in,.hljs-builtin-name { .hljs-built_in,.hljs-builtin-name {
color:#0086b3 color:#0086b3
} }
.hljs-meta { .hljs-meta {
color:#999; color:#999;
font-weight:bold font-weight:bold
} }
.hljs-deletion { .hljs-deletion {
background:#fdd background:#fdd
} }
.hljs-addition { .hljs-addition {
background:#dfd background:#dfd
} }
.hljs-emphasis { .hljs-emphasis {
font-style:italic font-style:italic
} }
.hljs-strong { .hljs-strong {
font-weight:bold font-weight:bold
} }

230
css/highlight.css Executable file → Normal file
View File

@ -1,115 +1,115 @@
.codehilite code, .codehilite pre{color:#3F3F3F;background-color:#F7F7F7; .codehilite code, .codehilite pre{color:#3F3F3F;background-color:#F7F7F7;
overflow: auto; overflow: auto;
box-sizing: border-box; box-sizing: border-box;
padding: 0.01em 16px; padding: 0.01em 16px;
padding-top: 0.01em; padding-top: 0.01em;
padding-right-value: 16px; padding-right-value: 16px;
padding-bottom: 0.01em; padding-bottom: 0.01em;
padding-left-value: 16px; padding-left-value: 16px;
padding-left-ltr-source: physical; padding-left-ltr-source: physical;
padding-left-rtl-source: physical; padding-left-rtl-source: physical;
padding-right-ltr-source: physical; padding-right-ltr-source: physical;
padding-right-rtl-source: physical; padding-right-rtl-source: physical;
border-radius: 16px !important; border-radius: 16px !important;
border-top-left-radius: 16px; border-top-left-radius: 16px;
border-top-right-radius: 16px; border-top-right-radius: 16px;
border-bottom-right-radius: 16px; border-bottom-right-radius: 16px;
border-bottom-left-radius: 16px; border-bottom-left-radius: 16px;
border: 1px solid #CCC !important; border: 1px solid #CCC !important;
border-top-width: 1px; border-top-width: 1px;
border-right-width-value: 1px; border-right-width-value: 1px;
border-right-width-ltr-source: physical; border-right-width-ltr-source: physical;
border-right-width-rtl-source: physical; border-right-width-rtl-source: physical;
border-bottom-width: 1px; border-bottom-width: 1px;
border-left-width-value: 1px; border-left-width-value: 1px;
border-left-width-ltr-source: physical; border-left-width-ltr-source: physical;
border-left-width-rtl-source: physical; border-left-width-rtl-source: physical;
border-top-style: solid; border-top-style: solid;
border-right-style-value: solid; border-right-style-value: solid;
border-right-style-ltr-source: physical; border-right-style-ltr-source: physical;
border-right-style-rtl-source: physical; border-right-style-rtl-source: physical;
border-bottom-style: solid; border-bottom-style: solid;
border-left-style-value: solid; border-left-style-value: solid;
border-left-style-ltr-source: physical; border-left-style-ltr-source: physical;
border-left-style-rtl-source: physical; border-left-style-rtl-source: physical;
border-top-color: #CCC; border-top-color: #CCC;
border-right-color-value: #CCC; border-right-color-value: #CCC;
border-right-color-ltr-source: physical; border-right-color-ltr-source: physical;
border-right-color-rtl-source: physical; border-right-color-rtl-source: physical;
border-bottom-color: #CCC; border-bottom-color: #CCC;
border-left-color-value: #CCC; border-left-color-value: #CCC;
border-left-color-ltr-source: physical; border-left-color-ltr-source: physical;
border-left-color-rtl-source: physical; border-left-color-rtl-source: physical;
-moz-border-top-colors: none; -moz-border-top-colors: none;
-moz-border-right-colors: none; -moz-border-right-colors: none;
-moz-border-bottom-colors: none; -moz-border-bottom-colors: none;
-moz-border-left-colors: none; -moz-border-left-colors: none;
border-image-source: none; border-image-source: none;
border-image-slice: 100% 100% 100% 100%; border-image-slice: 100% 100% 100% 100%;
border-image-width: 1 1 1 1; border-image-width: 1 1 1 1;
border-image-outset: 0 0 0 0; border-image-outset: 0 0 0 0;
border-image-repeat: stretch stretch;} border-image-repeat: stretch stretch;}
.codehilite .hll { background-color: #ffffcc } .codehilite .hll { background-color: #ffffcc }
.codehilite .c { color: #999988; font-style: italic } /* Comment */ .codehilite .c { color: #999988; font-style: italic } /* Comment */
.codehilite .err { color: #a61717; background-color: #e3d2d2 } /* Error */ .codehilite .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.codehilite .k { color: #000000; font-weight: bold } /* Keyword */ .codehilite .k { color: #000000; font-weight: bold } /* Keyword */
.codehilite .o { color: #000000; font-weight: bold } /* Operator */ .codehilite .o { color: #000000; font-weight: bold } /* Operator */
.codehilite .cm { color: #999988; font-style: italic } /* Comment.Multiline */ .codehilite .cm { color: #999988; font-style: italic } /* Comment.Multiline */
.codehilite .cp { color: #999999; font-weight: bold; font-style: italic } /* Comment.Preproc */ .codehilite .cp { color: #999999; font-weight: bold; font-style: italic } /* Comment.Preproc */
.codehilite .c1 { color: #999988; font-style: italic } /* Comment.Single */ .codehilite .c1 { color: #999988; font-style: italic } /* Comment.Single */
.codehilite .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */ .codehilite .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
.codehilite .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ .codehilite .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
.codehilite .ge { color: #000000; font-style: italic } /* Generic.Emph */ .codehilite .ge { color: #000000; font-style: italic } /* Generic.Emph */
.codehilite .gr { color: #aa0000 } /* Generic.Error */ .codehilite .gr { color: #aa0000 } /* Generic.Error */
.codehilite .gh { color: #999999 } /* Generic.Heading */ .codehilite .gh { color: #999999 } /* Generic.Heading */
.codehilite .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ .codehilite .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
.codehilite .go { color: #888888 } /* Generic.Output */ .codehilite .go { color: #888888 } /* Generic.Output */
.codehilite .gp { color: #555555 } /* Generic.Prompt */ .codehilite .gp { color: #555555 } /* Generic.Prompt */
.codehilite .gs { font-weight: bold } /* Generic.Strong */ .codehilite .gs { font-weight: bold } /* Generic.Strong */
.codehilite .gu { color: #aaaaaa } /* Generic.Subheading */ .codehilite .gu { color: #aaaaaa } /* Generic.Subheading */
.codehilite .gt { color: #aa0000 } /* Generic.Traceback */ .codehilite .gt { color: #aa0000 } /* Generic.Traceback */
.codehilite .kc { color: #000000; font-weight: bold } /* Keyword.Constant */ .codehilite .kc { color: #000000; font-weight: bold } /* Keyword.Constant */
.codehilite .kd { color: #000000; font-weight: bold } /* Keyword.Declaration */ .codehilite .kd { color: #000000; font-weight: bold } /* Keyword.Declaration */
.codehilite .kn { color: #000000; font-weight: bold } /* Keyword.Namespace */ .codehilite .kn { color: #000000; font-weight: bold } /* Keyword.Namespace */
.codehilite .kp { color: #000000; font-weight: bold } /* Keyword.Pseudo */ .codehilite .kp { color: #000000; font-weight: bold } /* Keyword.Pseudo */
.codehilite .kr { color: #000000; font-weight: bold } /* Keyword.Reserved */ .codehilite .kr { color: #000000; font-weight: bold } /* Keyword.Reserved */
.codehilite .kt { color: #445588; font-weight: bold } /* Keyword.Type */ .codehilite .kt { color: #445588; font-weight: bold } /* Keyword.Type */
.codehilite .m { color: #009999 } /* Literal.Number */ .codehilite .m { color: #009999 } /* Literal.Number */
.codehilite .s { color: #d01040 } /* Literal.String */ .codehilite .s { color: #d01040 } /* Literal.String */
.codehilite .na { color: #008080 } /* Name.Attribute */ .codehilite .na { color: #008080 } /* Name.Attribute */
.codehilite .nb { color: #0086B3 } /* Name.Builtin */ .codehilite .nb { color: #0086B3 } /* Name.Builtin */
.codehilite .nc { color: #445588; font-weight: bold } /* Name.Class */ .codehilite .nc { color: #445588; font-weight: bold } /* Name.Class */
.codehilite .no { color: #008080 } /* Name.Constant */ .codehilite .no { color: #008080 } /* Name.Constant */
.codehilite .nd { color: #3c5d5d; font-weight: bold } /* Name.Decorator */ .codehilite .nd { color: #3c5d5d; font-weight: bold } /* Name.Decorator */
.codehilite .ni { color: #800080 } /* Name.Entity */ .codehilite .ni { color: #800080 } /* Name.Entity */
.codehilite .ne { color: #990000; font-weight: bold } /* Name.Exception */ .codehilite .ne { color: #990000; font-weight: bold } /* Name.Exception */
.codehilite .nf { color: #990000; font-weight: bold } /* Name.Function */ .codehilite .nf { color: #990000; font-weight: bold } /* Name.Function */
.codehilite .nl { color: #990000; font-weight: bold } /* Name.Label */ .codehilite .nl { color: #990000; font-weight: bold } /* Name.Label */
.codehilite .nn { color: #555555 } /* Name.Namespace */ .codehilite .nn { color: #555555 } /* Name.Namespace */
.codehilite .nt { color: #000080 } /* Name.Tag */ .codehilite .nt { color: #000080 } /* Name.Tag */
.codehilite .nv { color: #008080 } /* Name.Variable */ .codehilite .nv { color: #008080 } /* Name.Variable */
.codehilite .ow { color: #000000; font-weight: bold } /* Operator.Word */ .codehilite .ow { color: #000000; font-weight: bold } /* Operator.Word */
.codehilite .w { color: #bbbbbb } /* Text.Whitespace */ .codehilite .w { color: #bbbbbb } /* Text.Whitespace */
.codehilite .mf { color: #009999 } /* Literal.Number.Float */ .codehilite .mf { color: #009999 } /* Literal.Number.Float */
.codehilite .mh { color: #009999 } /* Literal.Number.Hex */ .codehilite .mh { color: #009999 } /* Literal.Number.Hex */
.codehilite .mi { color: #009999 } /* Literal.Number.Integer */ .codehilite .mi { color: #009999 } /* Literal.Number.Integer */
.codehilite .mo { color: #009999 } /* Literal.Number.Oct */ .codehilite .mo { color: #009999 } /* Literal.Number.Oct */
.codehilite .sb { color: #d01040 } /* Literal.String.Backtick */ .codehilite .sb { color: #d01040 } /* Literal.String.Backtick */
.codehilite .sc { color: #d01040 } /* Literal.String.Char */ .codehilite .sc { color: #d01040 } /* Literal.String.Char */
.codehilite .sd { color: #d01040 } /* Literal.String.Doc */ .codehilite .sd { color: #d01040 } /* Literal.String.Doc */
.codehilite .s2 { color: #d01040 } /* Literal.String.Double */ .codehilite .s2 { color: #d01040 } /* Literal.String.Double */
.codehilite .se { color: #d01040 } /* Literal.String.Escape */ .codehilite .se { color: #d01040 } /* Literal.String.Escape */
.codehilite .sh { color: #d01040 } /* Literal.String.Heredoc */ .codehilite .sh { color: #d01040 } /* Literal.String.Heredoc */
.codehilite .si { color: #d01040 } /* Literal.String.Interpol */ .codehilite .si { color: #d01040 } /* Literal.String.Interpol */
.codehilite .sx { color: #d01040 } /* Literal.String.Other */ .codehilite .sx { color: #d01040 } /* Literal.String.Other */
.codehilite .sr { color: #009926 } /* Literal.String.Regex */ .codehilite .sr { color: #009926 } /* Literal.String.Regex */
.codehilite .s1 { color: #d01040 } /* Literal.String.Single */ .codehilite .s1 { color: #d01040 } /* Literal.String.Single */
.codehilite .ss { color: #990073 } /* Literal.String.Symbol */ .codehilite .ss { color: #990073 } /* Literal.String.Symbol */
.codehilite .bp { color: #999999 } /* Name.Builtin.Pseudo */ .codehilite .bp { color: #999999 } /* Name.Builtin.Pseudo */
.codehilite .vc { color: #008080 } /* Name.Variable.Class */ .codehilite .vc { color: #008080 } /* Name.Variable.Class */
.codehilite .vg { color: #008080 } /* Name.Variable.Global */ .codehilite .vg { color: #008080 } /* Name.Variable.Global */
.codehilite .vi { color: #008080 } /* Name.Variable.Instance */ .codehilite .vi { color: #008080 } /* Name.Variable.Instance */
.codehilite .il { color: #009999 } /* Literal.Number.Integer.Long */ .codehilite .il { color: #009999 } /* Literal.Number.Integer.Long */

120
css/local_fonts.css Executable file → Normal file
View File

@ -1,60 +1,60 @@
/* /*
Stylesheet to load all local fonts except Font-Awesome because that is done by the theme. Stylesheet to load all local fonts except Font-Awesome because that is done by the theme.
Add all new fonts below. Add all new fonts below.
*/ */
@font-face { @font-face {
font-family: 'Inconsolata'; font-family: 'Inconsolata';
font-style: normal; font-style: normal;
font-weight: 400; font-weight: 400;
src: local('Inconsolata'), local('Inconsolata-Regular'), url(../fonts/Inconsolata-Regular.ttf) format('truetype'); src: local('Inconsolata'), local('Inconsolata-Regular'), url(../fonts/Inconsolata-Regular.ttf) format('truetype');
} }
@font-face { @font-face {
font-family: 'Inconsolata'; font-family: 'Inconsolata';
font-style: normal; font-style: normal;
font-weight: 700; font-weight: 700;
src: local('Inconsolata Bold'), local('Inconsolata-Bold'), url(../fonts/Inconsolata-Bold.ttf) format('truetype'); src: local('Inconsolata Bold'), local('Inconsolata-Bold'), url(../fonts/Inconsolata-Bold.ttf) format('truetype');
} }
@font-face { @font-face {
font-family: 'Lato'; font-family: 'Lato';
font-style: normal; font-style: normal;
font-weight: 400; font-weight: 400;
src: local('Lato Regular'), local('Lato-Regular'), url(../fonts/Lato-Regular.ttf) format('truetype'); src: local('Lato Regular'), local('Lato-Regular'), url(../fonts/Lato-Regular.ttf) format('truetype');
} }
@font-face { @font-face {
font-family: 'Lato'; font-family: 'Lato';
font-style: normal; font-style: normal;
font-weight: 700; font-weight: 700;
src: local('Lato Bold'), local('Lato-Bold'), url(../fonts/Lato-Bold.ttf) format('truetype'); src: local('Lato Bold'), local('Lato-Bold'), url(../fonts/Lato-Bold.ttf) format('truetype');
} }
@font-face { @font-face {
font-family: 'Lato'; font-family: 'Lato';
font-style: italic; font-style: italic;
font-weight: 400; font-weight: 400;
src: local('Lato Italic'), local('Lato-Italic'), url(../fonts/Lato-Italic.ttf) format('truetype'); src: local('Lato Italic'), local('Lato-Italic'), url(../fonts/Lato-Italic.ttf) format('truetype');
} }
@font-face { @font-face {
font-family: 'Lato'; font-family: 'Lato';
font-style: italic; font-style: italic;
font-weight: 700; font-weight: 700;
src: local('Lato Bold Italic'), local('Lato-BoldItalic'), url(../fonts/Lato-BoldItalic.ttf) format('truetype'); src: local('Lato Bold Italic'), local('Lato-BoldItalic'), url(../fonts/Lato-BoldItalic.ttf) format('truetype');
} }
@font-face { @font-face {
font-family: 'Roboto Slab'; font-family: 'Roboto Slab';
font-style: normal; font-style: normal;
font-weight: 400; font-weight: 400;
src: local('Roboto Slab Regular'), local('RobotoSlab-Regular'), url(../fonts/RobotoSlab-Regular.ttf) format('truetype'); src: local('Roboto Slab Regular'), local('RobotoSlab-Regular'), url(../fonts/RobotoSlab-Regular.ttf) format('truetype');
} }
@font-face { @font-face {
font-family: 'Roboto Slab'; font-family: 'Roboto Slab';
font-style: normal; font-style: normal;
font-weight: 700; font-weight: 700;
src: local('Roboto Slab Bold'), local('RobotoSlab-Bold'), url(../fonts/RobotoSlab-Bold.ttf) format('truetype'); src: local('Roboto Slab Bold'), local('RobotoSlab-Bold'), url(../fonts/RobotoSlab-Bold.ttf) format('truetype');
} }

0
css/theme.css Executable file → Normal file
View File

4
css/theme_child.css Executable file → Normal file
View File

@ -1,3 +1,3 @@
.wy-nav-top i { .wy-nav-top i {
line-height: 50px; line-height: 50px;
} }

0
css/theme_extra.css Executable file → Normal file
View File

0
fonts/Inconsolata-Bold.ttf Executable file → Normal file
View File

0
fonts/Inconsolata-Regular.ttf Executable file → Normal file
View File

0
fonts/Lato-Bold.ttf Executable file → Normal file
View File

0
fonts/Lato-BoldItalic.ttf Executable file → Normal file
View File

0
fonts/Lato-Italic.ttf Executable file → Normal file
View File

0
fonts/Lato-Regular.ttf Executable file → Normal file
View File

0
fonts/RobotoSlab-Bold.ttf Executable file → Normal file
View File

0
fonts/RobotoSlab-Regular.ttf Executable file → Normal file
View File

0
fonts/fontawesome-webfont.eot Executable file → Normal file
View File

0
fonts/fontawesome-webfont.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 193 KiB

After

Width:  |  Height:  |  Size: 193 KiB

0
fonts/fontawesome-webfont.ttf Executable file → Normal file
View File

0
fonts/fontawesome-webfont.woff Executable file → Normal file
View File

78
img/InfoItemsCollector_objectdiagram.svg Executable file → Normal file
View File

@ -1,39 +1,39 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/PR-SVG-20010719/DTD/svg10.dtd"> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/PR-SVG-20010719/DTD/svg10.dtd">
<svg width="22cm" height="8cm" viewBox="199 199 435 159" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <svg width="22cm" height="8cm" viewBox="199 199 435 159" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g> <g>
<rect style="fill: #ffffff" x="200" y="260" width="141.3" height="36"/> <rect style="fill: #ffffff" x="200" y="260" width="141.3" height="36"/>
<rect style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x="200" y="260" width="141.3" height="36"/> <rect style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x="200" y="260" width="141.3" height="36"/>
<text font-size="12.8" style="fill: #000000;text-anchor:middle;font-family:sans-serif;font-style:normal;font-weight:normal" x="270.65" y="281.9"> <text font-size="12.8" style="fill: #000000;text-anchor:middle;font-family:sans-serif;font-style:normal;font-weight:normal" x="270.65" y="281.9">
<tspan x="270.65" y="281.9">:InfoItemsCollector</tspan> <tspan x="270.65" y="281.9">:InfoItemsCollector</tspan>
</text> </text>
<line style="fill: none; fill-opacity:0; stroke-width: 1; stroke: #000000" x1="210" y1="284.9" x2="331.3" y2="284.9"/> <line style="fill: none; fill-opacity:0; stroke-width: 1; stroke: #000000" x1="210" y1="284.9" x2="331.3" y2="284.9"/>
</g> </g>
<g> <g>
<rect style="fill: #ffffff" x="400" y="200" width="232.65" height="36"/> <rect style="fill: #ffffff" x="400" y="200" width="232.65" height="36"/>
<rect style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x="400" y="200" width="232.65" height="36"/> <rect style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x="400" y="200" width="232.65" height="36"/>
<text font-size="12.8" style="fill: #000000;text-anchor:middle;font-family:sans-serif;font-style:normal;font-weight:normal" x="516.325" y="221.9"> <text font-size="12.8" style="fill: #000000;text-anchor:middle;font-family:sans-serif;font-style:normal;font-weight:normal" x="516.325" y="221.9">
<tspan x="516.325" y="221.9">itemExtractor1:InfoItemExtractor</tspan> <tspan x="516.325" y="221.9">itemExtractor1:InfoItemExtractor</tspan>
</text> </text>
<line style="fill: none; fill-opacity:0; stroke-width: 1; stroke: #000000" x1="410" y1="224.9" x2="622.65" y2="224.9"/> <line style="fill: none; fill-opacity:0; stroke-width: 1; stroke: #000000" x1="410" y1="224.9" x2="622.65" y2="224.9"/>
</g> </g>
<g> <g>
<rect style="fill: #ffffff" x="400" y="260" width="232.65" height="36"/> <rect style="fill: #ffffff" x="400" y="260" width="232.65" height="36"/>
<rect style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x="400" y="260" width="232.65" height="36"/> <rect style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x="400" y="260" width="232.65" height="36"/>
<text font-size="12.8" style="fill: #000000;text-anchor:middle;font-family:sans-serif;font-style:normal;font-weight:normal" x="516.325" y="281.9"> <text font-size="12.8" style="fill: #000000;text-anchor:middle;font-family:sans-serif;font-style:normal;font-weight:normal" x="516.325" y="281.9">
<tspan x="516.325" y="281.9">itemExtractor2:InfoItemExtractor</tspan> <tspan x="516.325" y="281.9">itemExtractor2:InfoItemExtractor</tspan>
</text> </text>
<line style="fill: none; fill-opacity:0; stroke-width: 1; stroke: #000000" x1="410" y1="284.9" x2="622.65" y2="284.9"/> <line style="fill: none; fill-opacity:0; stroke-width: 1; stroke: #000000" x1="410" y1="284.9" x2="622.65" y2="284.9"/>
</g> </g>
<g> <g>
<rect style="fill: #ffffff" x="400" y="320" width="232.65" height="36"/> <rect style="fill: #ffffff" x="400" y="320" width="232.65" height="36"/>
<rect style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x="400" y="320" width="232.65" height="36"/> <rect style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x="400" y="320" width="232.65" height="36"/>
<text font-size="12.8" style="fill: #000000;text-anchor:middle;font-family:sans-serif;font-style:normal;font-weight:normal" x="516.325" y="341.9"> <text font-size="12.8" style="fill: #000000;text-anchor:middle;font-family:sans-serif;font-style:normal;font-weight:normal" x="516.325" y="341.9">
<tspan x="516.325" y="341.9">itemExtractor3:InfoItemExtractor</tspan> <tspan x="516.325" y="341.9">itemExtractor3:InfoItemExtractor</tspan>
</text> </text>
<line style="fill: none; fill-opacity:0; stroke-width: 1; stroke: #000000" x1="410" y1="344.9" x2="622.65" y2="344.9"/> <line style="fill: none; fill-opacity:0; stroke-width: 1; stroke: #000000" x1="410" y1="344.9" x2="622.65" y2="344.9"/>
</g> </g>
<polyline style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" points="342.309,278 370.651,278 370.651,218 398.993,218 "/> <polyline style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" points="342.309,278 370.651,278 370.651,218 398.993,218 "/>
<polyline style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" points="342.309,278 343.309,278 397.993,278 398.993,278 "/> <polyline style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" points="342.309,278 343.309,278 397.993,278 398.993,278 "/>
<polyline style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" points="342.309,278 370.651,278 370.651,338 398.993,338 "/> <polyline style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" points="342.309,278 370.651,278 370.651,338 398.993,338 "/>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

0
img/check_path.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 94 KiB

After

Width:  |  Height:  |  Size: 94 KiB

0
img/could_not_decrypt.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 156 KiB

After

Width:  |  Height:  |  Size: 156 KiB

0
img/draft_name.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

0
img/favicon.ico Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

298
img/feature_branch.svg Executable file → Normal file
View File

@ -1,149 +1,149 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg <svg
xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#" xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="210" width="210"
height="300" height="300"
viewBox="385 95 104.17968 152.03365" viewBox="385 95 104.17968 152.03365"
version="1.1" version="1.1"
id="svg39" id="svg39"
sodipodi:docname="feature_branch.svg" sodipodi:docname="feature_branch.svg"
inkscape:version="0.92.3 (2405546, 2018-03-11)"> inkscape:version="0.92.3 (2405546, 2018-03-11)">
<metadata <metadata
id="metadata45"> id="metadata45">
<rdf:RDF> <rdf:RDF>
<cc:Work <cc:Work
rdf:about=""> rdf:about="">
<dc:format>image/svg+xml</dc:format> <dc:format>image/svg+xml</dc:format>
<dc:type <dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title> <dc:title></dc:title>
</cc:Work> </cc:Work>
</rdf:RDF> </rdf:RDF>
</metadata> </metadata>
<defs <defs
id="defs43" /> id="defs43" />
<sodipodi:namedview <sodipodi:namedview
pagecolor="#ffffff" pagecolor="#ffffff"
bordercolor="#666666" bordercolor="#666666"
borderopacity="1" borderopacity="1"
objecttolerance="10" objecttolerance="10"
gridtolerance="10" gridtolerance="10"
guidetolerance="10" guidetolerance="10"
inkscape:pageopacity="0" inkscape:pageopacity="0"
inkscape:pageshadow="2" inkscape:pageshadow="2"
inkscape:window-width="1366" inkscape:window-width="1366"
inkscape:window-height="740" inkscape:window-height="740"
id="namedview41" id="namedview41"
showgrid="false" showgrid="false"
units="px" units="px"
inkscape:zoom="0.48032051" inkscape:zoom="0.48032051"
inkscape:cx="151.1811" inkscape:cx="151.1811"
inkscape:cy="245.66929" inkscape:cy="245.66929"
inkscape:window-x="0" inkscape:window-x="0"
inkscape:window-y="0" inkscape:window-y="0"
inkscape:window-maximized="1" inkscape:window-maximized="1"
inkscape:current-layer="svg39" /> inkscape:current-layer="svg39" />
<g <g
id="Hintergrund" id="Hintergrund"
transform="matrix(0.6187154,0,0,0.6187154,144.56047,34.721636)"> transform="matrix(0.6187154,0,0,0.6187154,144.56047,34.721636)">
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="399" x="399"
y="107.15" y="107.15"
id="text4"> id="text4">
<tspan <tspan
x="399" x="399"
y="107.15" y="107.15"
id="tspan2">dev</tspan> id="tspan2">dev</tspan>
</text> </text>
<circle <circle
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
cx="411" cx="411"
cy="243.14999" cy="243.14999"
id="ellipse6" id="ellipse6"
r="24" /> r="24" />
<g <g
id="g12"> id="g12">
<line <line
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
x1="411" x1="411"
y1="267.14999" y1="267.14999"
x2="410.05899" x2="410.05899"
y2="338.67801" y2="338.67801"
id="line8" /> id="line8" />
<polyline <polyline
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="405.161,330.849 410.029,340.914 415.161,330.981 " points="405.161,330.849 410.029,340.914 415.161,330.981 "
id="polyline10" /> id="polyline10" />
</g> </g>
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="115.1" x="115.1"
y="-31.450001" y="-31.450001"
id="text16"> id="text16">
<tspan <tspan
x="115.1" x="115.1"
y="-31.450001" y="-31.450001"
id="tspan14" /> id="tspan14" />
</text> </text>
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="459.65701" x="459.65701"
y="107.209" y="107.209"
id="text20"> id="text20">
<tspan <tspan
x="459.65701" x="459.65701"
y="107.209" y="107.209"
id="tspan18">feature_xyz</tspan> id="tspan18">feature_xyz</tspan>
</text> </text>
<circle <circle
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
cx="494.25" cx="494.25"
cy="150.39999" cy="150.39999"
id="ellipse22" id="ellipse22"
r="23.25" /> r="23.25" />
<g <g
id="g28"> id="g28">
<path <path
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
d="M 494.25,173.65 C 491,206.15 412,169.15 411.089,214.679" d="M 494.25,173.65 C 491,206.15 412,169.15 411.089,214.679"
id="path24" id="path24"
inkscape:connector-curvature="0" /> inkscape:connector-curvature="0" />
<polyline <polyline
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="406.246,206.816 411.045,216.914 416.244,207.016 " points="406.246,206.816 411.045,216.914 416.244,207.016 "
id="polyline26" /> id="polyline26" />
</g> </g>
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="481" x="481"
y="102" y="102"
id="text32"> id="text32">
<tspan <tspan
x="481" x="481"
y="102" y="102"
id="tspan30" /> id="tspan30" />
</text> </text>
<text <text
font-size="12.7998" font-size="12.7998"
style="font-style:normal;font-weight:normal;font-size:12.79979992px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.79979992px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="505" x="505"
y="103" y="103"
id="text36"> id="text36">
<tspan <tspan
x="505" x="505"
y="103" y="103"
id="tspan34" /> id="tspan34" />
</text> </text>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

320
img/hotfix_branch.svg Executable file → Normal file
View File

@ -1,160 +1,160 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg <svg
xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#" xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="150" width="150"
height="270" height="270"
viewBox="469 90 72.429685 138.47884" viewBox="469 90 72.429685 138.47884"
version="1.1" version="1.1"
id="svg43" id="svg43"
sodipodi:docname="hotfix_branch.svg" sodipodi:docname="hotfix_branch.svg"
inkscape:version="0.92.3 (2405546, 2018-03-11)"> inkscape:version="0.92.3 (2405546, 2018-03-11)">
<metadata <metadata
id="metadata49"> id="metadata49">
<rdf:RDF> <rdf:RDF>
<cc:Work <cc:Work
rdf:about=""> rdf:about="">
<dc:format>image/svg+xml</dc:format> <dc:format>image/svg+xml</dc:format>
<dc:type <dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title> <dc:title></dc:title>
</cc:Work> </cc:Work>
</rdf:RDF> </rdf:RDF>
</metadata> </metadata>
<defs <defs
id="defs47" /> id="defs47" />
<sodipodi:namedview <sodipodi:namedview
pagecolor="#ffffff" pagecolor="#ffffff"
bordercolor="#666666" bordercolor="#666666"
borderopacity="1" borderopacity="1"
objecttolerance="10" objecttolerance="10"
gridtolerance="10" gridtolerance="10"
guidetolerance="10" guidetolerance="10"
inkscape:pageopacity="0" inkscape:pageopacity="0"
inkscape:pageshadow="2" inkscape:pageshadow="2"
inkscape:window-width="1366" inkscape:window-width="1366"
inkscape:window-height="740" inkscape:window-height="740"
id="namedview45" id="namedview45"
showgrid="false" showgrid="false"
units="px" units="px"
inkscape:zoom="1.921282" inkscape:zoom="1.921282"
inkscape:cx="124.67896" inkscape:cx="124.67896"
inkscape:cy="181.09135" inkscape:cy="181.09135"
inkscape:window-x="0" inkscape:window-x="0"
inkscape:window-y="0" inkscape:window-y="0"
inkscape:window-maximized="1" inkscape:window-maximized="1"
inkscape:current-layer="svg43" /> inkscape:current-layer="svg43" />
<g <g
id="Hintergrund" id="Hintergrund"
transform="matrix(0.53799084,0,0,0.53799084,213.8928,44.943413)"> transform="matrix(0.53799084,0,0,0.53799084,213.8928,44.943413)">
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="558" x="558"
y="102.15" y="102.15"
id="text4"> id="text4">
<tspan <tspan
x="558" x="558"
y="102.15" y="102.15"
id="tspan2">master</tspan> id="tspan2">master</tspan>
</text> </text>
<circle <circle
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
cx="588" cx="588"
cy="241.14999" cy="241.14999"
id="ellipse6" id="ellipse6"
r="24" /> r="24" />
<g <g
id="g12"> id="g12">
<line <line
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
x1="588" x1="588"
y1="265.14999" y1="265.14999"
x2="587.05902" x2="587.05902"
y2="336.67801" y2="336.67801"
id="line8" /> id="line8" />
<polyline <polyline
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="582.161,328.849 587.029,338.914 592.161,328.981 " points="582.161,328.849 587.029,338.914 592.161,328.981 "
id="polyline10" /> id="polyline10" />
</g> </g>
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="115.1" x="115.1"
y="-31.450001" y="-31.450001"
id="text16"> id="text16">
<tspan <tspan
x="115.1" x="115.1"
y="-31.450001" y="-31.450001"
id="tspan14" /> id="tspan14" />
</text> </text>
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="476.65799" x="476.65799"
y="104.209" y="104.209"
id="text20"> id="text20">
<tspan <tspan
x="476.65799" x="476.65799"
y="104.209" y="104.209"
id="tspan18">hotfix</tspan> id="tspan18">hotfix</tspan>
</text> </text>
<circle <circle
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
cx="494.25" cx="494.25"
cy="150.39999" cy="150.39999"
id="ellipse22" id="ellipse22"
r="23.25" /> r="23.25" />
<g <g
id="g28"> id="g28">
<path <path
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
d="m 494.25,173.65 c -3.25,32.5 94.75,-6.5 93.839,39.029" d="m 494.25,173.65 c -3.25,32.5 94.75,-6.5 93.839,39.029"
id="path24" id="path24"
inkscape:connector-curvature="0" /> inkscape:connector-curvature="0" />
<polyline <polyline
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="583.246,204.816 588.045,214.914 593.244,205.016 " points="583.246,204.816 588.045,214.914 593.244,205.016 "
id="polyline26" /> id="polyline26" />
</g> </g>
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="481" x="481"
y="102" y="102"
id="text32"> id="text32">
<tspan <tspan
x="481" x="481"
y="102" y="102"
id="tspan30" /> id="tspan30" />
</text> </text>
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="505" x="505"
y="103" y="103"
id="text36"> id="text36">
<tspan <tspan
x="505" x="505"
y="103" y="103"
id="tspan34" /> id="tspan34" />
</text> </text>
<text <text
font-size="12.7998" font-size="12.7998"
style="font-style:normal;font-weight:normal;font-size:12.79979992px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.79979992px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="588" x="588"
y="101" y="101"
id="text40"> id="text40">
<tspan <tspan
x="588" x="588"
y="101" y="101"
id="tspan38" /> id="tspan38" />
</text> </text>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 4.9 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

0
img/jitpack_fail.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 8.8 KiB

After

Width:  |  Height:  |  Size: 8.8 KiB

0
img/kde_in_a_nutshell.jpg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

420
img/merge_into_dev.svg Executable file → Normal file
View File

@ -1,210 +1,210 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg <svg
xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#" xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="310" width="310"
height="300" height="300"
viewBox="390 95 157.2066 158.28308" viewBox="390 95 157.2066 158.28308"
version="1.1" version="1.1"
id="svg65" id="svg65"
sodipodi:docname="merge_into_dev.svg" sodipodi:docname="merge_into_dev.svg"
inkscape:version="0.92.3 (2405546, 2018-03-11)"> inkscape:version="0.92.3 (2405546, 2018-03-11)">
<metadata <metadata
id="metadata71"> id="metadata71">
<rdf:RDF> <rdf:RDF>
<cc:Work <cc:Work
rdf:about=""> rdf:about="">
<dc:format>image/svg+xml</dc:format> <dc:format>image/svg+xml</dc:format>
<dc:type <dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title> <dc:title></dc:title>
</cc:Work> </cc:Work>
</rdf:RDF> </rdf:RDF>
</metadata> </metadata>
<defs <defs
id="defs69" /> id="defs69" />
<sodipodi:namedview <sodipodi:namedview
pagecolor="#ffffff" pagecolor="#ffffff"
bordercolor="#666666" bordercolor="#666666"
borderopacity="1" borderopacity="1"
objecttolerance="10" objecttolerance="10"
gridtolerance="10" gridtolerance="10"
guidetolerance="10" guidetolerance="10"
inkscape:pageopacity="0" inkscape:pageopacity="0"
inkscape:pageshadow="2" inkscape:pageshadow="2"
inkscape:window-width="1366" inkscape:window-width="1366"
inkscape:window-height="740" inkscape:window-height="740"
id="namedview67" id="namedview67"
showgrid="false" showgrid="false"
units="px" units="px"
inkscape:zoom="2.9384314" inkscape:zoom="2.9384314"
inkscape:cx="319.09352" inkscape:cx="319.09352"
inkscape:cy="270.89374" inkscape:cy="270.89374"
inkscape:window-x="0" inkscape:window-x="0"
inkscape:window-y="0" inkscape:window-y="0"
inkscape:window-maximized="1" inkscape:window-maximized="1"
inkscape:current-layer="svg65" /> inkscape:current-layer="svg65" />
<g <g
id="Hintergrund" id="Hintergrund"
transform="matrix(0.4714669,0,0,0.4714669,202.11115,49.067333)"> transform="matrix(0.4714669,0,0,0.4714669,202.11115,49.067333)">
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="399" x="399"
y="107.15" y="107.15"
id="text4"> id="text4">
<tspan <tspan
x="399" x="399"
y="107.15" y="107.15"
id="tspan2">dev</tspan> id="tspan2">dev</tspan>
</text> </text>
<circle <circle
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
cx="417" cx="417"
cy="333.14999" cy="333.14999"
id="ellipse6" id="ellipse6"
r="24" /> r="24" />
<g <g
id="g12"> id="g12">
<line <line
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
x1="417" x1="417"
y1="357.14999" y1="357.14999"
x2="416.05899" x2="416.05899"
y2="428.67801" y2="428.67801"
id="line8" /> id="line8" />
<polyline <polyline
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="411.161,420.849 416.029,430.914 421.161,420.981 " points="411.161,420.849 416.029,430.914 421.161,420.981 "
id="polyline10" /> id="polyline10" />
</g> </g>
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="115.1" x="115.1"
y="-31.450001" y="-31.450001"
id="text16"> id="text16">
<tspan <tspan
x="115.1" x="115.1"
y="-31.450001" y="-31.450001"
id="tspan14" /> id="tspan14" />
</text> </text>
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="470" x="470"
y="108.15" y="108.15"
id="text20"> id="text20">
<tspan <tspan
x="470" x="470"
y="108.15" y="108.15"
id="tspan18">feature_xyz</tspan> id="tspan18">feature_xyz</tspan>
</text> </text>
<circle <circle
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
cx="500.25" cx="500.25"
cy="240.39999" cy="240.39999"
id="ellipse22" id="ellipse22"
r="23.25" /> r="23.25" />
<g <g
id="g28"> id="g28">
<path <path
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
d="M 500.25,263.65 C 497,296.15 418,259.15 417.089,304.679" d="M 500.25,263.65 C 497,296.15 418,259.15 417.089,304.679"
id="path24" id="path24"
inkscape:connector-curvature="0" /> inkscape:connector-curvature="0" />
<polyline <polyline
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="412.246,296.816 417.045,306.914 422.244,297.016 " points="412.246,296.816 417.045,306.914 422.244,297.016 "
id="polyline26" /> id="polyline26" />
</g> </g>
<circle <circle
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
cx="416.75" cx="416.75"
cy="156.89999" cy="156.89999"
id="ellipse30" id="ellipse30"
r="22.75" /> r="22.75" />
<g <g
id="g36"> id="g36">
<path <path
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
d="m 416.75,179.65 c 0.25,32.5 82.25,12.5 83.277,33.033" d="m 416.75,179.65 c 0.25,32.5 82.25,12.5 83.277,33.033"
id="path32" id="path32"
inkscape:connector-curvature="0" /> inkscape:connector-curvature="0" />
<polyline <polyline
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="494.645,205.179 500.138,214.917 504.633,204.68 " points="494.645,205.179 500.138,214.917 504.633,204.68 "
id="polyline34" /> id="polyline34" />
</g> </g>
<g <g
id="g42"> id="g42">
<line <line
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
x1="416.75" x1="416.75"
y1="179.64999" y1="179.64999"
x2="416.991" x2="416.991"
y2="304.67801" y2="304.67801"
id="line38" /> id="line38" />
<polyline <polyline
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="411.976,296.924 416.996,306.914 421.976,296.904 " points="411.976,296.924 416.996,306.914 421.976,296.904 "
id="polyline40" /> id="polyline40" />
</g> </g>
<g <g
id="g48"> id="g48">
<line <line
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
x1="568" x1="568"
y1="160.14999" y1="160.14999"
x2="495.423" x2="495.423"
y2="184.634" y2="184.634"
id="line44" /> id="line44" />
<polygon <polygon
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="497.021,189.372 493.825,179.896 485.948,187.83 " points="497.021,189.372 493.825,179.896 485.948,187.83 "
id="polygon46" /> id="polygon46" />
</g> </g>
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="583" x="583"
y="160.14999" y="160.14999"
id="text54"> id="text54">
<tspan <tspan
x="583" x="583"
y="160.14999" y="160.14999"
id="tspan50">PULL REQUEST</tspan> id="tspan50">PULL REQUEST</tspan>
<tspan <tspan
x="583" x="583"
y="176.14999" y="176.14999"
id="tspan52">Do QA/Codereview here</tspan> id="tspan52">Do QA/Codereview here</tspan>
</text> </text>
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="488.254" x="488.254"
y="106.059" y="106.059"
id="text58"> id="text58">
<tspan <tspan
x="488.254" x="488.254"
y="106.059" y="106.059"
id="tspan56" /> id="tspan56" />
</text> </text>
<text <text
font-size="12.7998" font-size="12.7998"
style="font-style:normal;font-weight:normal;font-size:12.79979992px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.79979992px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="494" x="494"
y="104" y="104"
id="text62"> id="text62">
<tspan <tspan
x="494" x="494"
y="104" y="104"
id="tspan60" /> id="tspan60" />
</text> </text>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 6.5 KiB

After

Width:  |  Height:  |  Size: 6.3 KiB

0
img/onedoes.jpg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 35 KiB

After

Width:  |  Height:  |  Size: 35 KiB

0
img/prepare_tests_passed.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 50 KiB

After

Width:  |  Height:  |  Size: 50 KiB

620
img/rebase_back_hotfix.svg Executable file → Normal file
View File

@ -1,310 +1,310 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg <svg
xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#" xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="250" width="250"
height="300" height="300"
viewBox="90 94 131.85069 151.23026" viewBox="90 94 131.85069 151.23026"
version="1.1" version="1.1"
id="svg103" id="svg103"
sodipodi:docname="rebase_back_hotfix.svg" sodipodi:docname="rebase_back_hotfix.svg"
inkscape:version="0.92.3 (2405546, 2018-03-11)"> inkscape:version="0.92.3 (2405546, 2018-03-11)">
<metadata <metadata
id="metadata109"> id="metadata109">
<rdf:RDF> <rdf:RDF>
<cc:Work <cc:Work
rdf:about=""> rdf:about="">
<dc:format>image/svg+xml</dc:format> <dc:format>image/svg+xml</dc:format>
<dc:type <dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title> <dc:title></dc:title>
</cc:Work> </cc:Work>
</rdf:RDF> </rdf:RDF>
</metadata> </metadata>
<defs <defs
id="defs107" /> id="defs107" />
<sodipodi:namedview <sodipodi:namedview
pagecolor="#ffffff" pagecolor="#ffffff"
bordercolor="#666666" bordercolor="#666666"
borderopacity="1" borderopacity="1"
objecttolerance="10" objecttolerance="10"
gridtolerance="10" gridtolerance="10"
guidetolerance="10" guidetolerance="10"
inkscape:pageopacity="0" inkscape:pageopacity="0"
inkscape:pageshadow="2" inkscape:pageshadow="2"
inkscape:window-width="1366" inkscape:window-width="1366"
inkscape:window-height="740" inkscape:window-height="740"
id="namedview105" id="namedview105"
showgrid="false" showgrid="false"
units="px" units="px"
inkscape:zoom="0.92953528" inkscape:zoom="0.92953528"
inkscape:cx="159.4593" inkscape:cx="159.4593"
inkscape:cy="256.73847" inkscape:cy="256.73847"
inkscape:window-x="0" inkscape:window-x="0"
inkscape:window-y="0" inkscape:window-y="0"
inkscape:window-maximized="1" inkscape:window-maximized="1"
inkscape:current-layer="svg103" /> inkscape:current-layer="svg103" />
<g <g
id="Hintergrund" id="Hintergrund"
transform="matrix(0.44213893,0,0,0.44213893,49.719377,47.656585)"> transform="matrix(0.44213893,0,0,0.44213893,49.719377,47.656585)">
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="356" x="356"
y="106.636" y="106.636"
id="text4"> id="text4">
<tspan <tspan
x="356" x="356"
y="106.636" y="106.636"
id="tspan2">dev</tspan> id="tspan2">dev</tspan>
</text> </text>
<circle <circle
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
cx="362.68799" cx="362.68799"
cy="360.51599" cy="360.51599"
id="ellipse6" id="ellipse6"
r="24" /> r="24" />
<g <g
id="g12"> id="g12">
<line <line
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
x1="362.68799" x1="362.68799"
y1="384.51599" y1="384.51599"
x2="362.04901" x2="362.04901"
y2="442.52802" y2="442.52802"
id="line8" /> id="line8" />
<polyline <polyline
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="357.135,434.71 362.025,444.764 367.134,434.82 " points="357.135,434.71 362.025,444.764 367.134,434.82 "
id="polyline10" /> id="polyline10" />
</g> </g>
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="115.1" x="115.1"
y="-31.450001" y="-31.450001"
id="text16"> id="text16">
<tspan <tspan
x="115.1" x="115.1"
y="-31.450001" y="-31.450001"
id="tspan14" /> id="tspan14" />
</text> </text>
<circle <circle
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
cx="115.354" cx="115.354"
cy="262.09799" cy="262.09799"
id="ellipse18" id="ellipse18"
r="23.25" /> r="23.25" />
<g <g
id="g24"> id="g24">
<path <path
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
d="m 115.354,285.348 c 1.648,35.872 91.902,14.902 92.122,41.962" d="m 115.354,285.348 c 1.648,35.872 91.902,14.902 92.122,41.962"
id="path20" id="path20"
inkscape:connector-curvature="0" /> inkscape:connector-curvature="0" />
<polyline <polyline
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="202.413,319.587 207.494,329.546 212.413,319.506 " points="202.413,319.587 207.494,329.546 212.413,319.506 "
id="polyline22" /> id="polyline22" />
</g> </g>
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="426.254" x="426.254"
y="106.059" y="106.059"
id="text28"> id="text28">
<tspan <tspan
x="426.254" x="426.254"
y="106.059" y="106.059"
id="tspan26" /> id="tspan26" />
</text> </text>
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="432" x="432"
y="104" y="104"
id="text32"> id="text32">
<tspan <tspan
x="432" x="432"
y="104" y="104"
id="tspan30" /> id="tspan30" />
</text> </text>
<circle <circle
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
cx="207.51199" cx="207.51199"
cy="354.78201" cy="354.78201"
id="ellipse34" id="ellipse34"
r="23" /> r="23" />
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="111" x="111"
y="107" y="107"
id="text38"> id="text38">
<tspan <tspan
x="111" x="111"
y="107" y="107"
id="tspan36">hotfix</tspan> id="tspan36">hotfix</tspan>
</text> </text>
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="190" x="190"
y="107" y="107"
id="text42"> id="text42">
<tspan <tspan
x="190" x="190"
y="107" y="107"
id="tspan40">master</tspan> id="tspan40">master</tspan>
</text> </text>
<g <g
id="g48"> id="g48">
<line <line
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
x1="207.51199" x1="207.51199"
y1="377.78201" y1="377.78201"
x2="207.052" x2="207.052"
y2="450.29199" y2="450.29199"
id="line44" /> id="line44" />
<polyline <polyline
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="202.102,442.496 207.038,452.528 212.101,442.56 " points="202.102,442.496 207.038,452.528 212.101,442.56 "
id="polyline46" /> id="polyline46" />
</g> </g>
<circle <circle
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
cx="208.517" cx="208.517"
cy="163.239" cy="163.239"
id="ellipse50" id="ellipse50"
r="20" /> r="20" />
<g <g
id="g56"> id="g56">
<path <path
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
d="m 208.544,184.227 c 0.048,39.375 -94.626,3.592 -93.316,50.151" d="m 208.544,184.227 c 0.048,39.375 -94.626,3.592 -93.316,50.151"
id="path52" id="path52"
inkscape:connector-curvature="0" /> inkscape:connector-curvature="0" />
<polyline <polyline
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="110.012,226.757 115.291,236.613 120.008,226.476 " points="110.012,226.757 115.291,236.613 120.008,226.476 "
id="polyline54" /> id="polyline54" />
</g> </g>
<g <g
id="g62"> id="g62">
<line <line
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
x1="208.51801" x1="208.51801"
y1="183.239" y1="183.239"
x2="207.54201" x2="207.54201"
y2="327.31" y2="327.31"
id="line58" /> id="line58" />
<polyline <polyline
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="202.595,319.512 207.527,329.546 212.595,319.58 " points="202.595,319.512 207.527,329.546 212.595,319.58 "
id="polyline60" /> id="polyline60" />
</g> </g>
<circle <circle
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
cx="363.49799" cx="363.49799"
cy="265.04001" cy="265.04001"
id="ellipse64" id="ellipse64"
r="20" /> r="20" />
<g <g
id="g70"> id="g70">
<line <line
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
x1="363.49799" x1="363.49799"
y1="285.04001" y1="285.04001"
x2="362.758" x2="362.758"
y2="332.04401" y2="332.04401"
id="line66" /> id="line66" />
<polyline <polyline
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="357.881,324.203 362.723,334.28 367.88,324.36 " points="357.881,324.203 362.723,334.28 367.88,324.36 "
id="polyline68" /> id="polyline68" />
</g> </g>
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="461.09601" x="461.09601"
y="151.021" y="151.021"
id="text74"> id="text74">
<tspan <tspan
x="461.09601" x="461.09601"
y="151.021" y="151.021"
id="tspan72" /> id="tspan72" />
</text> </text>
<circle <circle
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
cx="364.63599" cx="364.63599"
cy="169.187" cy="169.187"
id="ellipse76" id="ellipse76"
r="20" /> r="20" />
<g <g
id="g82"> id="g82">
<line <line
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
x1="364.63599" x1="364.63599"
y1="189.187" y1="189.187"
x2="363.58899" x2="363.58899"
y2="240.569" y2="240.569"
id="line78" /> id="line78" />
<polyline <polyline
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="358.748,232.705 363.544,242.804 368.746,232.908 " points="358.748,232.705 363.544,242.804 368.746,232.908 "
id="polyline80" /> id="polyline80" />
</g> </g>
<g <g
id="g88"> id="g88">
<line <line
style="fill:none;stroke:#000000;stroke-width:2;stroke-dasharray:20;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-dasharray:20;stroke-opacity:1"
x1="232.914" x1="232.914"
y1="203.79601" y1="203.79601"
x2="306.76501" x2="306.76501"
y2="204.82899" y2="204.82899"
id="line84" /> id="line84" />
<polygon <polygon
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="306.835,199.829 306.695,209.828 316.764,204.969 " points="306.835,199.829 306.695,209.828 316.764,204.969 "
id="polygon86" /> id="polygon86" />
</g> </g>
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="281.03601" x="281.03601"
y="187.479" y="187.479"
id="text92"> id="text92">
<tspan <tspan
x="281.03601" x="281.03601"
y="187.479" y="187.479"
id="tspan90">REBASE</tspan> id="tspan90">REBASE</tspan>
</text> </text>
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="318.04401" x="318.04401"
y="141.392" y="141.392"
id="text96"> id="text96">
<tspan <tspan
x="318.04401" x="318.04401"
y="141.392" y="141.392"
id="tspan94" /> id="tspan94" />
</text> </text>
<text <text
font-size="12.7998" font-size="12.7998"
style="font-style:normal;font-weight:normal;font-size:12.79979992px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.79979992px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="129" x="129"
y="108" y="108"
id="text100"> id="text100">
<tspan <tspan
x="129" x="129"
y="108" y="108"
id="tspan98" /> id="tspan98" />
</text> </text>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 9.6 KiB

After

Width:  |  Height:  |  Size: 9.3 KiB

676
img/rebase_back_release.svg Executable file → Normal file
View File

@ -1,338 +1,338 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg <svg
xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#" xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="400" width="400"
height="400" height="400"
viewBox="182 94 204.25833 203.3114" viewBox="182 94 204.25833 203.3114"
version="1.1" version="1.1"
id="svg115" id="svg115"
sodipodi:docname="rebase_back_release.svg" sodipodi:docname="rebase_back_release.svg"
inkscape:version="0.92.3 (2405546, 2018-03-11)"> inkscape:version="0.92.3 (2405546, 2018-03-11)">
<metadata <metadata
id="metadata121"> id="metadata121">
<rdf:RDF> <rdf:RDF>
<cc:Work <cc:Work
rdf:about=""> rdf:about="">
<dc:format>image/svg+xml</dc:format> <dc:format>image/svg+xml</dc:format>
<dc:type <dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title> <dc:title></dc:title>
</cc:Work> </cc:Work>
</rdf:RDF> </rdf:RDF>
</metadata> </metadata>
<defs <defs
id="defs119" /> id="defs119" />
<sodipodi:namedview <sodipodi:namedview
pagecolor="#ffffff" pagecolor="#ffffff"
bordercolor="#666666" bordercolor="#666666"
borderopacity="1" borderopacity="1"
objecttolerance="10" objecttolerance="10"
gridtolerance="10" gridtolerance="10"
guidetolerance="10" guidetolerance="10"
inkscape:pageopacity="0" inkscape:pageopacity="0"
inkscape:pageshadow="2" inkscape:pageshadow="2"
inkscape:window-width="1366" inkscape:window-width="1366"
inkscape:window-height="740" inkscape:window-height="740"
id="namedview117" id="namedview117"
showgrid="false" showgrid="false"
units="px" units="px"
inkscape:zoom="0.92953528" inkscape:zoom="0.92953528"
inkscape:cx="185.27914" inkscape:cx="185.27914"
inkscape:cy="250.74271" inkscape:cy="250.74271"
inkscape:window-x="0" inkscape:window-x="0"
inkscape:window-y="0" inkscape:window-y="0"
inkscape:window-maximized="1" inkscape:window-maximized="1"
inkscape:current-layer="svg115" /> inkscape:current-layer="svg115" />
<g <g
id="Hintergrund" id="Hintergrund"
transform="matrix(0.53220791,0,0,0.53220791,84.333466,54.284818)"> transform="matrix(0.53220791,0,0,0.53220791,84.333466,54.284818)">
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="418" x="418"
y="106.636" y="106.636"
id="text4"> id="text4">
<tspan <tspan
x="418" x="418"
y="106.636" y="106.636"
id="tspan2">dev</tspan> id="tspan2">dev</tspan>
</text> </text>
<circle <circle
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
cx="424.68799" cx="424.68799"
cy="360.51599" cy="360.51599"
id="ellipse6" id="ellipse6"
r="24" /> r="24" />
<g <g
id="g12"> id="g12">
<line <line
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
x1="424.68799" x1="424.68799"
y1="384.51599" y1="384.51599"
x2="424.95801" x2="424.95801"
y2="453.056" y2="453.056"
id="line8" /> id="line8" />
<polyline <polyline
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="419.928,445.312 424.967,455.292 429.928,445.272 " points="419.928,445.312 424.967,455.292 429.928,445.272 "
id="polyline10" /> id="polyline10" />
</g> </g>
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="115.1" x="115.1"
y="-31.450001" y="-31.450001"
id="text16"> id="text16">
<tspan <tspan
x="115.1" x="115.1"
y="-31.450001" y="-31.450001"
id="tspan14" /> id="tspan14" />
</text> </text>
<circle <circle
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
cx="323.354" cx="323.354"
cy="266.09799" cy="266.09799"
id="ellipse18" id="ellipse18"
r="23.25" /> r="23.25" />
<g <g
id="g24"> id="g24">
<path <path
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
d="m 323.354,289.348 c 1.648,35.872 101.078,15.636 101.298,42.696" d="m 323.354,289.348 c 1.648,35.872 101.078,15.636 101.298,42.696"
id="path20" id="path20"
inkscape:connector-curvature="0" /> inkscape:connector-curvature="0" />
<polyline <polyline
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="419.589,324.321 424.67,334.28 429.588,324.24 " points="419.589,324.321 424.67,334.28 429.588,324.24 "
id="polyline22" /> id="polyline22" />
</g> </g>
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="488.254" x="488.254"
y="106.059" y="106.059"
id="text28"> id="text28">
<tspan <tspan
x="488.254" x="488.254"
y="106.059" y="106.059"
id="tspan26" /> id="tspan26" />
</text> </text>
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="494" x="494"
y="104" y="104"
id="text32"> id="text32">
<tspan <tspan
x="494" x="494"
y="104" y="104"
id="tspan30" /> id="tspan30" />
</text> </text>
<circle <circle
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
cx="207.51199" cx="207.51199"
cy="354.78201" cy="354.78201"
id="ellipse34" id="ellipse34"
r="23" /> r="23" />
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="287" x="287"
y="106" y="106"
id="text38"> id="text38">
<tspan <tspan
x="287" x="287"
y="106" y="106"
id="tspan36">release_x.y.z</tspan> id="tspan36">release_x.y.z</tspan>
</text> </text>
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="190" x="190"
y="107" y="107"
id="text42"> id="text42">
<tspan <tspan
x="190" x="190"
y="107" y="107"
id="tspan40">master</tspan> id="tspan40">master</tspan>
</text> </text>
<g <g
id="g48"> id="g48">
<line <line
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
x1="207.51199" x1="207.51199"
y1="377.78201" y1="377.78201"
x2="207.052" x2="207.052"
y2="450.29199" y2="450.29199"
id="line44" /> id="line44" />
<polyline <polyline
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="202.102,442.496 207.038,452.528 212.101,442.56 " points="202.102,442.496 207.038,452.528 212.101,442.56 "
id="polyline46" /> id="polyline46" />
</g> </g>
<circle <circle
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
cx="208.517" cx="208.517"
cy="163.239" cy="163.239"
id="ellipse50" id="ellipse50"
r="20" /> r="20" />
<g <g
id="g56"> id="g56">
<path <path
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
d="m 208.543,184.117 c 0.048,39.375 113.375,7.702 114.685,54.261" d="m 208.543,184.117 c 0.048,39.375 113.375,7.702 114.685,54.261"
id="path52" id="path52"
inkscape:connector-curvature="0" /> inkscape:connector-curvature="0" />
<polyline <polyline
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="318.012,230.757 323.291,240.613 328.008,230.476 " points="318.012,230.757 323.291,240.613 328.008,230.476 "
id="polyline54" /> id="polyline54" />
</g> </g>
<g <g
id="g62"> id="g62">
<line <line
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
x1="208.51801" x1="208.51801"
y1="183.239" y1="183.239"
x2="207.54201" x2="207.54201"
y2="327.31" y2="327.31"
id="line58" /> id="line58" />
<polyline <polyline
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="202.595,319.512 207.527,329.546 212.595,319.58 " points="202.595,319.512 207.527,329.546 212.595,319.58 "
id="polyline60" /> id="polyline60" />
</g> </g>
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="517.79999" x="517.79999"
y="196.278" y="196.278"
id="text66"> id="text66">
<tspan <tspan
x="517.79999" x="517.79999"
y="196.278" y="196.278"
id="tspan64">quickfix</tspan> id="tspan64">quickfix</tspan>
</text> </text>
<circle <circle
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
cx="425.49799" cx="425.49799"
cy="265.04001" cy="265.04001"
id="ellipse68" id="ellipse68"
r="20" /> r="20" />
<g <g
id="g74"> id="g74">
<line <line
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
x1="425.49799" x1="425.49799"
y1="285.04001" y1="285.04001"
x2="424.758" x2="424.758"
y2="332.04401" y2="332.04401"
id="line70" /> id="line70" />
<polyline <polyline
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="419.881,324.203 424.723,334.28 429.88,324.36 " points="419.881,324.203 424.723,334.28 429.88,324.36 "
id="polyline72" /> id="polyline72" />
</g> </g>
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="523.09601" x="523.09601"
y="151.021" y="151.021"
id="text78"> id="text78">
<tspan <tspan
x="523.09601" x="523.09601"
y="151.021" y="151.021"
id="tspan76" /> id="tspan76" />
</text> </text>
<g <g
id="g84"> id="g84">
<line <line
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
x1="505.672" x1="505.672"
y1="196.871" y1="196.871"
x2="349.52399" x2="349.52399"
y2="231.189" y2="231.189"
id="line80" /> id="line80" />
<polygon <polygon
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="339.757,233.335 350.597,236.072 348.45,226.305 " points="339.757,233.335 350.597,236.072 348.45,226.305 "
id="polygon82" /> id="polygon82" />
</g> </g>
<circle <circle
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
cx="426.63599" cx="426.63599"
cy="169.187" cy="169.187"
id="ellipse86" id="ellipse86"
r="20" /> r="20" />
<g <g
id="g92"> id="g92">
<line <line
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
x1="426.63599" x1="426.63599"
y1="189.187" y1="189.187"
x2="425.58899" x2="425.58899"
y2="240.569" y2="240.569"
id="line88" /> id="line88" />
<polyline <polyline
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="420.748,232.705 425.544,242.804 430.746,232.908 " points="420.748,232.705 425.544,242.804 430.746,232.908 "
id="polyline90" /> id="polyline90" />
</g> </g>
<g <g
id="g98"> id="g98">
<line <line
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
x1="505.672" x1="505.672"
y1="195.95399" y1="195.95399"
x2="455.58701" x2="455.58701"
y2="235.86501" y2="235.86501"
id="line94" /> id="line94" />
<polygon <polygon
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="447.766,242.097 458.703,239.775 452.471,231.955 " points="447.766,242.097 458.703,239.775 452.471,231.955 "
id="polygon96" /> id="polygon96" />
</g> </g>
<g <g
id="g104"> id="g104">
<line <line
style="fill:none;stroke:#000000;stroke-width:2;stroke-dasharray:20;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-dasharray:20;stroke-opacity:1"
x1="248.914" x1="248.914"
y1="161.79601" y1="161.79601"
x2="375.14499" x2="375.14499"
y2="163.259" y2="163.259"
id="line100" /> id="line100" />
<polygon <polygon
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="385.144,163.374 375.203,158.259 375.087,168.258 " points="385.144,163.374 375.203,158.259 375.087,168.258 "
id="polygon102" /> id="polygon102" />
</g> </g>
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="358.03601" x="358.03601"
y="151.479" y="151.479"
id="text108"> id="text108">
<tspan <tspan
x="358.03601" x="358.03601"
y="151.479" y="151.479"
id="tspan106">REBASE</tspan> id="tspan106">REBASE</tspan>
</text> </text>
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="380.04401" x="380.04401"
y="141.392" y="141.392"
id="text112"> id="text112">
<tspan <tspan
x="380.04401" x="380.04401"
y="141.392" y="141.392"
id="tspan110" /> id="tspan110" />
</text> </text>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 10 KiB

540
img/release_branch.svg Executable file → Normal file
View File

@ -1,270 +1,270 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg <svg
xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#" xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="400" width="400"
height="330" height="330"
viewBox="187 94 205.41288 170.74445" viewBox="187 94 205.41288 170.74445"
version="1.1" version="1.1"
id="svg89" id="svg89"
sodipodi:docname="release_branch.svg" sodipodi:docname="release_branch.svg"
inkscape:version="0.92.3 (2405546, 2018-03-11)"> inkscape:version="0.92.3 (2405546, 2018-03-11)">
<metadata <metadata
id="metadata95"> id="metadata95">
<rdf:RDF> <rdf:RDF>
<cc:Work <cc:Work
rdf:about=""> rdf:about="">
<dc:format>image/svg+xml</dc:format> <dc:format>image/svg+xml</dc:format>
<dc:type <dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title> <dc:title></dc:title>
</cc:Work> </cc:Work>
</rdf:RDF> </rdf:RDF>
</metadata> </metadata>
<defs <defs
id="defs93" /> id="defs93" />
<sodipodi:namedview <sodipodi:namedview
pagecolor="#ffffff" pagecolor="#ffffff"
bordercolor="#666666" bordercolor="#666666"
borderopacity="1" borderopacity="1"
objecttolerance="10" objecttolerance="10"
gridtolerance="10" gridtolerance="10"
guidetolerance="10" guidetolerance="10"
inkscape:pageopacity="0" inkscape:pageopacity="0"
inkscape:pageshadow="2" inkscape:pageshadow="2"
inkscape:window-width="1366" inkscape:window-width="1366"
inkscape:window-height="740" inkscape:window-height="740"
id="namedview91" id="namedview91"
showgrid="false" showgrid="false"
units="px" units="px"
inkscape:zoom="0.98117613" inkscape:zoom="0.98117613"
inkscape:cx="108.31366" inkscape:cx="108.31366"
inkscape:cy="166.90326" inkscape:cy="166.90326"
inkscape:window-x="0" inkscape:window-x="0"
inkscape:window-y="0" inkscape:window-y="0"
inkscape:window-maximized="1" inkscape:window-maximized="1"
inkscape:current-layer="svg89" /> inkscape:current-layer="svg89" />
<g <g
id="Hintergrund" id="Hintergrund"
transform="matrix(0.48713258,0,0,0.48713258,94.55635,48.360262)"> transform="matrix(0.48713258,0,0,0.48713258,94.55635,48.360262)">
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="399" x="399"
y="107.15" y="107.15"
id="text4"> id="text4">
<tspan <tspan
x="399" x="399"
y="107.15" y="107.15"
id="tspan2">dev</tspan> id="tspan2">dev</tspan>
</text> </text>
<circle <circle
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
cx="424.771" cx="424.771"
cy="344.20001" cy="344.20001"
id="ellipse6" id="ellipse6"
r="24" /> r="24" />
<g <g
id="g12"> id="g12">
<line <line
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
x1="424.771" x1="424.771"
y1="368.20001" y1="368.20001"
x2="423.82999" x2="423.82999"
y2="439.729" y2="439.729"
id="line8" /> id="line8" />
<polyline <polyline
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="418.933,431.9 423.801,441.964 428.932,432.031 " points="418.933,431.9 423.801,441.964 428.932,432.031 "
id="polyline10" /> id="polyline10" />
</g> </g>
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="115.1" x="115.1"
y="-31.450001" y="-31.450001"
id="text16"> id="text16">
<tspan <tspan
x="115.1" x="115.1"
y="-31.450001" y="-31.450001"
id="tspan14" /> id="tspan14" />
</text> </text>
<circle <circle
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
cx="328.021" cx="328.021"
cy="253.45" cy="253.45"
id="ellipse18" id="ellipse18"
r="23.25" /> r="23.25" />
<g <g
id="g24"> id="g24">
<path <path
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
d="m 328.021,276.7 c 1.65,35.871 96.496,11.967 96.714,39.028" d="m 328.021,276.7 c 1.65,35.871 96.496,11.967 96.714,39.028"
id="path20" id="path20"
inkscape:connector-curvature="0" /> inkscape:connector-curvature="0" />
<polyline <polyline
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="419.673,308.005 424.753,317.964 429.672,307.924 " points="419.673,308.005 424.753,317.964 429.672,307.924 "
id="polyline22" /> id="polyline22" />
</g> </g>
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="488.254" x="488.254"
y="106.059" y="106.059"
id="text28"> id="text28">
<tspan <tspan
x="488.254" x="488.254"
y="106.059" y="106.059"
id="tspan26" /> id="tspan26" />
</text> </text>
<text <text
font-size="12.8" font-size="12.8"
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="494" x="494"
y="104" y="104"
id="text32"> id="text32">
<tspan <tspan
x="494" x="494"
y="104" y="104"
id="tspan30" /> id="tspan30" />
</text> </text>
<circle <circle
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
cx="212.17999" cx="212.17999"
cy="342.13501" cy="342.13501"
id="ellipse34" id="ellipse34"
r="23" /> r="23" />
<text <text
font-size="12.7998" font-size="12.7998"
style="font-style:normal;font-weight:normal;font-size:12.79979992px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.79979992px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="287" x="287"
y="106" y="106"
id="text38"> id="text38">
<tspan <tspan
x="287" x="287"
y="106" y="106"
id="tspan36">release_x.y.z</tspan> id="tspan36">release_x.y.z</tspan>
</text> </text>
<text <text
font-size="12.7998" font-size="12.7998"
style="font-style:normal;font-weight:normal;font-size:12.79979992px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.79979992px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="190" x="190"
y="107" y="107"
id="text42"> id="text42">
<tspan <tspan
x="190" x="190"
y="107" y="107"
id="tspan40">master</tspan> id="tspan40">master</tspan>
</text> </text>
<g <g
id="g48"> id="g48">
<line <line
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
x1="212.17999" x1="212.17999"
y1="365.13501" y1="365.13501"
x2="211.72" x2="211.72"
y2="437.64499" y2="437.64499"
id="line44" /> id="line44" />
<polyline <polyline
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="206.77,429.849 211.706,439.881 216.769,429.913 " points="206.77,429.849 211.706,439.881 216.769,429.913 "
id="polyline46" /> id="polyline46" />
</g> </g>
<circle <circle
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
cx="213.185" cx="213.185"
cy="150.591" cy="150.591"
id="ellipse50" id="ellipse50"
r="20" /> r="20" />
<g <g
id="g56"> id="g56">
<path <path
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
d="m 213.211,171.469 c 0.049,39.375 113.375,7.701 114.684,54.261" d="m 213.211,171.469 c 0.049,39.375 113.375,7.701 114.684,54.261"
id="path52" id="path52"
inkscape:connector-curvature="0" /> inkscape:connector-curvature="0" />
<polyline <polyline
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="322.679,218.11 327.958,227.965 332.675,217.829 " points="322.679,218.11 327.958,227.965 332.675,217.829 "
id="polyline54" /> id="polyline54" />
</g> </g>
<g <g
id="g62"> id="g62">
<line <line
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
x1="213.185" x1="213.185"
y1="170.591" y1="170.591"
x2="212.21001" x2="212.21001"
y2="314.66299" y2="314.66299"
id="line58" /> id="line58" />
<polyline <polyline
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="207.263,306.865 212.195,316.899 217.263,306.933 " points="207.263,306.865 212.195,316.899 217.263,306.933 "
id="polyline60" /> id="polyline60" />
</g> </g>
<g <g
id="g68"> id="g68">
<line <line
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
x1="455.36099" x1="455.36099"
y1="199.99001" y1="199.99001"
x2="369.21399" x2="369.21399"
y2="233.75999" y2="233.75999"
id="line64" /> id="line64" />
<polygon <polygon
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="371.039,238.415 367.389,229.105 359.904,237.409 " points="371.039,238.415 367.389,229.105 359.904,237.409 "
id="polygon66" /> id="polygon66" />
</g> </g>
<text <text
font-size="12.7998" font-size="12.7998"
style="font-style:normal;font-weight:normal;font-size:12.79979992px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.79979992px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="473.867" x="473.867"
y="199.21899" y="199.21899"
id="text72"> id="text72">
<tspan <tspan
x="473.867" x="473.867"
y="199.21899" y="199.21899"
id="tspan70">quickfix</tspan> id="tspan70">quickfix</tspan>
</text> </text>
<text <text
font-size="12.7998" font-size="12.7998"
style="font-style:normal;font-weight:normal;font-size:12.79979992px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" style="font-style:normal;font-weight:normal;font-size:12.79979992px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
x="477.72299" x="477.72299"
y="143.7" y="143.7"
id="text80"> id="text80">
<tspan <tspan
x="477.72299" x="477.72299"
y="143.7" y="143.7"
id="tspan74">PR from release_x.y.z</tspan> id="tspan74">PR from release_x.y.z</tspan>
<tspan <tspan
x="477.72299" x="477.72299"
y="159.7" y="159.7"
id="tspan76">to master</tspan> id="tspan76">to master</tspan>
<tspan <tspan
x="477.72299" x="477.72299"
y="175.7" y="175.7"
id="tspan78" /> id="tspan78" />
</text> </text>
<g <g
id="g86"> id="g86">
<line <line
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
x1="463.84299" x1="463.84299"
y1="150.63901" y1="150.63901"
x2="337.75699" x2="337.75699"
y2="194.093" y2="194.093"
id="line82" /> id="line82" />
<polygon <polygon
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-opacity:1" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-opacity:1"
points="339.386,198.82 336.128,189.366 328.303,197.351 " points="339.386,198.82 336.128,189.366 328.303,197.351 "
id="polygon84" /> id="polygon84" />
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 8.4 KiB

After

Width:  |  Height:  |  Size: 8.2 KiB

0
img/select_gradle.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

0
img/select_gradle_wrapper.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 34 KiB

0
img/sync_ok.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

0
img/termux_files.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 38 KiB

2
index.html Executable file → Normal file
View File

@ -198,5 +198,5 @@ It focuses on making it possible for the creator of a scraper for a streaming se
<!-- <!--
MkDocs version : 1.0.4 MkDocs version : 1.0.4
Build Date UTC : 2019-04-07 17:32:18 Build Date UTC : 2019-07-02 12:24:36
--> -->

6
js/highlight.min.js vendored Executable file → Normal file

File diff suppressed because one or more lines are too long

0
js/jquery-2.1.1.min.js vendored Executable file → Normal file
View File

0
js/modernizr-2.8.3.min.js vendored Executable file → Normal file
View File

0
js/theme.js Executable file → Normal file
View File

0
media/how_to_jitpack.mp4 Executable file → Normal file
View File

0
search.html Executable file → Normal file
View File

0
search/lunr.js Executable file → Normal file
View File

0
search/main.js Executable file → Normal file
View File

2
search/search_index.json Executable file → Normal file

File diff suppressed because one or more lines are too long

0
search/worker.js Executable file → Normal file
View File

18
sitemap.xml Executable file → Normal file
View File

@ -2,47 +2,47 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url> <url>
<loc>None</loc> <loc>None</loc>
<lastmod>2019-04-07</lastmod> <lastmod>2019-07-02</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>None</loc> <loc>None</loc>
<lastmod>2019-04-07</lastmod> <lastmod>2019-07-02</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>None</loc> <loc>None</loc>
<lastmod>2019-04-07</lastmod> <lastmod>2019-07-02</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>None</loc> <loc>None</loc>
<lastmod>2019-04-07</lastmod> <lastmod>2019-07-02</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>None</loc> <loc>None</loc>
<lastmod>2019-04-07</lastmod> <lastmod>2019-07-02</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>None</loc> <loc>None</loc>
<lastmod>2019-04-07</lastmod> <lastmod>2019-07-02</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>None</loc> <loc>None</loc>
<lastmod>2019-04-07</lastmod> <lastmod>2019-07-02</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>None</loc> <loc>None</loc>
<lastmod>2019-04-07</lastmod> <lastmod>2019-07-02</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>None</loc> <loc>None</loc>
<lastmod>2019-04-07</lastmod> <lastmod>2019-07-02</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
</urlset> </urlset>

BIN
sitemap.xml.gz Executable file → Normal file

Binary file not shown.