diff --git a/org.eclipse.lsp4e.debug/META-INF/MANIFEST.MF b/org.eclipse.lsp4e.debug/META-INF/MANIFEST.MF index 026d6ea73..fc996e68f 100644 --- a/org.eclipse.lsp4e.debug/META-INF/MANIFEST.MF +++ b/org.eclipse.lsp4e.debug/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: Debug Adapter client for Eclipse IDE (Incubation) Bundle-SymbolicName: org.eclipse.lsp4e.debug;singleton:=true Bundle-Vendor: Eclipse LSP4E -Bundle-Version: 0.16.2.qualifier +Bundle-Version: 0.16.3.qualifier Bundle-Activator: org.eclipse.lsp4e.debug.DSPPlugin Require-Bundle: org.eclipse.ui, org.eclipse.core.runtime, diff --git a/org.eclipse.lsp4e.debug/icons/pda.gif b/org.eclipse.lsp4e.debug/icons/pda.gif index 04c5052b2..2d6b7ebd0 100644 Binary files a/org.eclipse.lsp4e.debug/icons/pda.gif and b/org.eclipse.lsp4e.debug/icons/pda.gif differ diff --git a/org.eclipse.lsp4e.debug/icons/pda.svg b/org.eclipse.lsp4e.debug/icons/pda.svg new file mode 100644 index 000000000..b3c4c78dd --- /dev/null +++ b/org.eclipse.lsp4e.debug/icons/pda.svg @@ -0,0 +1,467 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/org.eclipse.lsp4e.debug/plugin.xml b/org.eclipse.lsp4e.debug/plugin.xml index caf236091..0df59b097 100644 --- a/org.eclipse.lsp4e.debug/plugin.xml +++ b/org.eclipse.lsp4e.debug/plugin.xml @@ -26,7 +26,7 @@ point="org.eclipse.debug.ui.launchConfigurationTypeImages"> diff --git a/org.eclipse.lsp4e/icons/full/obj16/array.png b/org.eclipse.lsp4e/icons/full/obj16/array.png index 64d985ad4..9950e7de3 100644 Binary files a/org.eclipse.lsp4e/icons/full/obj16/array.png and b/org.eclipse.lsp4e/icons/full/obj16/array.png differ diff --git a/org.eclipse.lsp4e/icons/full/obj16/array.svg b/org.eclipse.lsp4e/icons/full/obj16/array.svg new file mode 100644 index 000000000..3edd83957 --- /dev/null +++ b/org.eclipse.lsp4e/icons/full/obj16/array.svg @@ -0,0 +1,85 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/org.eclipse.lsp4e/icons/full/obj16/array@2.png b/org.eclipse.lsp4e/icons/full/obj16/array@2.png index fb02d9ea5..b3197929a 100644 Binary files a/org.eclipse.lsp4e/icons/full/obj16/array@2.png and b/org.eclipse.lsp4e/icons/full/obj16/array@2.png differ diff --git a/org.eclipse.lsp4e/icons/full/obj16/object.png b/org.eclipse.lsp4e/icons/full/obj16/object.png index e6c52ba5c..04a4db6bb 100644 Binary files a/org.eclipse.lsp4e/icons/full/obj16/object.png and b/org.eclipse.lsp4e/icons/full/obj16/object.png differ diff --git a/org.eclipse.lsp4e/icons/full/obj16/object.svg b/org.eclipse.lsp4e/icons/full/obj16/object.svg new file mode 100644 index 000000000..985427aaa --- /dev/null +++ b/org.eclipse.lsp4e/icons/full/obj16/object.svg @@ -0,0 +1,69 @@ + + + +image/svg+xml diff --git a/org.eclipse.lsp4e/icons/full/obj16/object@2.png b/org.eclipse.lsp4e/icons/full/obj16/object@2.png index bb0096f74..151775c2b 100644 Binary files a/org.eclipse.lsp4e/icons/full/obj16/object@2.png and b/org.eclipse.lsp4e/icons/full/obj16/object@2.png differ diff --git a/org.eclipse.lsp4e/src/org/eclipse/lsp4e/ui/LSPImages.java b/org.eclipse.lsp4e/src/org/eclipse/lsp4e/ui/LSPImages.java index c084eceec..d371adfb6 100644 --- a/org.eclipse.lsp4e/src/org/eclipse/lsp4e/ui/LSPImages.java +++ b/org.eclipse.lsp4e/src/org/eclipse/lsp4e/ui/LSPImages.java @@ -100,10 +100,10 @@ public static void initalize(ImageRegistry registry) { declareRegistryImage(IMG_FUNCTION, OBJECT + "function.svg"); //$NON-NLS-1$ declareRegistryImage(IMG_VARIABLE, OBJECT + "variable.svg"); //$NON-NLS-1$ declareRegistryImage(IMG_CONSTANT, OBJECT + "constant.svg"); //$NON-NLS-1$ - declareRegistryImage(IMG_OBJECT, OBJECT + "object.png"); //$NON-NLS-1$ + declareRegistryImage(IMG_OBJECT, OBJECT + "object.svg"); //$NON-NLS-1$ declareRegistryImage(IMG_NUMBER, OBJECT + "number.svg"); //$NON-NLS-1$ declareRegistryImage(IMG_BOOLEAN, OBJECT + "boolean.svg"); //$NON-NLS-1$ - declareRegistryImage(IMG_ARRAY, OBJECT + "array.png"); //$NON-NLS-1$ + declareRegistryImage(IMG_ARRAY, OBJECT + "array.svg"); //$NON-NLS-1$ declareRegistryImage(IMG_NULL, OBJECT + "null.svg"); //$NON-NLS-1$ declareRegistryImage(IMG_KEY, OBJECT + "key.svg"); //$NON-NLS-1$ declareRegistryImage(IMG_EVENT, OBJECT + "event.svg"); //$NON-NLS-1$