From a5e9a336280330921b15ba45001d838e34267e4d Mon Sep 17 00:00:00 2001 From: Kondal Kolipaka Date: Fri, 29 May 2020 16:17:31 +0530 Subject: [PATCH 1/2] IEP-195: Branding plugin for IEP This will add IDF Eclipse Plugin in the About Eclipse Dialog --- bundles/com.espressif.idf.branding/.project | 22 ++ .../.settings/org.eclipse.jdt.core.prefs | 8 + .../.settings/org.eclipse.jdt.launching.prefs | 3 + .../META-INF/MANIFEST.MF | 7 + bundles/com.espressif.idf.branding/about.ini | 25 +++ .../com.espressif.idf.branding/about.mappings | 9 + .../about.properties | 7 + .../build.properties | 23 +++ .../com.espressif.idf.branding/epl-v20.html | 189 ++++++++++++++++++ .../espressif16x16.png | Bin 0 -> 1542 bytes .../espressif32x32.png | Bin 0 -> 3296 bytes .../plugin.properties | 2 + bundles/com.espressif.idf.branding/plugin.xml | 5 + bundles/com.espressif.idf.branding/pom.xml | 14 ++ .../target/MANIFEST.MF | 8 + ....espressif.idf.branding-1.0.0-SNAPSHOT.jar | Bin 0 -> 11450 bytes .../target/local-artifacts.properties | 4 + .../target/maven-archiver/pom.properties | 5 + .../target/p2artifacts.xml | 13 ++ .../target/p2content.xml | 38 ++++ .../META-INF/MANIFEST.MF | 2 +- .../plugin.properties | 4 +- bundles/pom.xml | 1 + .../com.espressif.idf.feature/feature.xml | 10 +- 24 files changed, 395 insertions(+), 4 deletions(-) create mode 100644 bundles/com.espressif.idf.branding/.project create mode 100644 bundles/com.espressif.idf.branding/.settings/org.eclipse.jdt.core.prefs create mode 100644 bundles/com.espressif.idf.branding/.settings/org.eclipse.jdt.launching.prefs create mode 100644 bundles/com.espressif.idf.branding/META-INF/MANIFEST.MF create mode 100644 bundles/com.espressif.idf.branding/about.ini create mode 100644 bundles/com.espressif.idf.branding/about.mappings create mode 100644 bundles/com.espressif.idf.branding/about.properties create mode 100644 bundles/com.espressif.idf.branding/build.properties create mode 100644 bundles/com.espressif.idf.branding/epl-v20.html create mode 100644 bundles/com.espressif.idf.branding/espressif16x16.png create mode 100644 bundles/com.espressif.idf.branding/espressif32x32.png create mode 100644 bundles/com.espressif.idf.branding/plugin.properties create mode 100644 bundles/com.espressif.idf.branding/plugin.xml create mode 100644 bundles/com.espressif.idf.branding/pom.xml create mode 100644 bundles/com.espressif.idf.branding/target/MANIFEST.MF create mode 100644 bundles/com.espressif.idf.branding/target/com.espressif.idf.branding-1.0.0-SNAPSHOT.jar create mode 100644 bundles/com.espressif.idf.branding/target/local-artifacts.properties create mode 100644 bundles/com.espressif.idf.branding/target/maven-archiver/pom.properties create mode 100644 bundles/com.espressif.idf.branding/target/p2artifacts.xml create mode 100644 bundles/com.espressif.idf.branding/target/p2content.xml diff --git a/bundles/com.espressif.idf.branding/.project b/bundles/com.espressif.idf.branding/.project new file mode 100644 index 000000000..1b42d5d21 --- /dev/null +++ b/bundles/com.espressif.idf.branding/.project @@ -0,0 +1,22 @@ + + + com.espressif.idf.branding + + + + + + org.eclipse.pde.ManifestBuilder + + + + + org.eclipse.pde.SchemaBuilder + + + + + + org.eclipse.pde.PluginNature + + diff --git a/bundles/com.espressif.idf.branding/.settings/org.eclipse.jdt.core.prefs b/bundles/com.espressif.idf.branding/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 000000000..08fd1c53d --- /dev/null +++ b/bundles/com.espressif.idf.branding/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,8 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 +org.eclipse.jdt.core.compiler.compliance=1.8 +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.release=enabled +org.eclipse.jdt.core.compiler.source=1.8 \ No newline at end of file diff --git a/bundles/com.espressif.idf.branding/.settings/org.eclipse.jdt.launching.prefs b/bundles/com.espressif.idf.branding/.settings/org.eclipse.jdt.launching.prefs new file mode 100644 index 000000000..f8a131b56 --- /dev/null +++ b/bundles/com.espressif.idf.branding/.settings/org.eclipse.jdt.launching.prefs @@ -0,0 +1,3 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.launching.PREF_COMPILER_COMPLIANCE_DOES_NOT_MATCH_JRE=warning +org.eclipse.jdt.launching.PREF_STRICTLY_COMPATIBLE_JRE_NOT_AVAILABLE=warning diff --git a/bundles/com.espressif.idf.branding/META-INF/MANIFEST.MF b/bundles/com.espressif.idf.branding/META-INF/MANIFEST.MF new file mode 100644 index 000000000..902d44575 --- /dev/null +++ b/bundles/com.espressif.idf.branding/META-INF/MANIFEST.MF @@ -0,0 +1,7 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: %pluginName +Bundle-SymbolicName: com.espressif.idf.branding;singleton:=true +Bundle-Version: 1.0.0.qualifier +Bundle-Vendor: %providerName +Bundle-Localization: plugin diff --git a/bundles/com.espressif.idf.branding/about.ini b/bundles/com.espressif.idf.branding/about.ini new file mode 100644 index 000000000..0d61909cb --- /dev/null +++ b/bundles/com.espressif.idf.branding/about.ini @@ -0,0 +1,25 @@ +# 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 +windowImage=espressif16x16.png + +# Property "featureImage" contains path to feature image (32x32) +featureImage=espressif32x32.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/bundles/com.espressif.idf.branding/about.mappings b/bundles/com.espressif.idf.branding/about.mappings new file mode 100644 index 000000000..936a8039c --- /dev/null +++ b/bundles/com.espressif.idf.branding/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/bundles/com.espressif.idf.branding/about.properties b/bundles/com.espressif.idf.branding/about.properties new file mode 100644 index 000000000..99c22ed78 --- /dev/null +++ b/bundles/com.espressif.idf.branding/about.properties @@ -0,0 +1,7 @@ +blurb=ESP-IDF Eclipse Plugin\n\ +\n\ +Version: {featureVersion}\n\ +\n\ +Copyright (c) 2019 ESPRESSIF SYSTEMS (SHANGHAI) CO., LTD. All rights reserved. +\n\ +Visit https://www.espressif.com/ diff --git a/bundles/com.espressif.idf.branding/build.properties b/bundles/com.espressif.idf.branding/build.properties new file mode 100644 index 000000000..9221f3361 --- /dev/null +++ b/bundles/com.espressif.idf.branding/build.properties @@ -0,0 +1,23 @@ +############################################################################### +# Copyright (c) 2005, 2009 IBM Corporation and others. +# +# 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 +# +# Contributors: +# IBM Corporation - initial API and implementation +############################################################################### +bin.includes = about.ini,\ + about.mappings,\ + about.properties,\ + plugin.properties,\ + epl-v20.html,\ + META-INF/,\ + espressif32x32.png,\ + espressif16x16.png,\ + plugin.xml,\ + build.properties diff --git a/bundles/com.espressif.idf.branding/epl-v20.html b/bundles/com.espressif.idf.branding/epl-v20.html new file mode 100644 index 000000000..008b8018d --- /dev/null +++ b/bundles/com.espressif.idf.branding/epl-v20.html @@ -0,0 +1,189 @@ + + + + + +Eclipse Foundation Software User Agreement + + + +

