mirror of https://github.com/mchr3k/org.intrace
- Fix missing icons bug in eclipse, prepare for Release 18
This commit is contained in:
parent
b26a71c923
commit
fb01227514
|
|
@ -2,7 +2,7 @@
|
|||
<feature
|
||||
id="intrace.ecl.feature"
|
||||
label="InTrace Eclipse Plugin"
|
||||
version="0.7">
|
||||
version="0.8">
|
||||
|
||||
<description url="https://github.com/mchr3k/org.intrace/wiki">
|
||||
Enable launching Java Applications with the InTrace agent.
|
||||
|
|
@ -20,6 +20,6 @@
|
|||
id="intrace.ecl"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="0.7.0"/>
|
||||
version="0.8.0"/>
|
||||
|
||||
</feature>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: InTrace Eclipse
|
||||
Bundle-SymbolicName: intrace.ecl;singleton:=true
|
||||
Bundle-Version: 0.7
|
||||
Bundle-Version: 0.8
|
||||
Bundle-Activator: intrace.ecl.Activator
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
org.eclipse.core.runtime,
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
<description name="InTrace Update Site">
|
||||
InTrace Update Site
|
||||
</description>
|
||||
<feature url="features/intrace.ecl.feature_0.7.0.jar" id="intrace.ecl.feature" version="0.7">
|
||||
<feature url="features/intrace.ecl.feature_0.8.0.jar" id="intrace.ecl.feature" version="0.8">
|
||||
<category name="intrace.ecl.category"/>
|
||||
</feature>
|
||||
<category-def name="intrace.ecl.category" label="InTrace Eclipse Plugin"/>
|
||||
|
|
|
|||
|
|
@ -2,24 +2,20 @@ h1. Functional Parts
|
|||
|
||||
* Instrumenting Agent
|
||||
** IP Agent control server
|
||||
* CUI Remote Agent Config Tool
|
||||
* GUI Remote Agent Config Tool/Network Trace Viewer
|
||||
* Common Output Classes
|
||||
* Instrumentation Handlers
|
||||
** Trace output
|
||||
** Callers recorder
|
||||
|
||||
h1. Packages (org.intrace.)
|
||||
|
||||
* agent - Instrumenting Agent
|
||||
* agent.server - IP Server for controlling the Agent, Output and Instrumentation Handlers
|
||||
* agent.server - TCP Server for controlling the Agent, Output and Instrumentation Handlers
|
||||
|
||||
* client.cui - Command Line Agent Config Client
|
||||
* client.gui - GUI Agent Config Client + Live Trace/Callers viewer
|
||||
* client.gui.helper - Helper classes used by the GUI interface
|
||||
|
||||
* output - Common Output Classes
|
||||
* output.trace - Trace Instrumentation Handler
|
||||
* output.callers - Callers Analysis Instrumentation Handler
|
||||
|
||||
* shared - String constants used by both the Agent Server and the Clients
|
||||
* shared - String constants used by both the Agent Server and the Client
|
||||
|
|
@ -121,6 +121,7 @@
|
|||
<jar jarfile="./build/jars/intrace-ui-helper.jar">
|
||||
<fileset dir="./build/classes" includes="**/shared/*.class" />
|
||||
<fileset dir="./build/classes" includes="**/client/gui/helper/*.class" />
|
||||
<fileset dir="./src" includes="**/icons/**/*.*" />
|
||||
</jar>
|
||||
</target>
|
||||
|
||||
|
|
|
|||
|
|
@ -1022,7 +1022,7 @@ public class InTraceUI implements ISocketCallback, IControlConnectionListener
|
|||
}
|
||||
});
|
||||
|
||||
MigLayout barLayout = new MigLayout("debug,fill,wmin 0,hmin 0",
|
||||
MigLayout barLayout = new MigLayout("fill,wmin 0,hmin 0",
|
||||
"[][grow][][200][][]", "[]");
|
||||
|
||||
final Composite compositeBar = new Composite(composite, SWT.NONE);
|
||||
|
|
|
|||
Loading…
Reference in New Issue