diff --git a/terminal/features/org.eclipse.tm.terminal.view.feature/feature.xml b/terminal/features/org.eclipse.tm.terminal.view.feature/feature.xml index 95e24cf47aa..df558232ec1 100644 --- a/terminal/features/org.eclipse.tm.terminal.view.feature/feature.xml +++ b/terminal/features/org.eclipse.tm.terminal.view.feature/feature.xml @@ -13,7 +13,7 @@ label="%featureName" version="4.6.0.qualifier" provider-name="%providerName" - plugin="org.eclipse.tm.terminal.view.core" + plugin="org.eclipse.tm.terminal.view.ui" license-feature="org.eclipse.license" license-feature-version="0.0.0"> diff --git a/terminal/plugins/org.eclipse.tm.terminal.view.ui/about.ini b/terminal/plugins/org.eclipse.tm.terminal.view.ui/about.ini new file mode 100644 index 00000000000..e07a7bb377e --- /dev/null +++ b/terminal/plugins/org.eclipse.tm.terminal.view.ui/about.ini @@ -0,0 +1,24 @@ +# about.ini +# contains information about a feature +# java.io.Properties file (ISO 8859-1 with "\" escapes) +# "%key" are externalized strings defined in about.properties +# This file does not need to be translated. + +# Property "aboutText" contains blurb for "About" dialog (translated) +aboutText=%blurb + +# Property "windowImage" contains path to window icon (16x16) +# needed for primary features only + +# Property "featureImage" contains path to feature image (32x32) +featureImage=cdt_logo_icon32.png + +# Property "aboutImage" contains path to product image (500x330 or 115x164) +# needed for primary features only + +# Property "appName" contains name of the application (translated) +# needed for primary features only + +# Property "welcomePerspective" contains the id of the perspective in which the +# welcome page is to be opened. +# optional diff --git a/terminal/plugins/org.eclipse.tm.terminal.view.ui/about.mappings b/terminal/plugins/org.eclipse.tm.terminal.view.ui/about.mappings new file mode 100644 index 00000000000..936a8039c3e --- /dev/null +++ b/terminal/plugins/org.eclipse.tm.terminal.view.ui/about.mappings @@ -0,0 +1,9 @@ +# about.mappings +# contains fill-ins for about.properties +# java.io.Properties file (ISO 8859-1 with "\" escapes) +# This file does not need to be translated. + +# The following should contain the build version. +# e.g. "0=20200106-1728" +# This value will be added automatically via the build scripts +0=${buildId} diff --git a/terminal/plugins/org.eclipse.tm.terminal.view.ui/about.properties b/terminal/plugins/org.eclipse.tm.terminal.view.ui/about.properties new file mode 100644 index 00000000000..a590a7abfc2 --- /dev/null +++ b/terminal/plugins/org.eclipse.tm.terminal.view.ui/about.properties @@ -0,0 +1,32 @@ +############################################################################### +# Copyright (c) 2018, 2020 Contributors to the Eclipse Foundation +# +# See the NOTICE file(s) distributed with this work for additional +# information regarding copyright ownership. +# +# This program and the accompanying materials +# are made available under the terms of the Eclipse Public License 2.0 +# which accompanies this distribution, and is available at +# https://www.eclipse.org/legal/epl-2.0/ +# +# SPDX-License-Identifier: EPL-2.0 +############################################################################### +# about.properties +# contains externalized strings for about.ini +# java.io.Properties file (ISO 8859-1 with "\" escapes) +# fill-ins are supplied by about.mappings +# This file should be translated. +# NOTE TO TRANSLATOR: Please do not translate the featureVersion variable. + + +blurb=Terminal (Console) View\n\ +\n\ +Version: {featureVersion}\n\ +Build id: {0}\n\ +\n\ +Copyright (c) 2018, 2020 Contributors to the Eclipse Foundation +\n\ +See the NOTICE file(s) distributed with this work for additional\n\ +information regarding copyright ownership.\n\ +\n\ +Visit http://www.eclipse.org/cdt diff --git a/terminal/plugins/org.eclipse.tm.terminal.view.ui/build.properties b/terminal/plugins/org.eclipse.tm.terminal.view.ui/build.properties index 2ac1c658faa..013e8cd1d18 100644 --- a/terminal/plugins/org.eclipse.tm.terminal.view.ui/build.properties +++ b/terminal/plugins/org.eclipse.tm.terminal.view.ui/build.properties @@ -17,5 +17,9 @@ bin.includes = META-INF/,\ plugin.xml,\ about.html,\ icons/,\ - contexts.xml + contexts.xml,\ + about.ini,\ + about.mappings,\ + about.properties,\ + cdt_logo_icon32.png src.includes = schema/ diff --git a/terminal/plugins/org.eclipse.tm.terminal.view.ui/cdt_logo_icon32.png b/terminal/plugins/org.eclipse.tm.terminal.view.ui/cdt_logo_icon32.png new file mode 100644 index 00000000000..470ca81b327 Binary files /dev/null and b/terminal/plugins/org.eclipse.tm.terminal.view.ui/cdt_logo_icon32.png differ