Eclipse Foundation Software User Agreement

+

November 22, 2017

+ +

Usage Of Content

+ +

THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, + INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS + (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY + THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND + CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED + BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE OF THE CONTENT IS + GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY + APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED + BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS + AGREEMENT AND THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE + AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT + USE THE CONTENT.

+ +

Applicable Licenses

+ +

+ Unless otherwise indicated, all Content made available by the Eclipse + Foundation is provided to you under the terms and conditions of the + Eclipse Public License Version 2.0 ("EPL"). A copy of the + EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-2.0. + For purposes of the EPL, "Program" will mean the Content. +

+ +

Content includes, but is not limited to, source code, object + code, documentation and other files maintained in the Eclipse + Foundation source code repository ("Repository") in software + modules ("Modules") and made available as downloadable + archives ("Downloads").

+ + + +

The terms and conditions governing Plug-ins and Fragments should + be contained in files named "about.html" + ("Abouts"). The terms and conditions governing Features and + Included Features should be contained in files named + "license.html" ("Feature Licenses"). Abouts and + Feature Licenses may be located in any directory of a Download or + Module including, but not limited to the following locations:

+ + + +

Note: if a Feature made available by the Eclipse Foundation is + installed using the Provisioning Technology (as defined below), you + must agree to a license ("Feature Update License") during + the installation process. If the Feature contains Included Features, + the Feature Update License should either provide you with the terms + and conditions governing the Included Features or inform you where you + can locate them. Feature Update Licenses may be found in the + "license" property of files named + "feature.properties" found within a Feature. Such Abouts, + Feature Licenses, and Feature Update Licenses contain the terms and + conditions (or references to such terms and conditions) that govern + your use of the associated Content in that directory.

+ +

THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY + REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND + CONDITIONS. SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT + ARE NOT LIMITED TO):

