Skip to content

Beautify #83

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 58 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
58 commits
Select commit Hold shift + click to select a range
7db6c15
luaye Feb 25, 2012
a1c6489
SWC includes ASDOC.
luaye Feb 25, 2012
5233304
Issue 86: Expose stack trace ignore class list
luaye Feb 25, 2012
ce24f09
was importing the wrong thing.
luaye Feb 25, 2012
9db27e2
Issue 101: Clears logs in remote air app on new connection. Can be to…
luaye Feb 25, 2012
6775a21
luaye Feb 25, 2012
63a2b7a
Ruler becoming addon.
luaye Feb 25, 2012
d1f8ca7
luaye Feb 25, 2012
0f0cbd5
luaye Feb 25, 2012
62d1cf4
luaye Feb 25, 2012
21862b5
luaye Feb 25, 2012
0ddb626
Graphing using bitmap.
luaye Feb 26, 2012
1174434
getting better with bitmap graphing.
luaye Feb 26, 2012
32a3ddb
graph fixes.
luaye Feb 26, 2012
01c7375
Using 3.0 style graph system. broken on remoting.
luaye Feb 26, 2012
76e049d
More improvements on graphing. can't do fixgroup anymore, have to mod…
luaye Feb 26, 2012
f200ccf
tidy up with number display.
luaye Feb 27, 2012
d723dda
compiling 2.7 dev build.
luaye Feb 27, 2012
e062fb3
Use ConsoleChannel and ConsoleLevel. Minor tweaks.
luaye Feb 28, 2012
88a1c74
Missed files to commit.
luaye Feb 28, 2012
1311444
Close FPS and Mem panels properly.
luaye Feb 28, 2012
f9c5f71
luaye Feb 29, 2012
06aa73f
remote getting split to sub classes.
luaye Feb 29, 2012
006aef2
Splitting remote.
luaye Feb 29, 2012
a75c8fd
luaye Feb 29, 2012
77831a0
luaye Feb 29, 2012
c5e1bbf
Graphing remotes again.
luaye Mar 1, 2012
51b684b
Minor tweaks + rebuild.
luaye Mar 1, 2012
1ee5235
refactoring.
luaye Mar 1, 2012
23b4765
refactoring.
luaye Mar 1, 2012
d71747a
luaye Mar 1, 2012
7d85988
luaye Mar 2, 2012
fc89bea
reduces new Array.
luaye Mar 2, 2012
3fb8f23
luaye Mar 2, 2012
4bd7b75
Back to real time FPS display. but better averaging - need some more …
luaye Mar 13, 2012
458248d
luaye Mar 13, 2012
62645d8
reducing frame adding count.
luaye Mar 13, 2012
54eb4a4
luaye Mar 17, 2012
25669b7
luaye Mar 17, 2012
9b16ee3
merge of trunk changes.
luaye Apr 29, 2012
7974156
Menu support in graphing. need to tie in with shared menu code.
luaye Apr 29, 2012
b1e933d
luaye Apr 29, 2012
db2f04c
remoting passes down menu.
luaye Apr 29, 2012
293c40c
Allows slash commands with space and any other characters.
luaye May 5, 2012
21d2b34
Makes sure longest possible commandline is matched.
luaye May 5, 2012
5e8c764
Slash commands return value on run() method. added initial tests to cmd.
luaye May 5, 2012
1d57afa
tests
luaye May 5, 2012
76e27b6
more tests.
luaye May 5, 2012
baf4df3
more tests.
luaye May 5, 2012
6e3344c
2.7 Alpha build.
luaye May 24, 2012
84bd82e
Use different font for non-string traces.
luaye May 28, 2012
0963a18
Slight tweak for more types to use different font.
luaye May 28, 2012
8c0eea4
Slight tweak for more types to use different font. Reintroduce fix gr…
luaye May 28, 2012
f27405c
2.7 Alpha rebuld.
luaye May 28, 2012
cbeb26d
mac air build support.
luaye Sep 30, 2012
fde1d04
fix of logs being empty at first launch of html.
luaye Sep 30, 2012
30f780d
Console 2.7 Beta build.
luaye Sep 30, 2012
92912e6
unused test.
luaye Nov 11, 2012
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified bin/Console.swc
Binary file not shown.
Binary file modified bin/ConsoleRemote.air
Binary file not shown.
Binary file modified bin/SampleBasic.swf
Binary file not shown.
Binary file modified bin/consoleRemote.swf
Binary file not shown.
Binary file modified bin/sampleAdvanced.swf
Binary file not shown.
Binary file modified bin/sampleStyle.swf
Binary file not shown.
62 changes: 48 additions & 14 deletions build/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

<target name="BuildAll" description="Build everything!" depends="incrementBuildNumber">
<antcall target="compileSrc" />
<antcall target="compileASDoc" />
<antcall target="ASDoc" />
</target>

<target name="compileSrc" depends="updateVersion">
Expand Down Expand Up @@ -89,11 +89,30 @@
<target name="swc">
<echo message="Compiling SWC" />
<property file="${build.dir}/project.properties"/>
<compc output="${bin.dir}/Console.swc">

<property name="swc.file" value="${bin.dir}/Console.swc" />
<compc output="${swc.file}">
<load-config filename="${FLEX_HOME}/frameworks/flex-config.xml" />
<include-sources dir="${src.package.path}" includes="*" />
<compiler.source-path path-element="${src.dir}" />
</compc>

