Skip to content

Commit 7350d07

Browse files
committed
Update docs to use apm
1 parent 42587d4 commit 7350d07

File tree

145 files changed

+6186
-10
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

145 files changed

+6186
-10
lines changed

.github/workflows/issues.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@ jobs:
99
steps:
1010
- uses: actions/stale@v4
1111
with:
12+
stale-issue-label: 'stale'
13+
exempt-issue-labels: 'enhancement'
1214
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.'
1315
stale-pr-message: 'This PR is stale because it has been open 45 days with no activity. Remove stale label or comment or this will be closed in 10 days.'
1416
close-issue-message: 'This issue was closed because it has been stalled for 5 days with no activity.'
15-
days-before-stale: 30
17+
days-before-stale: 60
1618
days-before-close: 5
1719
days-before-pr-close: -1

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11

22

3+
###### 2022.02.15 [v4.0.11]
4+
5+
```
6+
Update docs to use apm
7+
```
8+
9+
310
###### 2021.12.06 [v4.0.10]
411

512
```

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
built by [distriqt //](https://airnativeextensions.com)
22

33

4-
![Memory](https://github.com/distriqt/ANE-Memory/blob/master/images/promo.png)
4+
![Memory](https://raw.githubusercontent.com/distriqt/ANE-Memory/master/images/promo.png)
55

66

77
# Memory

build.xml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,11 @@ _site
236236

237237
<target name="deploy">
238238

239+
<lower name="project.namelower" value="${project.name}" />
240+
241+
<delete dir="${docs.external_site_source}/docs/${project.namelower}" />
242+
<delete dir="${docs.external_site_source}/static/asdocs/${project.namelower}" />
243+
239244
<!-- Copy docs to site -->
240245
<copy todir="${docs.external_site_source}" overwrite="true" failonerror="false">
241246
<fileset dir="docs/site" >
@@ -244,8 +249,14 @@ _site
244249
</fileset>
245250
</copy>
246251

247-
<lower name="project.namelower" value="${project.name}" />
248-
<copy tofile="${docs.external_site_source}/docs/${project.namelower}/changelog.md" overwrite="true" file="CHANGELOG.md" />
252+
<copy tofile="${docs.external_site_source}/docs/${project.namelower}/changelog.md" overwrite="true"
253+
file="CHANGELOG.md" >
254+
<filterchain>
255+
<tokenfilter>
256+
<replacestring from="######" to="###"/>
257+
</tokenfilter>
258+
</filterchain>
259+
</copy>
249260

250261
</target>
251262

build/VERSION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
| Extension | Version | Android Lib | iOS Lib |
44
| --- | --- | --- | --- |
5-
| com.distriqt.Memory | 4.0.10 | | |
5+
| com.distriqt.Memory | 4.0.11 | | |

build/com.distriqt.Memory.ane

-18 Bytes
Binary file not shown.

build/swc/com.distriqt.Memory.swc

0 Bytes
Binary file not shown.

build_config/version.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
#Mon, 06 Dec 2021 16:01:49 +1000
1+
#Tue, 15 Feb 2022 12:43:51 +1000
22

33
version_major=4
44
version_minor=0
5-
version_build=10
5+
version_build=11
66

77
version.android=
88
version.ios=

docs/asdocs/AC_OETags.js

Lines changed: 129 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
////////////////////////////////////////////////////////////////////////////////
2+
//
3+
// ADOBE SYSTEMS INCORPORATED
4+
// Copyright 2008 Adobe Systems Incorporated
5+
// All Rights Reserved.
6+
//
7+
// NOTICE: Adobe permits you to use, modify, and distribute this file
8+
// in accordance with the terms of the license agreement accompanying it.
9+
//
10+
////////////////////////////////////////////////////////////////////////////////
11+
12+
13+
//v1.0
14+
function AC_AddExtension(src, ext)
15+
{
16+
if (src.indexOf('?') != -1)
17+
return src.replace(/\?/, ext+'?');
18+
else
19+
return src + ext;
20+
}
21+
22+
function AC_Generateobj(objAttrs, params, embedAttrs)
23+
{
24+
var str = '<object ';
25+
for (var i in objAttrs)
26+
str += i + '="' + objAttrs[i] + '" ';
27+
str += '>';
28+
for (var i in params)
29+
str += '<param name="' + i + '" value="' + params[i] + '" /> ';
30+
str += '<embed ';
31+
for (var i in embedAttrs)
32+
str += i + '="' + embedAttrs[i] + '" ';
33+
str += ' ></embed></object>';
34+
35+
document.write(str);
36+
}
37+
38+
function AC_FL_RunContent(){
39+
var ret =
40+
AC_GetArgs
41+
( arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
42+
, "application/x-shockwave-flash"
43+
);
44+
AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
45+
}
46+
47+
function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
48+
var ret = new Object();
49+
ret.embedAttrs = new Object();
50+
ret.params = new Object();
51+
ret.objAttrs = new Object();
52+
for (var i=0; i < args.length; i=i+2){
53+
var currArg = args[i].toLowerCase();
54+
55+
switch (currArg){
56+
case "classid":
57+
break;
58+
case "pluginspage":
59+
ret.embedAttrs[args[i]] = args[i+1];
60+
break;
61+
case "src":
62+
case "movie":
63+
args[i+1] = AC_AddExtension(args[i+1], ext);
64+
ret.embedAttrs["src"] = args[i+1];
65+
ret.params[srcParamName] = args[i+1];
66+
break;
67+
case "onafterupdate":
68+
case "onbeforeupdate":
69+
case "onblur":
70+
case "oncellchange":
71+
case "onclick":
72+
case "ondblClick":
73+
case "ondrag":
74+
case "ondragend":
75+
case "ondragenter":
76+
case "ondragleave":
77+
case "ondragover":
78+
case "ondrop":
79+
case "onfinish":
80+
case "onfocus":
81+
case "onhelp":
82+
case "onmousedown":
83+
case "onmouseup":
84+
case "onmouseover":
85+
case "onmousemove":
86+
case "onmouseout":
87+
case "onkeypress":
88+
case "onkeydown":
89+
case "onkeyup":
90+
case "onload":
91+
case "onlosecapture":
92+
case "onpropertychange":
93+
case "onreadystatechange":
94+
case "onrowsdelete":
95+
case "onrowenter":
96+
case "onrowexit":
97+
case "onrowsinserted":
98+
case "onstart":
99+
case "onscroll":
100+
case "onbeforeeditfocus":
101+
case "onactivate":
102+
case "onbeforedeactivate":
103+
case "ondeactivate":
104+
case "type":
105+
case "codebase":
106+
ret.objAttrs[args[i]] = args[i+1];
107+
break;
108+
case "width":
109+
case "height":
110+
case "align":
111+
case "vspace":
112+
case "hspace":
113+
case "class":
114+
case "title":
115+
case "accesskey":
116+
case "name":
117+
case "id":
118+
case "tabindex":
119+
ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
120+
break;
121+
default:
122+
ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
123+
}
124+
}
125+
ret.objAttrs["classid"] = classid;
126+
if (mimeType) ret.embedAttrs["type"] = mimeType;
127+
return ret;
128+
}
129+

docs/asdocs/all-classes.html

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><!-- saved from url=(0014)about:internet --><html>
2+
<head>
3+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4+
<title>All Classes - distriqt // Memory</title>
5+
<base target="classFrame">
6+
<link rel="stylesheet" href="style.css" type="text/css" media="screen">
7+
<link rel="stylesheet" href="print.css" type="text/css" media="print">
8+
<link rel="stylesheet" href="override.css" type="text/css">
9+
</head>
10+
<body class="classFrameContent">
11+
<h3><a href="class-summary.html" target="classFrame" style="color:black">All Classes</a></h3>
12+
<table cellpadding="0" cellspacing="0">
13+
<tr>
14+
<td><a href="com/distriqt/extension/memory/Memory.html" title="com.distriqt.extension.memory.Memory">Memory</a></td>
15+
</tr>
16+
<tr>
17+
<td><a href="com/distriqt/extension/memory/events/MemoryEvent.html" title="com.distriqt.extension.memory.events.MemoryEvent">MemoryEvent</a></td>
18+
</tr>
19+
<tr>
20+
<td><a href="com/distriqt/extension/memory/MemoryInfo.html" title="com.distriqt.extension.memory.MemoryInfo">MemoryInfo</a></td>
21+
</tr>
22+
</table>
23+
</body>
24+
</html>
25+
<!--Copyright distriqt 2016<br/>Tue Feb 15 2022, 12:44 PM +10:00 -->

0 commit comments

Comments
 (0)