+ + + +

IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND + CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, + or Feature Update License is provided, please contact the Eclipse + Foundation to determine what terms and conditions govern that + particular Content.

+ + +

Use of Provisioning Technology

+ +

+ The Eclipse Foundation makes available provisioning software, examples + of which include, but are not limited to, p2 and the Eclipse Update + Manager ("Provisioning Technology") for the purpose of + allowing users to install software, documentation, information and/or + other materials (collectively "Installable Software"). This + capability is provided with the intent of allowing such users to + install, extend and update Eclipse-based products. Information about + packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html + ("Specification"). +

+ +

You may use Provisioning Technology to allow other parties to + install Installable Software. You shall be responsible for enabling + the applicable license agreements relating to the Installable Software + to be presented to, and accepted by, the users of the Provisioning + Technology in accordance with the Specification. By using Provisioning + Technology in such a manner and making it available in accordance with + the Specification, you further acknowledge your agreement to, and the + acquisition of all necessary rights to permit the following:

+ +
    +
  1. A series of actions may occur ("Provisioning + Process") in which a user may execute the Provisioning + Technology on a machine ("Target Machine") with the intent + of installing, extending or updating the functionality of an + Eclipse-based product.
  2. +
  3. During the Provisioning Process, the Provisioning Technology + may cause third party Installable Software or a portion thereof to be + accessed and copied to the Target Machine.
  4. +
  5. Pursuant to the Specification, you will provide to the user + the terms and conditions that govern the use of the Installable + Software ("Installable Software Agreement") and such + Installable Software Agreement shall be accessed from the Target + Machine in accordance with the Specification. Such Installable + Software Agreement must inform the user of the terms and conditions + that govern the Installable Software and must solicit acceptance by + the end user in the manner prescribed in such Installable Software + Agreement. Upon such indication of agreement by the user, the + provisioning Technology will complete installation of the Installable + Software.
  6. +
+ +

Cryptography

+ +

Content may contain encryption software. The country in which + you are currently may have restrictions on the import, possession, and + use, and/or re-export to another country, of encryption software. + BEFORE using any encryption software, please check the country's laws, + regulations and policies concerning the import, possession, or use, + and re-export of encryption software, to see if this is permitted.

+ +

+ Java and all Java-based trademarks are trademarks of + Oracle Corporation in the United States, other countries, or both. +

