Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2022-03-04Bug 579073 - POM and product version change for 4.24 releaseI20220310-1800I20220309-1800I20220308-1800I20220307-1800I20220307-1010I20220307-0630I20220307-0340Sravan Kumar Lakkimsetti1-1/+1
Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com> Change-Id: I579623ac68b76535d2c6e9368a4a0e21cb65cce7 Reviewed-on: https://git.eclipse.org/r/c/platform/eclipse.platform.text/+/191466
2022-02-18Bug 540448 - Fix end-of-line code minings for CRLFMickael Istria1-1/+9
Also-By: Thomas Wolf <thomas.wolf@paranor.ch> Change-Id: I8371007a2b90c9b63c06daad8d868d381fea3bee Reviewed-on: https://git.eclipse.org/r/c/platform/eclipse.platform.text/+/190801 Tested-by: Mickael Istria <mistria@redhat.com> Reviewed-by: Mickael Istria <mistria@redhat.com> Reviewed-by: Thomas Wolf <thomas.wolf@paranor.ch>
2022-02-07Bug 540448 - [code mining] create code minings at the end of the lineY20220209-0600Y20220208-0600Y20220207-0600I20220208-1800I20220207-1800Mickael Istria3-2/+122
Adding LineContentAnnotation on last offset of the line (usually on \n or with an offset that's superior to last char offset) will now draw the annotation after the line. For that goal, a new LineEndCodeMinging API is introduced. Change-Id: Ibb636a54e11981692a92dba653fb8013d5a3c00a Reviewed-on: https://git.eclipse.org/r/c/platform/eclipse.platform.text/+/190503 Tested-by: Platform Bot <platform-bot@eclipse.org> Reviewed-by: Mickael Istria <mistria@redhat.com>
2022-02-01Bug 578449 - Use same groupId in production pom than in consumerI20220201-1800Mickael Istria1-1/+1
Platform artifacts are published on Maven Central with org.eclipse.platform groupId. To facilitate further work which could allow deploying to p2 and Maven as part of the same build, let's use the target/expected buildId directly so we don't have to generate a new one later. artifactId is already 1-1 mapping. Only versions would then be different between Maven (-SNAPSHOT) and p2 metadata (.yyyyMMddhhmm) Change-Id: I601d2d9ec1a016f84806eeb13aa6673c5473a8b4 Reviewed-on: https://git.eclipse.org/r/c/platform/eclipse.platform.text/+/190242 Tested-by: Platform Bot <platform-bot@eclipse.org> Reviewed-by: Mickael Istria <mistria@redhat.com>
2021-11-26Bug 577442 - POM and product version change for 4.23 releaseI20211128-1800I20211127-1800I20211126-1800I20211126-0740I20211126-0230Sravan Kumar Lakkimsetti1-1/+1
Change-Id: I8c05ca31c5d52ac375e4c70155a3cd76e3baf378 Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com> Reviewed-on: https://git.eclipse.org/r/c/platform/eclipse.platform.text/+/188126
2021-09-06Bug 575782 - POM and product version change for 4.22 releaseI20210906-1800I20210906-1000I20210906-0820I20210906-0610Kit Lo1-1/+1
Change-Id: If49af82d9baa582b52a89a73e6b74f355e935904 Signed-off-by: Kit Lo <kitlo@us.ibm.com> Reviewed-on: https://git.eclipse.org/r/c/platform/eclipse.platform.text/+/185016 Tested-by: Platform Bot <platform-bot@eclipse.org> Reviewed-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
2021-06-04Bug 573960 - POM and product version change for 4.21 releaseI20210606-1800I20210605-1800I20210604-2250I20210604-1020I20210604-0640I20210604-0350Sravan Kumar Lakkimsetti1-1/+1
Change-Id: I9d7063f961475963c2d5e07132366e3f3bd3bcce Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com> Reviewed-on: https://git.eclipse.org/r/c/platform/eclipse.platform.text/+/181370
2021-05-12Bug 573504 - Move bundles with deps on Java 11 to it tooAlexander Kurtakov4-7/+10
Move o.e.jface.text.examples. Change-Id: I7eeb264d95e95ac20763ca5df1fe37ae3e3271da Reviewed-on: https://git.eclipse.org/r/c/platform/eclipse.platform.text/+/180532 Tested-by: Platform Bot <platform-bot@eclipse.org> Reviewed-by: Alexander Kurtakov <akurtako@redhat.com>
2021-03-29Apply "Primitive parsing" JDT cleanup to platform.textI20210331-1800I20210330-1800Lars Vogel1-3/+3
A boxed primitive is created from a String, just to extract the unboxed primitive value.It is more efficient to just call the static parseXXX method. Before: int number = Integer.valueOf("42", 8); new Double("42.42").doubleValue(); After: int number = Integer.parseInt("42", 8); Double.parseDouble("42.42"); Change-Id: Ia26c247951013cae8dc345fd7cc1d8a7fdf711f3 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2021-03-05Bug 571689 - POM and product version change for 4.20 releaseI20210309-1800I20210309-0500I20210308-1800I20210308-1030I20210308-0720I20210305-0820Alexander Kurtakov1-1/+1
Change-Id: I90841f87b7e8d5b33a2d75d7e42c53612f917921 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2021-02-12[Cleanup] Redundant substring() operationLars Vogel3-4/+4
Removes the second substring() parameter if this parameter is the length of the string. It's the default value. Found during testing of Bug 569800 (new JDT cleanup for this case). Change-Id: Id3cc01ba81e2955044f199e8a3644b8ee17a01cc Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2020-12-01Bug 569318 - POM and product version change for 4.19 releaseY20201209-0750Y20201208-1200Y20201204-1200I20201210-1800I20201209-1800I20201208-2310I20201208-1800I20201208-0300I20201207-1800I20201206-1800I20201205-1800I20201204-1800I20201204-0830I20201204-0610I20201204-0340Sravan Kumar Lakkimsetti1-1/+1
Change-Id: I7b5dbb4e9c7b595150fed8e21d6db92d0ac98aa7 Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
2020-09-03Bug 566356 - POM and product version change for 4.18 releaseI20200904-0540I20200904-0210Alexander Kurtakov1-1/+1
Change-Id: Ied35e159e9e535c7d193b0594bc548fc3dbf3583 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2020-06-04Bug 563840 - POM and product version change for 4.17 releaseI20200606-1800I20200606-0940I20200606-0910I20200606-0700I20200606-0400I20200606-0050I20200605-2140I20200605-1500I20200605-1230I20200605-1200I20200605-1150I20200605-0950I20200605-0910I20200605-0720Sravan Kumar Lakkimsetti1-1/+1
Change-Id: I3a76e89178819f169a2e7eb1e4b23c3f4e65f371 Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
2020-04-11Bug 553640 - [code mining] bad char location when mixing headers&inlineI20200415-0200I20200414-1010I20200414-0630I20200413-1800I20200412-1800I20200411-1800Mickael Istria4-3/+59
Change-Id: I16dbdcafb0577346fe3494652141d33c3858b9ea Signed-off-by: Mickael Istria <mistria@redhat.com>
2020-03-06Bug 560872 - POM and product version change for 4.16 releaseY20200309-1300Y20200308-0700Y20200308-0520X20200313-0410X20200312-1900X20200312-1530X20200312-1210X20200312-0700X20200311-2150X20200311-1900X20200311-0820X20200306-1900I20200315-2240I20200315-1800I20200314-1800I20200313-1800I20200313-0810I20200312-1835I20200312-1800I20200311-1800I20200310-1800I20200310-0810I20200309-1800I20200309-0810I20200308-1800I20200307-1800I20200307-1145Mat Booth1-1/+1
Change-Id: Idc6390c2c7573e553d6b757732cdb21aec0bec9e Signed-off-by: Mat Booth <mat.booth@redhat.com>
2019-12-06Bug 553742 - POM and product version change for 4.15 releaseY20191208-2315I20191210-0230I20191209-2205I20191209-1600I20191209-1310I20191209-1130I20191209-1110Niraj Modi1-1/+1
Change-Id: Ida060a8dc6a0e22acc8d5d0665eee7b754db89cd Signed-off-by: Niraj Modi <niraj.modi@in.ibm.com>
2019-11-14Whitespace removal for test plug-ins platform.textI20191118-0600I20191117-1800I20191117-0600I20191116-1800I20191116-0600I20191115-1800I20191114-1800I20191114-0410Lars Vogel2-5/+5
Done via running the cleanup action on the code base Change-Id: I9a8d23d6d5e77fec0f845b60b99cac6bd1c2b429 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2019-10-11Move away of deprecated FontMetrics.getAverageCharWidthI20191013-1800I20191012-1800I20191011-1800Alexander Kurtakov1-3/+2
Change-Id: Ie134f4898762fcf97a8d477fffb5ec5f89690afd Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2019-09-25Bug 551438 - Fix files that have ended up with CRLF in the gitI20190929-1800I20190928-1800I20190928-0515I20190928-0205I20190928-0000I20190927-1800I20190927-1530I20190927-0255I20190927-0225I20190927-0145I20190926-1800I20190926-0625Ed Merks5-49/+49
repository Change-Id: I0c9ba3b46833125403eb890ae01cb6d60553147f Signed-off-by: Ed Merks <ed.merks@gmail.com>
2019-09-06Bug 550767 - POM and product version change for 4.14 releaseI20190910-0815I20190910-0145I20190909-1520I20190909-1425I20190909-0925Niraj Modi1-1/+1
Change-Id: I2c4bd92c6c1243366afa1cf5db4d5052794c66fa Signed-off-by: Niraj Modi <niraj.modi@in.ibm.com>
2019-06-24Bug 474156 - Run API Tools builder in the Gerrit verification buildI20190626-0720I20190625-1800I20190625-0535I20190624-1800Mickael Istria1-0/+5
Signed-off-by: Mickael Istria <mistria@redhat.com>
2019-06-14Use isEmpty() instead of length() to check if collection is emptyI20190615-1800I20190614-1800Lars Vogel2-2/+2
Change-Id: I0106dd0c2ddfa318375877d4562068d82aa9ac5f Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2019-06-07Bug 547907 - POM and product version change for 4.13 releaseNiraj Modi1-1/+1
Change-Id: I16ed9807c1390ccba626efaa09cfa80308667a26 Signed-off-by: Niraj Modi <niraj.modi@in.ibm.com>
2019-05-18Bug 547304 - [cleanup] Fix wrong line delimitersPaul Pazderski9-843/+843
This updates all Java files with wrong or mixed line delimiters to use Unix style delimiters. The change includes only whitespace formatting and no code changes. Change-Id: I970d212a3e4edb8a85c58901336551190dfd2164
2019-03-08Bug 545094 - POM and product version change for 4.12 releaseI20190311-0410I20190309-1830I20190308-1830I20190308-1525I20190308-1055I20190308-0740Niraj Modi1-1/+1
Change-Id: Ideffb628508e4505ec7b55afd5ba9f2c5fd75f3c Signed-off-by: Niraj Modi <niraj.modi@in.ibm.com>
2018-12-07Bug 541822 - POM and product version change for 4.11 releaseY20190116-2200Y20190109-2200Y20190108-0410Y20190108-0135Y20190107-0850Y20190107-0505Y20190102-2200Y20181226-2200Y20181219-2200Y20181212-2200S4_11_0_M1I20190121-1415I20190120-1800I20190119-1800I20190118-1800I20190117-2335I20190116-1800I20190115-1800I20190114-1800I20190113-1800I20190112-1800I20190111-1800I20190111-0850I20190109-1800I20190109-0655I20190108-1800I20190108-0600I20190107-2050I20190107-1800I20190107-0600I20190106-1800I20190106-0600I20190106-0150I20190105-1800I20190105-0810I20190104-1800I20190103-1800I20190102-1800I20190101-1800I20181231-1800I20181230-1800I20181229-1800I20181228-1800I20181227-1800I20181226-1800I20181225-1800I20181224-1800I20181223-1800I20181222-1800I20181221-1800I20181220-1800I20181219-1800I20181218-1800I20181218-0120I20181217-1800I20181216-1800I20181215-1800I20181215-0340I20181214-1800I20181214-0720I20181214-0105I20181213-1800I20181212-1800I20181212-0230I20181211-1800I20181211-0230I20181210-1800I20181210-0755I20181210-0535Niraj Modi1-1/+1
Change-Id: I975429ca29af362e54dee6d31c2c7373e644f397 Signed-off-by: Niraj Modi <niraj.modi@in.ibm.com>
2018-09-04Bug 538531 - POM version change for 4.10 releaseY20180905-2200I20180906-1400I20180906-0005I20180905-1305I20180905-0410Sravan Kumar Lakkimsetti1-1/+1
Change-Id: I8ea72f1e990039ec24ce2930df788e2e199a9993 Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
2018-08-21Bug 530393 - EPL 2.0 update for platform.text examplesLars Vogel9-27/+54
Update all sources files except .exsd files, Java pref files and pom files Regex used: git checkout master git reset --hard origin/master git pull find . -type f ! -name "*.exsd" ! -name "org.eclipse.jdt.ui.prefs" -exec sed -i 's/Eclipse Public License v1.0/Eclipse Public License 2.0/g' {} + find . -type f ! -name "*.exsd" ! -name "org.eclipse.jdt.ui.prefs" -exec sed -i -E 's/([[:blank:]]*[^[:blank:]])*([[:blank:]]*)http:\/\/www.eclipse.org\/legal\/epl-v10.html/\1\2https:\/\/www.eclipse.org\/legal\/epl-2.0\/\ \1\ \1\2SPDX-License-Identifier: EPL-2.0/' {} + # Get rid of the All rights reserved find . -type f ! -name "*.exsd" ! -name "org.eclipse.jdt.ui.prefs" ! -name "pom.xml" -exec sed -i -E 's/([[:blank:]]*[^[:blank:]])*([[:blank:]]*)(All rights reserved. )/\1\n\1\2/' {} + Change-Id: I93e57d7a9e65c42913376400ed455cf27b36ca6e Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2018-06-014.9 version updates for eclipse.platform.text required for EPL 2.0I20180601-0915I20180601-0900Lars Vogel2-2/+2
update Change-Id: I2347c4e9fb76d947449865ebfb35caf759458f9c Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2018-05-30Bug 535191 - POM version change for 4.9 releaseI20180531-2125I20180531-2000I20180531-1245I20180531-0910Lars Vogel1-1/+1
eclipse.platform.text Change-Id: I424ff63453ab620a5f4461d369a06798ef1264fd Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2018-02-05Bug 529115 - [CodeMining] CodeMining should support line header/contentangelozerr1-2/+2
annotation type both Change-Id: Ie10a4ae0354df26198f32a0bd3fc65a26a159cd9 Signed-off-by: angelozerr <angelo.zerr@gmail.com>
2018-01-09Bug 528418 - [CodeMining] Support for action CodeMiningI20180111-2000I20180111-0530I20180110-2000angelozerr1-0/+50
Change-Id: I79cdc0ef39e6c29235913bcc077f2743232ec86c Signed-off-by: angelozerr <angelo.zerr@gmail.com>
2018-01-08Bug 529087 - [CodeMining] Improve draw of line content annotation.I20180110-0100I20180109-2000I20180108-2000angelozerr2-13/+62
Change-Id: I4aabd08ea87b650722d3e50a77832689feb61521 Signed-off-by: angelozerr <angelo.zerr@gmail.com>
2017-12-21Bug 528851 - [CodeMining] Problem while getting bad AnnotationPainterangelozerr1-0/+2
(with JDT Editor) Change-Id: I04710e6a04d7bdcdd3a53869d3e0dacd6cbf99b6 Signed-off-by: angelozerr <angelo.zerr@gmail.com>
2017-12-20Bug 528980 - [CodeMining] CodeMining are not displayed after a scrollI20171220-2000angelozerr3-8/+9
when there are folded content below Change-Id: I03bebb5ea56aaf91f970605a8bd77d1807bafb32 Signed-off-by: angelozerr <angelo.zerr@gmail.com>
2017-12-12Bug 528254 - [Java9] Added Automatic-Module-Name HeaderI20171215-0215I20171215-0120I20171214-2000I20171214-0120I20171213-2000I20171212-2000Karsten Thoms1-0/+1
Incremented versions for Eclipse 4.8 Photon Change-Id: I49d086cba48a4b0519cda696b4ab38d66cbd8fef Signed-off-by: Karsten Thoms <karsten.thoms@itemis.de>
2017-12-11Bug 527515 - [CodeMining] Add CodeMining support in SourceViewerI20171211-2000angelozerr1-16/+7
Change-Id: Ia4ded634a4839824d5ac3c81a72a0a4734ccb194 Signed-off-by: angelozerr <angelo.zerr@gmail.com>
2017-12-11Bug 527720 - [CodeMining] Provide CodeMining support withangelozerr6-0/+406
CodeMiningManager Change-Id: I1eff5eeecdefe05598bc695a34e0f4e59fca886b Signed-off-by: angelozerr <angelo.zerr@gmail.com>
2017-11-30Bug 527675 - inline annotations support example in buildMickael Istria1-0/+23
Change-Id: I52f0593ce419dcb927a072aa052317e556324eb2 Signed-off-by: Mickael Istria <mistria@redhat.com>
2017-11-30Bug 527675 - [CodeMining] Provide inline annotations supportangelozerr10-0/+405
Add Inlined annotation demo Change-Id: I445c00ec8b8a187bdb1e63a1c4fde1e3552250f3 Signed-off-by: angelozerr <angelo.zerr@gmail.com>

    Back to the top