Skip to content

Commit

Permalink
1.5.7876
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoNatan committed Nov 27, 2018
1 parent 3714f78 commit 150841c
Show file tree
Hide file tree
Showing 9 changed files with 53 additions and 83 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,21 @@ <h3>

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

</code></pre>
<h3>
<a name="user-content-zipzap--httpsgithubcompixelglowzipzap" class="anchor" href="#zipzap--httpsgithubcompixelglowzipzap"><span class="octicon octicon-link"></span></a>ZipZap — <a href="https://github.com/pixelglow/ZipZap">https://github.com/pixelglow/ZipZap</a>
</h3>
<pre><code>Copyright (c) 2012, Pixelglow Software.
All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

</code></pre>
<h3>
<a name="user-content-sparkle--httpsgithubcomsparkle-projectsparkle" class="anchor" href="#sparkle--httpsgithubcomsparkle-projectsparkle"><span class="octicon octicon-link"></span></a>Sparkle — <a href="https://github.com/sparkle-project/Sparkle">https://github.com/sparkle-project/Sparkle</a>
Expand Down Expand Up @@ -246,30 +261,5 @@ <h3>
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.

</code></pre>
<h3>
<a name="user-content-ziparchive--httpsgithubcomziparchiveziparchive" class="anchor" href="#ziparchive--httpsgithubcomziparchiveziparchive"><span class="octicon octicon-link"></span></a>ZipArchive — <a href="https://github.com/ZipArchive/ZipArchive">https://github.com/ZipArchive/ZipArchive</a>
</h3>
<pre><code>Copyright (c) 2010-2015, Sam Soffes, http://soff.es

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

</code></pre>
</body></html>
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ <h1>
<a name="user-content-events-api-reference-for-react-native--javascript" class="anchor" href="#events-api-reference-for-react-native--javascript"><span class="octicon octicon-link"></span></a>Events API Reference for React Native / JavaScript</h1>
<p>The Events instrument lets you add lightweight instrumentation to your code for collection and visualization by Detox Instruments. You can specify interesting periods of time ('intervals') and single points in time ('events'). Each event can be marked as completed or errored, or as 12 different general-purpose categories, each displayed with its own color in the timeline pane.</p>
<p>Before using the provided developer APIs, first complete the <a href="XcodeIntegrationGuide.html">Profiler Framework Integration Guide</a>.</p>
<p>For React Native apps, you need to install the <strong>detox-instruments-react-native-utils</strong> package:</p>
<p>For React Native apps, you need to install the <strong><code>detox-instruments-react-native-utils</code></strong> package:</p>
<div class="highlight highlight-source-shell"><pre>npm install detox-instruments-react-native-utils --save-prod</pre></div>
<p>Import the Event class from the package:</p>
<div class="highlight highlight-source-js"><pre><span class="pl-k">import</span> { <span class="pl-smi">Event</span> } <span class="pl-k">from</span> <span class="pl-s"><span class="pl-pds">'</span>detox-instruments-react-native-utils<span class="pl-pds">'</span></span>;</pre></div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ <h3>
<a name="user-content-react-native" class="anchor" href="#react-native"><span class="octicon octicon-link"></span></a>React Native</h3>
<p>The <strong>Profile React Native (if available)</strong> options controls the React Native profiling systems in Detox Instruments and its Profiler framework. These systems provide information such as JavaScript thread performance, bridge calls and bridge data, which can be very helpful when debugging apps with React Native usage.</p>
<p>The <strong>Record bridge data</strong> option controls whether React Native bridge data is recorded during profiling. Depending on your app's activity, this can take a small-to-moderate toll on performance. If bridge data recording is not necessary, you can turn this option off to save performance.</p>
<p>The <strong>Record timers as events</strong> options controls whether React Native timers, created in JavaScript using <code>setTimeout()</code>, should be recorded as events and displayed in the Events instrument.</p>
<p>The <strong>Record timers as events</strong> options controls whether React Native timers, created in JavaScript using <code>setTimeout()</code>, should be recorded as events and displayed in the Events instrument. This option requires that the <strong><code>detox-instruments-react-native-utils</code></strong> package be installed in your React Native app. For more information, see <a href="DeveloperAPIReferenceEventsJS.html">Events API Reference for React Native / JavaScript</a>.</p>
<h3>
<a name="user-content-time-limit" class="anchor" href="#time-limit"><span class="octicon octicon-link"></span></a>Time Limit</h3>
<p>The <strong>Time limit</strong> option sets a hard time limit on recording duration. You can set the value in seconds, minutes or hours. The default is 2 minutes.</p>
Expand Down
Binary file not shown.
40 changes: 15 additions & 25 deletions DetoxInstruments/DetoxInstruments/Acknowledgements.html
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,21 @@ <h3>

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