<delete dir="${temp.dir}" failOnError="false" includeEmptyDirs="true" />
<mkdir dir="${temp.dir}" />

<antcall target="compileASDoc">
<param name="output" value="${temp.dir}" />
<param name="xmlonly" value="true" />
</antcall>

<zip destfile="${swc.file}" update="true">
<zipfileset dir="${temp.dir}/tempdita" prefix="docs">
<include name="*.*"/>
<exclude name="ASDoc_Config.xml"/>
<exclude name="overviews.xml"/>
</zipfileset>
</zip>
<delete dir="${temp.dir}" failOnError="false" includeEmptyDirs="true" />
</target>

<target name="packageAir">
Expand All @@ -102,7 +121,13 @@
<param name="output" value="${samples.dir}/remote_air/ConsoleRemoteAIR.swf" />
<param name="config" value="air" />
</antcall>
<exec executable="${FLEX_HOME}/bin/adt.bat" failonerror="true">
<condition property="adt.executable" value="adt.bat">
<os family="windows"/>
</condition>
<condition property="adt.executable" value="adt">
<os family="mac"/>
</condition>
<exec executable="${FLEX_HOME}/bin/${adt.executable}" failonerror="true">
<arg line="-package" />
<arg line="-storetype pkcs12" />
<arg line="-keystore build/ConsoleRemote.p12" />
Expand Down Expand Up @@ -147,20 +172,29 @@
</target>

<!-- http://livedocs.adobe.com/flex/3/html/help.html?content=asdoc_9.html#142061 -->
<target name="compileASDoc" description="Generate ASDOC">
<target name="ASDoc" description="Generate ASDOC">
<delete dir="${asdoc.dir}" failOnError="false" includeEmptyDirs="true" />
<mkdir dir="${asdoc.dir}" />
<antcall target="compileASDoc">
<param name="output" value="${asdoc.dir}" />
<param name="xmlonly" value="false" />
</antcall>
</target>

<target name="compileASDoc">
<property file="${build.dir}/project.properties"/>
<exec executable="${FLEX_HOME}/bin/asdoc.exe" failonerror="true" osfamily="windows">
<arg line="-output '${asdoc.dir}'" />
<arg line="-source-path '${src.dir}'" />
<arg line="-doc-sources ${src.package.path}" />
<arg line="-main-title 'Flash-Console v${build.version}'" />
<arg line="-window-title 'Flash-Console v${build.version}'" />
<arg line="-footer 'Flash-Console v${build.version}'" />
</exec>
<exec executable="${FLEX_HOME}/bin/asdoc" failonerror="true" osfamily="mac">
<arg line="-output '${asdoc.dir}'" />

<condition property="asdoc.executable" value="asdoc.exe">
<os family="windows"/>
</condition>
<condition property="asdoc.executable" value="asdoc">
<os family="mac"/>
</condition>

<exec executable="${FLEX_HOME}/bin/${asdoc.executable}" failonerror="true">
<arg line="-keep-xml=${xmlonly}" />
<arg line="-skip-xsl=${xmlonly}" />
<arg line="-output '${output}'" />
<arg line="-source-path '${src.dir}'" />
<arg line="-doc-sources ${src.package.path}" />
<arg line="-main-title 'Flash-Console v${build.version}'" />
Expand Down
11 changes: 6 additions & 5 deletions build/project.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#Wed Feb 22 00:11:41 GMT 2012
build.number=611
build.date=2012/02/22 00\:11
build.version=2.6
build.stage=
#Mon, 01 Oct 2012 00:46:18 +0100
#Thu Mar 01 01:08:19 GMT 2012
build.number=614
build.date=2012/10/01 00\:46
build.version=2.7
build.stage=BETA
18 changes: 14 additions & 4 deletions doc/Addons.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,26 @@ They are not compiled as part of SWC package at the moment as some may require a
* Export console logs to a HTML file. preserves channels and priorities.
* It also have all those filtering features in HTML page.
* Add to menu: `ConsoleHtmlExportAddon.addToMenu();`
* sample: http://console.junkbyte.com/addons/htmlexport/export.html
* blog: http://junkbyte.com/wp/as3/console/console-logs-to-html-export-addon/
* Requires com.adobe.serialization.json.JSON. (May replace in your own code with flash player 11's native JSON)
* Requires flash player 11 OR com.adobe.serialization.json.JSON.
* If you are using com.adobe.serialization.json.JSON, make sure you reference the class somewhere so that it get compiled.


==Command Prompt==
* Simulates 'command prompt' style user input.
* Ask to choose from a selection of input, user enter into command line to choose a selection.
* Could be useful for 'utility' sort of app where there is no GUI to represent user options.
* Currently undocumented. see source code of `CommandPrompt.as`.
* Demo: http://console.junkbyte.com/addons/commandprompt/
* Blog with demo source: http://junkbyte.com/wp/as3/console/console-command-prompt-addon-demo/



==`CommandLine` Auto focus==
* Sets focus to commandLine input field whenever Console becomes visible, e.g after entering password key.


==CommandLine Auto focus==
* Sets focus to commandLine input field whenever Console becomes visible, e.g after entering password key.
==Ruler addon==
* Ruler addon let you measure the distance and angle between two points on screen
* Add to menu: `RulerAddon.addToMenu();`
* Start ruler tool by pressing on 'ruler' at the top menu
Loading