Skip to content

Commit

Permalink
Initial release
Browse files Browse the repository at this point in the history
  • Loading branch information
marchbold committed Nov 26, 2018
1 parent 1e4c11b commit 34afd53
Show file tree
Hide file tree
Showing 25 changed files with 430 additions and 1 deletion.
22 changes: 22 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

If you are reporting a bug please make sure you fill out the following information, otherwise delete this template and ask your question.


##### Expected behaviour


##### Actual behaviour


##### Environment

- AIR SDK version:
- Device OS:
- Device version:
- Development IDE:
- Development OS:


##### Logs

Device logs if relevant
50 changes: 50 additions & 0 deletions .github/SUPPORT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# Support

As you are a subscribed user of our extensions there are several special support channels that you have access to.



## Check the documentation

### [Wiki](../../../wiki)

The best place to start is in the wiki. This forms the most up-to-date documentation for the extensions and is an important place to start using the extensions.

Common issues include
- Check you have all the required support extensions in the [Add the Extension](../../../wiki/i.Add-the-Extension) section;
- Check you have correctly added and updated any manifest additions (Android) and Info Additions / Entitlements (iOS);
- Check you have called `init( APP_KEY );` with your application key

[Wiki Home](../../../wiki)


### Reference

ASDocs document each of the classes, interfaces, events, functions and properties that you will be using. It is the main reference for the extension. If it's not in the guide you will find it here!


### Changelog

The changelog contains a record of all the changes we have done to the extension.
There are more details in github, referenced with releases but this is publicly available to see the work being done on the extension.



## Search the forum

We use the issue tracker in this repository as a forum for subscribed users to ask questions and submit issues found with the extensions.

When you have a question it is likely someone has had a similar issue before and you can find an answer by searching the closed issues.

Simply use the search bar to search the repository and if you limit the results to **issues** you will see all related questions that have been asked by other users.

[Forum](../../../issues?utf8=✓&q=is%3Aissue%20)


## Ask a question

If you can't find a solution in the existing issues, then feel free to start a new issue to ask your question.
Remember there are no silly questions and we are here to help you as best we can!
We just ask that you provide as much information about your problem as possible, such as platform, versions, AIR SDK used etc.

[Ask a question](../../../issues/new)
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@


###### 2018.11.26 [v1.0.010]

```
Initial release
```
32 changes: 31 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,31 @@
# ANE-Debug
This extension was built by distriqt //

# Debug

Debug is an AIR Native Extension to ...

Features

-
- Single API interface - your code works across iOS and Android with no modifications
- Sample project code and ASDocs reference


## Documentation

Latest documentation:

http://airnativeextensions.com/extension/com.distriqt.Debug


```actionscript
```


## License

You can purchase a license for using this extension:

http://airnativeextensions.com

distriqt retains all copyright.
4 changes: 4 additions & 0 deletions docs/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

Gemfile
_site

7 changes: 7 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@


###### 2018.11.26 [v1.0.010]

```
Initial release
```
11 changes: 11 additions & 0 deletions docs/_config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
title: Debug
show_downloads: false
google_analytics:

repository: distriqt/ANE-Debug
exclude: ["_Sidebar.md, _Footer.md"]
theme: jekyll-theme-minimal

gems:
- jekyll-redirect-from

1 change: 1 addition & 0 deletions docs/_includes/Sidebar.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

66 changes: 66 additions & 0 deletions docs/_layouts/default.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>{{ site.title | default: site.github.repository_name }} by {{ site.github.owner_name }}</title>
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">

<script src="https://use.fontawesome.com/8337fb8109.js"></script>
<meta name="viewport" content="width=device-width">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="wrapper">
<header>

<h1 style="text-align: center">
<a href="{{ site.github.url }}">
<img src="images/icon.png" style="width:64px;" /><br/>
{{ site.title | default: site.github.repository_name }}<br/>
</a>
</h1>

<h3>Adobe AIR native extension</h3>
<p>{{ site.description | default: site.github.project_tagline }}</p>

<p>
The extension is available here: <a href="{{ 'https://airnativeextensions.com/extension/com.distriqt.' | append: site.title }}">
com.distriqt.{{ site.title }}
</a>
</p>

<h3>Documentation</h3>
<div class="sidebar">
{% include Sidebar.html %}
</div>

</header>
<section>

{{ content }}