</code></pre>
<h3>
<a id="user-content-zipzap--httpsgithubcompixelglowzipzap" class="anchor" href="#zipzap--httpsgithubcompixelglowzipzap" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>ZipZap — <a href="https://github.com/pixelglow/ZipZap">https://github.com/pixelglow/ZipZap</a>
</h3>
<pre><code>Copyright (c) 2012, Pixelglow Software.
All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

</code></pre>
<h3>
<a id="user-content-sparkle--httpsgithubcomsparkle-projectsparkle" class="anchor" href="#sparkle--httpsgithubcomsparkle-projectsparkle" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Sparkle — <a href="https://github.com/sparkle-project/Sparkle">https://github.com/sparkle-project/Sparkle</a>
Expand Down Expand Up @@ -239,30 +254,5 @@ <h3>
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.

</code></pre>
<h3>
<a id="user-content-ziparchive--httpsgithubcomziparchiveziparchive" class="anchor" href="#ziparchive--httpsgithubcomziparchiveziparchive" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>ZipArchive — <a href="https://github.com/ZipArchive/ZipArchive">https://github.com/ZipArchive/ZipArchive</a>
</h3>
<pre><code>Copyright (c) 2010-2015, Sam Soffes, http://soff.es

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

</code></pre>
</body></html>
4 changes: 2 additions & 2 deletions DetoxInstruments/DetoxInstruments/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@
<key>CFBundleShortVersionString</key>
<string>1.5</string>
<key>CFBundleVersion</key>
<string>7875</string>
<string>7876</string>
<key>DTXBuildDate</key>
<date>2018-11-26T11:12:57Z</date>
<date>2018-11-27T05:25:00Z</date>
<key>DTXSourceRoot</key>
<string>$(DTXSRCROOT)</string>
<key>LSMinimumSystemVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Distribution/homebrew-brew
42 changes: 16 additions & 26 deletions Documentation/Acknowledgements.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,22 @@ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR I
```

### ZipZap — <https://github.com/pixelglow/ZipZap>

```
Copyright (c) 2012, Pixelglow Software.
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
```

### Sparkle — <https://github.com/sparkle-project/Sparkle>

```
Expand Down Expand Up @@ -238,29 +254,3 @@ POSSIBILITY OF SUCH DAMAGE.
```

### ZipArchive — <https://github.com/ZipArchive/ZipArchive>

```
Copyright (c) 2010-2015, Sam Soffes, http://soff.es
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
```

4 changes: 2 additions & 2 deletions Profiler/DTXProfiler/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<key>CFBundleShortVersionString</key>
<string>1.5</string>
<key>CFBundleVersion</key>
<string>7875</string>
<string>7876</string>
<key>DTXBuildDate</key>
<date>2018-11-26T11:12:57Z</date>
<date>2018-11-27T05:25:00Z</date>
<key>NSPrincipalClass</key>
<string></string>
</dict>
Expand Down

0 comments on commit 150841c

Please sign in to comment.