+ + diff --git a/bundles/com.espressif.idf.branding/espressif16x16.png b/bundles/com.espressif.idf.branding/espressif16x16.png new file mode 100644 index 0000000000000000000000000000000000000000..cca79451a9c5cb4d4c70b6e718886725c293c70e GIT binary patch literal 1542 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Ea{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBDAAG{;hE;^%b*2hb1<+m zvN13NS&R%!Ktc%0W(2aO7(gZiSqx!}(r|VhqXt5KdnN-5R81O?1_2Ks2I+y&ObeLc zDg+iVBiJCN%S#O&04dG_kH}&M25w;xW@MN(M}mQYi90hSq9nrC$0|8LS1&OoKPgqO zBDVmfi@~PC3dqb&ElE_U$j!+swyLmI0;{kBvO&W7N(x{lCE2!05xxNm&iO^D3Z{A{ zdIm~%TnY*bHbp6ERzWUqQ0+jTtx`rwNr9EVetCJhUb(Seeo?xG?WUP)qwZeFo6#1NP{E~&-IMVSR9nfZANAafIw@=Hr>m6Sjh!2!gbC7EdmoAQdG z-U511A0(r1sAr%LHyfzc1|(|bUzC{&v>9Z+ouLg_C5jlr9*BD9{M>?~)Z$`f^~hrA z>H{+JOY(uCR+O3SnOBlp1k?<*%?N56ZWZWe1*I0}=ahn+8k(0`Vh1w-O&F@nMjsSh zNWlk*8?Y!aa_qQl^x+Y0$F)L2!4sG)u6nvShFA#32FH4c1WMT6pL;WQaTRCP3Jq_r zr3%+euP>1|@zC&kxv+NiJf|v+4b$VAB9uEgHpRUWZ<)feO-P4l5&KK=*t@=$TojcS zpIBh7TVD3;-nqFVOA^zc-^<_keopcE@4N?2Gn}&fzu#w5-Sm~7rZY~Rn%e!|$Lg)l zy0^hO8yRjb33{zM{dZQ@t5rL7+vC4+8RpyHpQC;_ZP~r%Y@9n!86_;PXH>6ClN z%cnb;?yGN7U@2M8xKwMk)5oRG(z7LcHXEGZJ%6LdqK(QX#T~Eg0?ta>buN7`@K3kt zfwIZ09cjN^UNq})&*WXUbN{I(TaBu{DWV$BH9r@9XqG#2s-@PN^Wt2acem;ptU3xm z_pEpz$ai^<_?HJ6gt$X~pLq%{^@97&4cy7xlZaw9^=4|XLe(bT;FF*K;uGsV@t4iMnF}_Z{7`W~?cM(X z!M#`CFs)xB`}kvFzh|t&lHN;I67QC>e_ry?Utc{s(&CMh^urf=EW7v&P19d@E||Kp zI98(Sc%4nkLzyZ24wh+V%*slc^6~r!FZ-E)XPjBhd4o&$X=1Ha?tbNGx@Weo^t&c_ zr0=as|HI%TBB4G9HTY(%YB0*)v0qhLxw4t3+t`YQ!*NcoTBOIynRiaRW~yrX(!(oIn5=IQF^vd$@?2>`z^GN1qe literal 0 HcmV?d00001 diff --git a/bundles/com.espressif.idf.branding/espressif32x32.png b/bundles/com.espressif.idf.branding/espressif32x32.png new file mode 100644 index 0000000000000000000000000000000000000000..25e34e2f0aece2fdbea2407e9bd8f6c65aca5030 GIT binary patch literal 3296 zcmZ`*c{r47AASeLn0&I2Ez{U0%Zx_IWSQ(^DZ3GAEQ1L%%#2JTrO94~WG_o-u|U7R`uIqcQ>v?|ndq4N@{yp0tZ=(GXOCdoSK>z@Ra8_oH z+_;z9VFEk3V}7GZFE{W79JV_Q05z$Q4euS>lfG7tb^s8m0s!Zj0IpZb4t|JK_FQs@-!sZmM3I5M3`Ov;b zjs7zD7yTp40JVKw|2V$yck_+qUXGEV0qW;P8wuWm!f@QDQjIe^?2HFr$~v9m@tp>|PAPIrAm!J#YGX*q_dgi9XBs`ZZZu`6bkO*@x>adK@QA4Pr??gy>-^xcJ)aB)hcd!S z2dmRzYv~6EQKHKO>(~9Bh3A^aUl#7+Nx5B}x-h1&+yXG&Zduz`L57M`#m24G1FYdu z7Af-cMHUXm5YE$Si$r1`^Yf|4OAnmYx@8v=VdB_lRLQH4zDP{nqhz=0Y;?J}O4zh(j@b{vdCPvOyP4Xw&nYeuJee#sClOTsC|xcpq~)S?kR2_u`Rs2YX$nE><3R~v z^WcWyo(Bsg;p8xz(#iKq`_yEVbyp98W2f}V_&thU9hL-w>ZM6rn>81S>0b5uw#zRT zPdv>(ihqj0^HF~#_184*{Nkziq- zME82r(sdOTUx#5w5@HZtgo~%+*V2HvTk4ETxnT(`TPxN&2^Aa z-NHhUa$PFnGj;G)qZ8&(*LWe=%YFB*_)G9txHUM|UrCl2>R>xIshlBSRk7x-FS{!{ zvr`;!)k1+DGyTxfKJDh{g<4eugoeYgaKmPwbwor}`^D7pn*R(A-1Xvh6ipPv-?bg@ zk8oIFHqLtSDSU0a0PH}V_rdpCrM!f##ECa=R#lwTwWw$(o(M32iwYXDv{qEGSw;Ol zvm-`*3s~yht!!6ti<^V)uXQ@}J;GiaadRTK9$kdmfQokx3uPf36)y0IRk#oyrC*xg z&o5IzEtP@F=&{bu2D&MF@=h{@OXL=@( z`N8o-bw@w{?a%C{LJ{SoqEo3Xj(X09VwC)Qw27gBcVrhILnCH#A~juq9ZERTm^8hk z|MlYyb?M=@k}H}=B_EhS>2`JVss~xj#qIU6+PawKpPiW*!LNKsLx8;VgG73LUXH=h zwm(%@UXJIU_3;4;mT3i7Y=-$55<`XVW+JoOhc|;Z4Up?>V=nNrD`@B77ECp;mdtSV$M1m@Hh7~KW zfqhrDb|uss%az1v3l2Xvlh2el2kFFm>~rJH$TK5$n^s#n4U!Tg>y79PbBv|7>RoN< ziMixlS`0R>x1g|!<*c@V47=)7;4hZ+!IN`rA2QH9RP+>2Mn?(TlXjPwRRup~VY&{_ zeB1T%E22BVoC$#_^#*HK+CfI&FHA)_*%6^}`+No05Plifx=>S1Ov1)-v=8IboQ)t) z1k6=4YirLdRayvE|Bf%zXi}|=E%I(gNwI((nDtg$0^ckWbk&;O%tuP=(H`!cF2 zpUNyG6K2L+I!%*4tZU3!6zweH=^-eO9L{_qhl>5(72H2Vrn+1r+1;>WgO24mKXJB9 z%3_w|-hiwa16>l$dxJoMWERZ*0w}y<^WwB`kuVnfk~b=qdZk>I@nD=`)GfRU+ttQg zzHgPTzyGXdW3#8|(rLX?YAz`R58}P6m!0dLazVdSE%Z-Fw|=MIewADa!SKs!5z5MH zluxw-Quj@LQ<>zlrSawHfw4o$bPvH0@}$Mj{zJE$RU}_pUeNM4qg7q~)MP;L!`znx&@PT%JlMe)YhzwPW%| zYD-FnqQGC_ADqAl1fwWkpHC?W)J-_$|ok*k|^l9m*YEqj9_JnnV(Uggq*4T1b z7hjHe-j0vh_J)UQKEa|$Ylm)jUPHsZ3k1e(EhOup?iEi~OU#C@_(Rnm@9_L$FTZj& z_4Vy9W}-F(6^o}XVE^(aNUrVFqZ;w6C>i)wq*9+6b36jNBE#e0S@n(!B}) wH>4@!@KHG<198R{r}V5Yd)Uioa}~P<@rb|uVFI4gwEf?XGe2ThWkQJkFWQcf#Q*>R literal 0 HcmV?d00001 diff --git a/bundles/com.espressif.idf.branding/plugin.properties b/bundles/com.espressif.idf.branding/plugin.properties new file mode 100644 index 000000000..b9151f32b --- /dev/null +++ b/bundles/com.espressif.idf.branding/plugin.properties @@ -0,0 +1,2 @@ +pluginName=ESP-IDF Eclipse Plugin +providerName=ESPRESSIF SYSTEMS (SHANGHAI) CO., LTD \ No newline at end of file diff --git a/bundles/com.espressif.idf.branding/plugin.xml b/bundles/com.espressif.idf.branding/plugin.xml new file mode 100644 index 000000000..5535690d3 --- /dev/null +++ b/bundles/com.espressif.idf.branding/plugin.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/bundles/com.espressif.idf.branding/pom.xml b/bundles/com.espressif.idf.branding/pom.xml new file mode 100644 index 000000000..dc03b5302 --- /dev/null +++ b/bundles/com.espressif.idf.branding/pom.xml @@ -0,0 +1,14 @@ + + + 4.0.0 + com.espressif.idf.branding + 1.0.0-SNAPSHOT + eclipse-plugin + + + com.espressif.idf + com.espressif.idf.bundles + 1.0.0-SNAPSHOT + + \ No newline at end of file diff --git a/bundles/com.espressif.idf.branding/target/MANIFEST.MF b/bundles/com.espressif.idf.branding/target/MANIFEST.MF new file mode 100644 index 000000000..7ec7f486c --- /dev/null +++ b/bundles/com.espressif.idf.branding/target/MANIFEST.MF @@ -0,0 +1,8 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: %pluginName +Bundle-SymbolicName: com.espressif.idf.branding;singleton:=true +Bundle-Version: 1.0.0.202005291025 +Bundle-Vendor: %providerName +Bundle-Localization: plugin + diff --git a/bundles/com.espressif.idf.branding/target/com.espressif.idf.branding-1.0.0-SNAPSHOT.jar b/bundles/com.espressif.idf.branding/target/com.espressif.idf.branding-1.0.0-SNAPSHOT.jar new file mode 100644 index 0000000000000000000000000000000000000000..0f8ba116b29af4e897a846f15cfa971e8ee3f1b5 GIT binary patch literal 11450 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 z zV0svk024m4j1%=l&}cOi!8rA>d@;KEi_*h1(!(Seo?blut&mmCip1TLAVqkmO$v%* zB0mQ4mZ7be>IZ@9n2%6E_I!+?Y!|4fjJ333DrFe4F(RsjVdTAg`fHLD(9a?^B*9LH z6|9T6k6VuyjeEr%@=_q6Xm9=!Uj0ce_!{H?w1R-2mw&?jO*{CPh5xR)`wNc*I1#x2 z-NOG1_EUxTSNjPgdR^WBIR0Cc_w!%>*(cH8*jE|ciGb|C!T-uYuS&ZAZtkZ_@2~dL z+|T2L|M)NeHutY5zf#=q!~G}K-rv3o0`^`#{ilZScl4iBa=*~^uj%-A&D`(EKOJ2C zLTbMb{(l~0{f_?A!OAc6{j2owpJSHaVSlRa|AJM%miqr)>Hi)7Cl>Gv--rJj{vS^8 zJN{4m+|N@}B!K%Xv!kK-`Ro4xh2c&b literal 0 HcmV?d00001 diff --git a/bundles/com.espressif.idf.branding/target/local-artifacts.properties b/bundles/com.espressif.idf.branding/target/local-artifacts.properties new file mode 100644 index 000000000..e741bae1a --- /dev/null +++ b/bundles/com.espressif.idf.branding/target/local-artifacts.properties @@ -0,0 +1,4 @@ +#Fri May 29 15:57:01 IST 2020 +artifact.main=/Users/kondal/esp/idf-eclipse-plugin/bundles/com.espressif.idf.branding/target/com.espressif.idf.branding-1.0.0-SNAPSHOT.jar +artifact.attached.p2artifacts=/Users/kondal/esp/idf-eclipse-plugin/bundles/com.espressif.idf.branding/target/p2artifacts.xml +artifact.attached.p2metadata=/Users/kondal/esp/idf-eclipse-plugin/bundles/com.espressif.idf.branding/target/p2content.xml diff --git a/bundles/com.espressif.idf.branding/target/maven-archiver/pom.properties b/bundles/com.espressif.idf.branding/target/maven-archiver/pom.properties new file mode 100644 index 000000000..8c85bff1c --- /dev/null +++ b/bundles/com.espressif.idf.branding/target/maven-archiver/pom.properties @@ -0,0 +1,5 @@ +#Generated by Maven +#Fri May 29 15:57:01 IST 2020 +groupId=com.espressif.idf +artifactId=com.espressif.idf.branding +version=1.0.0-SNAPSHOT diff --git a/bundles/com.espressif.idf.branding/target/p2artifacts.xml b/bundles/com.espressif.idf.branding/target/p2artifacts.xml new file mode 100644 index 000000000..20bb9f754 --- /dev/null +++ b/bundles/com.espressif.idf.branding/target/p2artifacts.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/bundles/com.espressif.idf.branding/target/p2content.xml b/bundles/com.espressif.idf.branding/target/p2content.xml new file mode 100644 index 000000000..f04446797 --- /dev/null +++ b/bundles/com.espressif.idf.branding/target/p2content.xml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bundle-SymbolicName: com.espressif.idf.branding;singleton:=true Bundle-Version: 1.0.0.202005291025 + + + + + diff --git a/bundles/com.espressif.idf.help/META-INF/MANIFEST.MF b/bundles/com.espressif.idf.help/META-INF/MANIFEST.MF index 1c752c231..c15c19b06 100644 --- a/bundles/com.espressif.idf.help/META-INF/MANIFEST.MF +++ b/bundles/com.espressif.idf.help/META-INF/MANIFEST.MF @@ -1,6 +1,6 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 -Bundle-Name: Help +Bundle-Name: ESP-IDF Help Bundle-SymbolicName: com.espressif.idf.help;singleton:=true Bundle-Version: 1.0.0.qualifier Bundle-Activator: com.espressif.idf.help.HelpActivator diff --git a/bundles/com.espressif.idf.terminal.connector.serial/plugin.properties b/bundles/com.espressif.idf.terminal.connector.serial/plugin.properties index bd4640218..b3a525fda 100644 --- a/bundles/com.espressif.idf.terminal.connector.serial/plugin.properties +++ b/bundles/com.espressif.idf.terminal.connector.serial/plugin.properties @@ -10,8 +10,8 @@ # Wind River Systems - initial API and implementation ################################################################################## -pluginName = Terminal Serial Connector -providerName = Eclipse CDT +pluginName = ESP-IDF Serial Monitor +providerName = ESPRESSIF SYSTEMS (SHANGHAI) CO., LTD # ----- Terminal Launcher Delegates ----- diff --git a/bundles/pom.xml b/bundles/pom.xml index bc4a20638..516d93019 100644 --- a/bundles/pom.xml +++ b/bundles/pom.xml @@ -25,6 +25,7 @@ com.espressif.idf.help com.espressif.idf.terminal.connector com.espressif.idf.terminal.connector.serial + com.espressif.idf.branding diff --git a/features/com.espressif.idf.feature/feature.xml b/features/com.espressif.idf.feature/feature.xml index ae98dde54..a324b30f1 100644 --- a/features/com.espressif.idf.feature/feature.xml +++ b/features/com.espressif.idf.feature/feature.xml @@ -3,7 +3,8 @@ id="com.espressif.idf.feature" label="Espressif IDF Plugins for Eclipse" version="1.1.0.qualifier" - provider-name="ESPRESSIF SYSTEMS (SHANGHAI) CO., LTD"> + provider-name="ESPRESSIF SYSTEMS (SHANGHAI) CO., LTD" + plugin="com.espressif.idf.branding"> Eclipse IDE for Espressif IoT Development Framework(IDF) @@ -170,5 +171,12 @@ You may add additional accurate notices of copyright ownership. version="0.0.0" fragment="true" unpack="false"/> + + From 36d46f2c78e45be4056a524e9773dda059284759 Mon Sep 17 00:00:00 2001 From: Kondal Kolipaka Date: Tue, 2 Jun 2020 16:26:42 +0530 Subject: [PATCH 2/2] Remove target dir from branding plugin --- bundles/com.espressif.idf.branding/.gitignore | 1 + .../target/MANIFEST.MF | 8 ---- ....espressif.idf.branding-1.0.0-SNAPSHOT.jar | Bin 11450 -> 0 bytes .../target/local-artifacts.properties | 4 -- .../target/maven-archiver/pom.properties | 5 --- .../target/p2artifacts.xml | 13 ------ .../target/p2content.xml | 38 ------------------ 7 files changed, 1 insertion(+), 68 deletions(-) create mode 100644 bundles/com.espressif.idf.branding/.gitignore delete mode 100644 bundles/com.espressif.idf.branding/target/MANIFEST.MF delete mode 100644 bundles/com.espressif.idf.branding/target/com.espressif.idf.branding-1.0.0-SNAPSHOT.jar delete mode 100644 bundles/com.espressif.idf.branding/target/local-artifacts.properties delete mode 100644 bundles/com.espressif.idf.branding/target/maven-archiver/pom.properties delete mode 100644 bundles/com.espressif.idf.branding/target/p2artifacts.xml delete mode 100644 bundles/com.espressif.idf.branding/target/p2content.xml diff --git a/bundles/com.espressif.idf.branding/.gitignore b/bundles/com.espressif.idf.branding/.gitignore new file mode 100644 index 000000000..b83d22266 --- /dev/null +++ b/bundles/com.espressif.idf.branding/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/com.espressif.idf.branding/target/MANIFEST.MF b/bundles/com.espressif.idf.branding/target/MANIFEST.MF deleted file mode 100644 index 7ec7f486c..000000000 --- a/bundles/com.espressif.idf.branding/target/MANIFEST.MF +++ /dev/null @@ -1,8 +0,0 @@ -Manifest-Version: 1.0 -Bundle-ManifestVersion: 2 -Bundle-Name: %pluginName -Bundle-SymbolicName: com.espressif.idf.branding;singleton:=true -Bundle-Version: 1.0.0.202005291025 -Bundle-Vendor: %providerName -Bundle-Localization: plugin - diff --git a/bundles/com.espressif.idf.branding/target/com.espressif.idf.branding-1.0.0-SNAPSHOT.jar b/bundles/com.espressif.idf.branding/target/com.espressif.idf.branding-1.0.0-SNAPSHOT.jar deleted file mode 100644 index 0f8ba116b29af4e897a846f15cfa971e8ee3f1b5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 11450 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 z zV0svk024m4j1%=l&}cOi!8rA>d@;KEi_*h1(!(Seo?blut&mmCip1TLAVqkmO$v%* zB0mQ4mZ7be>IZ@9n2%6E_I!+?Y!|4fjJ333DrFe4F(RsjVdTAg`fHLD(9a?^B*9LH z6|9T6k6VuyjeEr%@=_q6Xm9=!Uj0ce_!{H?w1R-2mw&?jO*{CPh5xR)`wNc*I1#x2 z-NOG1_EUxTSNjPgdR^WBIR0Cc_w!%>*(cH8*jE|ciGb|C!T-uYuS&ZAZtkZ_@2~dL z+|T2L|M)NeHutY5zf#=q!~G}K-rv3o0`^`#{ilZScl4iBa=*~^uj%-A&D`(EKOJ2C zLTbMb{(l~0{f_?A!OAc6{j2owpJSHaVSlRa|AJM%miqr)>Hi)7Cl>Gv--rJj{vS^8 zJN{4m+|N@}B!K%Xv!kK-`Ro4xh2c&b diff --git a/bundles/com.espressif.idf.branding/target/local-artifacts.properties b/bundles/com.espressif.idf.branding/target/local-artifacts.properties deleted file mode 100644 index e741bae1a..000000000 --- a/bundles/com.espressif.idf.branding/target/local-artifacts.properties +++ /dev/null @@ -1,4 +0,0 @@ -#Fri May 29 15:57:01 IST 2020 -artifact.main=/Users/kondal/esp/idf-eclipse-plugin/bundles/com.espressif.idf.branding/target/com.espressif.idf.branding-1.0.0-SNAPSHOT.jar -artifact.attached.p2artifacts=/Users/kondal/esp/idf-eclipse-plugin/bundles/com.espressif.idf.branding/target/p2artifacts.xml -artifact.attached.p2metadata=/Users/kondal/esp/idf-eclipse-plugin/bundles/com.espressif.idf.branding/target/p2content.xml diff --git a/bundles/com.espressif.idf.branding/target/maven-archiver/pom.properties b/bundles/com.espressif.idf.branding/target/maven-archiver/pom.properties deleted file mode 100644 index 8c85bff1c..000000000 --- a/bundles/com.espressif.idf.branding/target/maven-archiver/pom.properties +++ /dev/null @@ -1,5 +0,0 @@ -#Generated by Maven -#Fri May 29 15:57:01 IST 2020 -groupId=com.espressif.idf -artifactId=com.espressif.idf.branding -version=1.0.0-SNAPSHOT diff --git a/bundles/com.espressif.idf.branding/target/p2artifacts.xml b/bundles/com.espressif.idf.branding/target/p2artifacts.xml deleted file mode 100644 index 20bb9f754..000000000 --- a/bundles/com.espressif.idf.branding/target/p2artifacts.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/bundles/com.espressif.idf.branding/target/p2content.xml b/bundles/com.espressif.idf.branding/target/p2content.xml deleted file mode 100644 index f04446797..000000000 --- a/bundles/com.espressif.idf.branding/target/p2content.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Bundle-SymbolicName: com.espressif.idf.branding;singleton:=true Bundle-Version: 1.0.0.202005291025 - - - - -