</section>
<footer>
<p><a href="https://airnativeextensions.com">airnativeextensions</a> <br/>by <a href="http://distriqt.com">distriqt //</a>
</footer>
</div>
<script src="{{ '/assets/js/scale.fix.js' | relative_url }}"></script>


{% if site.google_analytics %}
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("{{ site.google_analytics }}");
pageTracker._trackPageview();
} catch(err) {}
</script>
{% endif %}
</body>
</html>
57 changes: 57 additions & 0 deletions docs/assets/css/style.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
---
---

@import "{{ site.theme }}";

.wrapper { width: 100%; margin: 0 auto; }

header { width: 300px; float: left; position: relative; -webkit-font-smoothing: subpixel-antialiased; }

.sidebar { display: block; }

.sidebar h3 { margin-bottom: 15px; }
.sidebar h4 { margin-bottom: 10px; }

.sidebar ul { list-style: circle; height: unset; padding: 0; background: none; border: none; width: auto; }

.sidebar li { text-align: left; width: auto; float: none; border: none; height: unset; }

.sidebar ul a { line-height: 1; font-size: 11px; color: #676767; display: block; text-align: left; padding: 0; height: unset; }

.sidebar ul a:hover, header ul a:focus { color: none; font-weight: normal; background: none; }

.sidebar ul a:active { background-color: none; }

.sidebar ul li + li + li { border-right: none; width: 89px; }

.sidebar ul a strong { font-size: 14px; display: block; color: #222; }

.sidebar ul, .sidebar ol { -webkit-padding-start: 20px; }

section { width: auto; margin-left: 350px; padding-bottom: 50px; float: none; }

h2, h3 { margin-top: 40px; }

@media print, screen and (max-width: 960px) {
div.wrapper { width: 100%; margin: 0; }
header, section, footer { float: none; position: relative; width: auto; }
header { padding-right: 320px; }
section { border: 1px solid #e5e5e5; border-width: 1px 0; padding: 20px 0; margin: 0 0 20px; }
// header a small { display: inline; }
header ul { position: relative; right: 0; top: 0; display: inline-block; }
}

@media print, screen and (max-width: 720px) {
body { word-wrap: break-word; }
header { padding: 0; }
header ul, header p.view { position: static; }
pre, code { word-wrap: normal; }
}
@media print, screen and (max-width: 480px) {
body { padding: 15px; }
header ul { width: 99%; }
header li, header ul li + li + li { width: 33%; }
}
@media print {
body { padding: 0.4in; font-size: 12pt; color: #444; }
}
Binary file added docs/favicon.ico
Binary file not shown.
3 changes: 3 additions & 0 deletions example/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
bin-debug
bin
*Distriqt*
55 changes: 55 additions & 0 deletions example/src/TestDebug-app.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<application xmlns="http://ns.adobe.com/air/application/22.0">
<id>com.distriqt.test</id>
<filename>TestDebug</filename>
<name>TestDebug</name>
<versionNumber>0.0.1</versionNumber>

<initialWindow>
<content>[This value will be overwritten by Flash Builder in the output app.xml]</content>
<autoOrients>false</autoOrients>
<fullScreen>false</fullScreen>
<visible>true</visible>
</initialWindow>

<icon>
<image16x16>icons/icon16x16.png</image16x16>
<image29x29>icons/icon29x29.png</image29x29>
<image32x32>icons/icon32x32.png</image32x32>
<image36x36>icons/icon36x36.png</image36x36>
<image48x48>icons/icon48x48.png</image48x48>
<image57x57>icons/icon57x57.png</image57x57>
<image72x72>icons/icon72x72.png</image72x72>
<image114x114>icons/icon114x114.png</image114x114>
<image128x128>icons/icon128x128.png</image128x128>
<image512x512>icons/icon512x512.png</image512x512>
</icon>

<iPhone>
<InfoAdditions><![CDATA[
<key>UIDeviceFamily</key>
<array>
<string>1</string>
</array>
]]></InfoAdditions>
<requestedDisplayResolution>high</requestedDisplayResolution>
<Entitlements>
<![CDATA[
]]>
</Entitlements>
</iPhone>

<android>
<manifestAdditions><![CDATA[
<manifest android:installLocation="auto">
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>
]]></manifestAdditions>
</android>

<extensions>
<extensionID>com.distriqt.Debug</extensionID>
<extensionID>co.thedistillery.instabug.Instabug</extensionID>
</extensions>

</application>
Loading

0 comments on commit 34afd53

Please sign in to comment.