[jira] [Resolved] (NETBEANS-3910) FlatLaF doesn't work for HTML components

2020-07-27 Thread Jaroslav Tulach (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-3910?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jaroslav Tulach resolved NETBEANS-3910.
---
Fix Version/s: 12.1
   Resolution: Fixed

The most critical problem mitigated with 
https://github.com/apache/netbeans/commit/ab3823033a3978f834b7c72de57ac46d49fefb31

> FlatLaF doesn't work for HTML components
> 
>
> Key: NETBEANS-3910
> URL: https://issues.apache.org/jira/browse/NETBEANS-3910
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - UI
>Reporter: Jaroslav Tulach
>Assignee: Karl Tauber
>Priority: Major
> Fix For: 12.1
>
>
> While testing NetBeans 11.3 I have found out that dark FlatLaF isn't working 
> for HTML components. To reproduce:
> * start NetBeans, select Dark FlatLaF and restart
> * choose New Project/Java with Maven/Java Frontend Application
> * go through the wizard to "Choose Platforms Page"
> you'll see that the color of the font and background doesn't match the 
> surrounding L colors.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans] branch master updated: [NETBEANS-3910] Treat Flat Dark LaF as Darcula

2020-07-27 Thread jtulach
This is an automated email from the ASF dual-hosted git repository.

jtulach pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git


The following commit(s) were added to refs/heads/master by this push:
 new ab38230  [NETBEANS-3910] Treat Flat Dark LaF as Darcula
ab38230 is described below

commit ab3823033a3978f834b7c72de57ac46d49fefb31
Author: Jaroslav Tulach 
AuthorDate: Tue Jul 28 06:32:02 2020 +0200

[NETBEANS-3910] Treat Flat Dark LaF as Darcula
---
 platform/api.htmlui/src/org/netbeans/modules/htmlui/jfx/NbBrowsers.java | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/platform/api.htmlui/src/org/netbeans/modules/htmlui/jfx/NbBrowsers.java 
b/platform/api.htmlui/src/org/netbeans/modules/htmlui/jfx/NbBrowsers.java
index 6d65983..a6b561a 100644
--- a/platform/api.htmlui/src/org/netbeans/modules/htmlui/jfx/NbBrowsers.java
+++ b/platform/api.htmlui/src/org/netbeans/modules/htmlui/jfx/NbBrowsers.java
@@ -81,6 +81,7 @@ final class NbBrowsers {
 case "Windows":
 return "win";
 case "Darcula":
+case "Flat Dark":
 return "darcula";
 }
 return null;


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-html4j] branch master updated: Compile on OpenJDK8. Use OpenJFX 11 APIs. Skip tests on OpenJDK8

2020-07-27 Thread jtulach
This is an automated email from the ASF dual-hosted git repository.

jtulach pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans-html4j.git


The following commit(s) were added to refs/heads/master by this push:
 new 7018145  Compile on OpenJDK8. Use OpenJFX 11 APIs. Skip tests on 
OpenJDK8
7018145 is described below

commit 701814534404f3e53726ed60d873486789422d22
Author: Eppleton IT 
AuthorDate: Mon Jul 27 14:01:36 2020 +0200

Compile on OpenJDK8. Use OpenJFX 11 APIs. Skip tests on OpenJDK8
---
 boot-agent-test/pom.xml|   3 +
 boot-fx/pom.xml|  12 ++-
 .../netbeans/html/boot/fx/AbstractFXPresenter.java |   8 +-
 .../java/org/netbeans/html/boot/fx/FXConsole.java  |   2 +-
 boot-script/pom.xml|   1 -
 boot-truffle/pom.xml   |   1 -
 html4j-maven-plugin/pom.xml|   1 -
 json-tck/pom.xml   |   1 -
 ko-felix-test/pom.xml  |   1 +
 ko-osgi-test/pom.xml   |   1 +
 ko-ws-tyrus/pom.xml|   7 +-
 ko4j/pom.xml   |   1 +
 pom.xml| 101 ++---
 sound/pom.xml  |   1 +
 xhr4j/pom.xml  |   7 +-
 15 files changed, 77 insertions(+), 71 deletions(-)

diff --git a/boot-agent-test/pom.xml b/boot-agent-test/pom.xml
index d070c90..54c4e4a 100644
--- a/boot-agent-test/pom.xml
+++ b/boot-agent-test/pom.xml
@@ -29,6 +29,9 @@
 boot-agent-test
 jar
 Dynamic Boot Test
+
+${skipJavaFXTests}
+
 
 
 
diff --git a/boot-fx/pom.xml b/boot-fx/pom.xml
index d095f04..ecde5f7 100644
--- a/boot-fx/pom.xml
+++ b/boot-fx/pom.xml
@@ -35,6 +35,7 @@
   
 UTF-8
 net.java.html.boot.fx
+${skipJavaFXTests}
   
   
   
@@ -90,7 +91,14 @@
   test
   jar
 
+
+  webswing-app-toolkit
+  org.webswing
+  20.1.3
+  provided
+
   
-A presentation provider to show JavaFX WebView 
-when a Java/HTML based application is about to boot.
+  A presentation provider to show JavaFX WebView 
+when a Java/HTML based application is about to boot.
+  
 
diff --git 
a/boot-fx/src/main/java/org/netbeans/html/boot/fx/AbstractFXPresenter.java 
b/boot-fx/src/main/java/org/netbeans/html/boot/fx/AbstractFXPresenter.java
index 0e1737a..4811a17 100644
--- a/boot-fx/src/main/java/org/netbeans/html/boot/fx/AbstractFXPresenter.java
+++ b/boot-fx/src/main/java/org/netbeans/html/boot/fx/AbstractFXPresenter.java
@@ -233,7 +233,7 @@ Fn.KeepAlive, Fn.ToJavaScript, Fn.FromJavaScript, Executor, 
Cloneable, Fn.Ref
 org.apache.maven.plugins
 maven-compiler-plugin
-2.3.2
 
1.7
1.7
diff --git a/boot-truffle/pom.xml b/boot-truffle/pom.xml
index 8dd6589..7893f9a 100644
--- a/boot-truffle/pom.xml
+++ b/boot-truffle/pom.xml
@@ -56,7 +56,6 @@
  
 org.apache.maven.plugins
 maven-compiler-plugin
-2.3.2
 
1.7
1.7
diff --git a/html4j-maven-plugin/pom.xml b/html4j-maven-plugin/pom.xml
index 6ebc177..f689c26 100644
--- a/html4j-maven-plugin/pom.xml
+++ b/html4j-maven-plugin/pom.xml
@@ -74,7 +74,6 @@
  
 org.apache.maven.plugins
 maven-compiler-plugin
-2.3.2
 
1.7
1.7
diff --git a/json-tck/pom.xml b/json-tck/pom.xml
index 20e5612..016c9cd 100644
--- a/json-tck/pom.xml
+++ b/json-tck/pom.xml
@@ -58,7 +58,6 @@
  
 org.apache.maven.plugins
 maven-compiler-plugin
-2.3.2
 
1.8
1.8
diff --git a/ko-felix-test/pom.xml b/ko-felix-test/pom.xml
index 6f2a9cd..43b7c57 100644
--- a/ko-felix-test/pom.xml
+++ b/ko-felix-test/pom.xml
@@ -32,6 +32,7 @@
 Runs the TCK for Knockout in Felix OSGi 
Container
 
 none
+${skipJavaFXTests}
 
 
 
diff --git a/ko-osgi-test/pom.xml b/ko-osgi-test/pom.xml
index 52af266..9c0aece 100644
--- a/ko-osgi-test/pom.xml
+++ b/ko-osgi-test/pom.xml
@@ -32,6 +32,7 @@
 Runs the TCK for Knockout in Equinox OSGi 
Container
 
 none
+${skipJavaFXTests}
 
 
 
diff --git a/ko-ws-tyrus/pom.xml b/ko-ws-tyrus/pom.xml
index 9f39a7b..ca6f787 100644
--- a/ko-ws-tyrus/pom.xml
+++ b/ko-ws-tyrus/pom.xml
@@ -52,9 +52,10 @@
 
 
 
-UTF-8
-org.netbeans.html.ko-ws-tyrus
-  
+UTF-8
+org.netbeans.html.ko-ws-tyrus
+${skipJavaFXTests}
+
   
 
 
diff --git a/ko4j/pom.xml b/ko4j/pom.xml
index 893cc3a..e1b9950 100644
--- a/ko4j/pom.xml
+++ b/ko4j/pom.xml
@@ -36,6 +36,7 

[jira] [Commented] (NETBEANS-4643) Lombok annotated project shows errors in editor

2020-07-27 Thread Laszlo Kishalmi (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-4643?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17166012#comment-17166012
 ] 

Laszlo Kishalmi commented on NETBEANS-4643:
---

Could you attach a minimal project which works in 12.0 and does not work in 
12.1.

The generated sources would fix some annotation processors, though Lombok does 
not generate sources AFAIK.

> Lombok annotated project shows errors in editor
> ---
>
> Key: NETBEANS-4643
> URL: https://issues.apache.org/jira/browse/NETBEANS-4643
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Gradle
>Reporter: mkhramov
>Assignee: Laszlo Kishalmi
>Priority: Major
>
> I have a gradle project using Lombok library. Once I update my Netbeans to 
> latest version the Netbeans editor begin to show me an errors in annotated 
> classes. I use lombok to produce logger field and field Getters/Setters
> I see new Source Packages [generated] node under my Project but it empty
>  
> Git bisect points me to this commit: 
> https://github.com/apache/netbeans/commit/13bac58efb83f5dc3c6d9237a6557d0612d54ecd
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-4644) Netbeans crashes on hybernate.

2020-07-27 Thread Philip Neves (Jira)
Philip Neves created NETBEANS-4644:
--

 Summary: Netbeans crashes on hybernate. 
 Key: NETBEANS-4644
 URL: https://issues.apache.org/jira/browse/NETBEANS-4644
 Project: NetBeans
  Issue Type: Bug
  Components: ide - UI
Affects Versions: 12.0
 Environment: Mac OS Catalina, 10.15.5, MacBook Pro (Retina 15 inch 
Late 2013) 
Processor 2.3 GHZ Quad Core Intel Core I7 
Memory 16BC 1600 MHZ DDR3

Graphics NVIDIA GeForce GT 750M 2GB. 
Intel Iris Pro 1536 MB 

Reporter: Philip Neves


Whenever my computer goes into hybernate the IDE crashes.  The IDE locks up. It 
doesn't even refresh the screen and redraw the UI.  When I go into the force 
quite interface it says netbeans not responding.  And sometimes even my finder 
application on some of my screens becomes unresponsive. I have move to another 
screen to be able to get to the finder window. 

 

Sorry no logs available for this. But perhaps someone can reproduce it.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-4643) Lombok annotated project shows errors in editor

2020-07-27 Thread mkhramov (Jira)
mkhramov created NETBEANS-4643:
--

 Summary: Lombok annotated project shows errors in editor
 Key: NETBEANS-4643
 URL: https://issues.apache.org/jira/browse/NETBEANS-4643
 Project: NetBeans
  Issue Type: Bug
  Components: projects - Gradle
Reporter: mkhramov
Assignee: Laszlo Kishalmi


I have a gradle project using Lombok library. Once I update my Netbeans to 
latest version the Netbeans editor begin to show me an errors in annotated 
classes. I use lombok to produce logger field and field Getters/Setters

I see new Source Packages [generated] node under my Project but it empty

 

Git bisect points me to this commit: 
https://github.com/apache/netbeans/commit/13bac58efb83f5dc3c6d9237a6557d0612d54ecd

 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-1874) Setting some properties of font-colors in options works only till close of program

2020-07-27 Thread Marek Gremblewski (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-1874?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marek Gremblewski updated NETBEANS-1874:

Fix Version/s: (was: 12.0)
   12.0.1
   12.1
Affects Version/s: 12.0

> Setting some properties of font-colors in options works only till close of 
> program
> --
>
> Key: NETBEANS-1874
> URL: https://issues.apache.org/jira/browse/NETBEANS-1874
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Options
>Affects Versions: 8.2, 9.0, 10.0, 11.0, 12.0, 11.1, 11.2, 11.3
> Environment: Windows 7, 10
>Reporter: Marek Gremblewski
>Priority: Trivial
> Fix For: 12.1, 12.0.1
>
> Attachments: netbeans.png
>
>
> Properties `Identifiers` and `numbers` in Fonts & Colors in Options are not 
> inherited and even not saved in exported config and is only visible until 
> application close.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4635) Add JakartaEE Platform module

2020-07-27 Thread Jose (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4635?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jose updated NETBEANS-4635:
---
Fix Version/s: (was: Next)
   12.1
Affects Version/s: (was: 12.1)
   12.0

> Add JakartaEE Platform module
> -
>
> Key: NETBEANS-4635
> URL: https://issues.apache.org/jira/browse/NETBEANS-4635
> Project: NetBeans
>  Issue Type: Improvement
>  Components: projects - Libraries
>Affects Versions: 12.0
>Reporter: Jose
>Assignee: Jose
>Priority: Minor
> Fix For: 12.1
>
>  Time Spent: 10m
>
> This is an improvement to the 
> [PR-2023|https://github.com/apache/netbeans/pull/2023] from Josh Juneau. I 
> used the _*j2ee.platform*_ module as a reference.
> Notes:
>  - Add module 'jakartaee.platform' that contains the Javadoc
>  - Fix JakartaEE integration with the NetBeans library (Classpath & Javadoc)
>  from both jakartaee-api & jakartaee-web-api libraries.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-4642) Sometimes I can't type anymore

2020-07-27 Thread Joe Boyle (Jira)
Joe Boyle created NETBEANS-4642:
---

 Summary: Sometimes I can't type anymore 
 Key: NETBEANS-4642
 URL: https://issues.apache.org/jira/browse/NETBEANS-4642
 Project: NetBeans
  Issue Type: Bug
 Environment: mac os 10.15.6
Reporter: Joe Boyle


Some files I go into and I start editing and I can't type anymore. Seems to 
happen near the end of a curly brace in php or js or the end of a comment in 
html. Might just be conincidence but its happend enough times for me to notice 
that. I included the two logs in the docs text section.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Comment Edited] (NETBEANS-4504) Double click in tabs bar vs. fast click to close multiple bars

2020-07-27 Thread Martin Stipek (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-4504?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17165779#comment-17165779
 ] 

Martin Stipek edited comment on NETBEANS-4504 at 7/27/20, 3:17 PM:
---

Thank you for your tip. But files in the documents window, are not divided or 
marked by projects. This window cannot be used to efficiently and quickly close 
selected open files, because orientation in it takes a lot of time.


was (Author: martinst):
Thank you for your tip. But files in the documents window, are not divided or 
marked by projects, the files in which the change is made are not highlighted 
(they are not committed). This window cannot be used to efficiently and quickly 
close selected open files, because orientation in it takes a lot of time.

> Double click in tabs bar vs. fast click to close multiple bars
> --
>
> Key: NETBEANS-4504
> URL: https://issues.apache.org/jira/browse/NETBEANS-4504
> Project: NetBeans
>  Issue Type: Improvement
>Affects Versions: 12.0
> Environment: windows 10 64bit
>Reporter: Martin Stipek
>Priority: Trivial
> Fix For: 11.3
>
>
> Double click in tabs bar cause resize editor window, but how I can close 
> multiple tabs by closing cross when that require fast clicks?
> This UI bug is in version 11.2 and 12.0. Version 11.3 is ok.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Comment Edited] (NETBEANS-4504) Double click in tabs bar vs. fast click to close multiple bars

2020-07-27 Thread Martin Stipek (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-4504?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17165779#comment-17165779
 ] 

Martin Stipek edited comment on NETBEANS-4504 at 7/27/20, 3:16 PM:
---

Thank you for your tip. But files in the documents window, are not divided or 
marked by projects, the files in which the change is made are not highlighted 
(they are not committed). This window cannot be used to efficiently and quickly 
close selected open files, because orientation in it takes a lot of time.


was (Author: martinst):
Thank you for your tip. In the documents window, but the files are not divided 
or marked by projects, the files in which the change is made are not 
highlighted (they are not committed). This window cannot be used to efficiently 
and quickly close selected open files, because orientation in it takes a lot of 
time.

> Double click in tabs bar vs. fast click to close multiple bars
> --
>
> Key: NETBEANS-4504
> URL: https://issues.apache.org/jira/browse/NETBEANS-4504
> Project: NetBeans
>  Issue Type: Improvement
>Affects Versions: 12.0
> Environment: windows 10 64bit
>Reporter: Martin Stipek
>Priority: Trivial
> Fix For: 11.3
>
>
> Double click in tabs bar cause resize editor window, but how I can close 
> multiple tabs by closing cross when that require fast clicks?
> This UI bug is in version 11.2 and 12.0. Version 11.3 is ok.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-4504) Double click in tabs bar vs. fast click to close multiple bars

2020-07-27 Thread Martin Stipek (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-4504?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17165779#comment-17165779
 ] 

Martin Stipek commented on NETBEANS-4504:
-

Thank you for your tip. In the documents window, but the files are not divided 
or marked by projects, the files in which the change is made are not 
highlighted (they are not committed). This window cannot be used to efficiently 
and quickly close selected open files, because orientation in it takes a lot of 
time.

> Double click in tabs bar vs. fast click to close multiple bars
> --
>
> Key: NETBEANS-4504
> URL: https://issues.apache.org/jira/browse/NETBEANS-4504
> Project: NetBeans
>  Issue Type: Improvement
>Affects Versions: 12.0
> Environment: windows 10 64bit
>Reporter: Martin Stipek
>Priority: Trivial
> Fix For: 11.3
>
>
> Double click in tabs bar cause resize editor window, but how I can close 
> multiple tabs by closing cross when that require fast clicks?
> This UI bug is in version 11.2 and 12.0. Version 11.3 is ok.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-4641) Code auto formatting for try-with-resources statements

2020-07-27 Thread Bernd Michaely (Jira)
Bernd Michaely created NETBEANS-4641:


 Summary: Code auto formatting for try-with-resources statements
 Key: NETBEANS-4641
 URL: https://issues.apache.org/jira/browse/NETBEANS-4641
 Project: NetBeans
  Issue Type: Bug
  Components: editor - Formatting  Indentation, java - Editor
Affects Versions: 12.0
 Environment: Arch Linux, AdoptOpenJDK 14.0.1, official NB 12.0 bin 
download
Reporter: Bernd Michaely


Since NB 12.0, auto formatting for try-with-resources statements adds an 
additional space after the opening parenthesis after the try keyword. To 
reproduce the problem, choose:

Menu »Tools« → Options → Editor → Formatting →

Language »Java« and Category »Spaces« →

Tree item »Within Parentheses« → Checkbox "try"

If checked, two spaces are added after the opening parenthesis after try, if 
unchecked, one space is added, instead of one and zero.

(Note, that there is also no example available in the preview. There is for 
try-catch, but not for try-with-resources.)

 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-2137) Better UI representation of SourceSets with Multiple Source Root Dirs.

2020-07-27 Thread Michael D Billman (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2137?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17165658#comment-17165658
 ] 

Michael D Billman commented on NETBEANS-2137:
-

This would be a nice feature to have.  Do you think this is something that will 
be targeted in the near future?

> Better UI representation of SourceSets with Multiple Source Root Dirs.
> --
>
> Key: NETBEANS-2137
> URL: https://issues.apache.org/jira/browse/NETBEANS-2137
> Project: NetBeans
>  Issue Type: Improvement
>  Components: projects - Gradle
>Reporter: Laszlo Kishalmi
>Assignee: Laszlo Kishalmi
>Priority: Major
>
> See the following Gradle Sample:
> sourceSets {
>   main {
>     java {
>   srcDir 'JavaV2/Src'
>   srcDir 'JavaV2/API/Src'
>   srcDir 'JavaV2/Fedex/Src'
>   srcDir 'JavaV2/Library/Src'
>   srcDir 'JavaV2/Products/Src'
>   srcDir 'JavaV2/Protocol/Src'
>   srcDir 'JavaV2/Qryptonite/Src'
>   srcDir 'JavaV2/Security/Src'
>   srcDir 'JavaV2/Shipping/Src'
>   srcDir 'JavaV2/Spring/Src'
>   srcDir 'JavaV2/Ui/Src'
>   exclude '**/doc-files/**'
>   exclude 'makefile'
>   exclude '**/makefile'
>     }



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-4640) Unexpected exception occourred opening a Java GUI Project

2020-07-27 Thread Mike Chiarappa (Jira)
Mike Chiarappa created NETBEANS-4640:


 Summary: Unexpected exception occourred opening a Java GUI Project
 Key: NETBEANS-4640
 URL: https://issues.apache.org/jira/browse/NETBEANS-4640
 Project: NetBeans
  Issue Type: Bug
Reporter: Mike Chiarappa


At startup, opening a Java Swing projet I got an unexpected Exception.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Closed] (NETBEANS-3616) Support of debug option and enable preview-hint in Single Source File

2020-07-27 Thread Arunava Sinha (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-3616?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Arunava Sinha closed NETBEANS-3616.
---

> Support of debug option and enable preview-hint in Single Source File
> -
>
> Key: NETBEANS-3616
> URL: https://issues.apache.org/jira/browse/NETBEANS-3616
> Project: NetBeans
>  Issue Type: Improvement
>  Components: java - Editor
>Affects Versions: 11.1
>Reporter: Arunava Sinha
>Assignee: Arunava Sinha
>Priority: Major
>  Labels: pull-request-available
> Fix For: 11.3
>
>  Time Spent: 2h 20m
>  Remaining Estimate: 0h
>
> Need to provide below two features for single source Java file .
> 1. In ant and maven java project , there is a specific hint for enabling 
> preview feature.
> Same is missing in Single source file.
>  
> 2. Currently NB-11.2 supports running of single source file , but debug 
> action is missing
> [https://openjdk.java.net/jeps/330.]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Closed] (NETBEANS-3793) Debug of single Source Java File not working in windows

2020-07-27 Thread Arunava Sinha (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-3793?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Arunava Sinha closed NETBEANS-3793.
---

> Debug of single Source Java File not working in windows
> ---
>
> Key: NETBEANS-3793
> URL: https://issues.apache.org/jira/browse/NETBEANS-3793
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: Next
>Reporter: Arunava Sinha
>Assignee: Arunava Sinha
>Priority: Major
>  Labels: pull-request-available
> Fix For: 11.3
>
>  Time Spent: 1h
>  Remaining Estimate: 0h
>
> Debug of single Source Java File not working in windows
> The issue in related to below bug:
> https://issues.apache.org/jira/browse/NETBEANS-3616



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4623) NullPointerException in BasicTextUI.getPreferredSize

2020-07-27 Thread Czukowski (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4623?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Czukowski updated NETBEANS-4623:

Description: 
Was testing 12.1 beta1 today, during my normal activity I noticed an error icon 
in the status bar at the bottom. The IDE was responsive and everything 
seemingly working so far.

Upon clicking the icon, where the Notification panel would appear, only a blank 
space appears instead of it. If I try to open a file from Project or Files 
panels, similar things happen, editor tabs do open, but they are blank and gray.

Other IDE dialogs (that are not panels) can still be open without issues.

The only way I've found to get rid of the issue is to restart the IDE. It did 
happen a few times after that too, it wasn't clear which action has triggered 
the issue.

 !image-2020-07-23-14-53-04-101.png! 

See the attachment for the IDE log, this error can be seen repeated there 
multiple times.

  was:
Was testing 12.1 beta1 today, during my normal activity I noticed an error icon 
in the status bar at the bottom. The IDE was responsive and everything 
seemingly working so far.

Upon clicking the icon, where the Notification panel would appear, only a blank 
space appears instead of it. If I try to open a file from Project or Files 
panels, similar things happen, editor tabs do open, but they are blank and gray.

Other IDE dialogs can still be open without issues.

 !image-2020-07-23-14-53-04-101.png! 

See the attachment for the IDE log, this error can be seen repeated there 
multiple times.


> NullPointerException in BasicTextUI.getPreferredSize
> 
>
> Key: NETBEANS-4623
> URL: https://issues.apache.org/jira/browse/NETBEANS-4623
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.1
> Environment: Product Version: Apache NetBeans IDE 12.1-beta1
> Java: 12.0.2; Java HotSpot(TM) 64-Bit Server VM 12.0.2+10
> Runtime: Java(TM) SE Runtime Environment 12.0.2+10
> System: Windows 10 version 10.0 running on amd64
>Reporter: Czukowski
>Priority: Major
> Attachments: idelog-2.txt, idelog-3.txt, 
> image-2020-07-23-14-53-04-101.png
>
>
> Was testing 12.1 beta1 today, during my normal activity I noticed an error 
> icon in the status bar at the bottom. The IDE was responsive and everything 
> seemingly working so far.
> Upon clicking the icon, where the Notification panel would appear, only a 
> blank space appears instead of it. If I try to open a file from Project or 
> Files panels, similar things happen, editor tabs do open, but they are blank 
> and gray.
> Other IDE dialogs (that are not panels) can still be open without issues.
> The only way I've found to get rid of the issue is to restart the IDE. It did 
> happen a few times after that too, it wasn't clear which action has triggered 
> the issue.
>  !image-2020-07-23-14-53-04-101.png! 
> See the attachment for the IDE log, this error can be seen repeated there 
> multiple times.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4598) Indentation error for the 2nd last closing bracket in JavaScript.

2020-07-27 Thread Nghia Nguyen (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4598?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Nghia Nguyen updated NETBEANS-4598:
---
Description: 
The indentation engine seems to not be placing the 2nd last bracket in the 
right place.  Even though I use the Format feature in the IDE, the indentation 
is not correct.  If we add for example a comment // at the end of the 2nd last 
closing bracket of a function, it will indent correctly.

 

// Indentation problem:

{{function ABC( \{param1, param2}) {}}
 {{    for (var i = 0; i < 1; i++) {}}

 

{{} // This bracket should be be pushed in to match the for.}}
 {{}}}

 

{{// The following code is indenting correctly:}}

{{class Test {}}
 {{    static DEF( \{param1, param2}) {}}

{{    if (true) {}}

{{    } // By putting a comment here, it allowed the IDE to indent the 
block correctly.  If we remove it, the indentation will fail.}}
 {{}}}

 

 

!image-2020-07-17-14-09-25-087.png!
  

  was:
The indentation engine seems to not be placing the 2nd last bracket in the 
right place.  Even though I use the Format feature in the IDE, the indentation 
is not correct.  If we add for example a comment // at the end of the 2nd last 
closing bracket of a function, it will indent correctly.

 

// Indentation problem

{{function ABC( \{param1, param2}) {}}
 {{    for (var i = 0; i < 1; i++) {}}

 

{{} // This bracket should be be pushed in to match the for.}}
 {{}}}

 

{{// This code is the correct indentation.}}

{{class Test {}}
 {{    static DEF( \{param1, param2}) {}}

{{    if (true) {}}

{{    } // By putting a comment here, it allowed the IDE to indent the 
block correctly.  If we remove it, the indentation will fail.}}
 {{}}}

 

 

!image-2020-07-17-14-09-25-087.png!
  


> Indentation error for the 2nd last closing bracket in JavaScript.
> -
>
> Key: NETBEANS-4598
> URL: https://issues.apache.org/jira/browse/NETBEANS-4598
> Project: NetBeans
>  Issue Type: Bug
>  Components: javascript - Formatting  Indentation
>Affects Versions: 12.0
> Environment: Windows 10
>Reporter: Nghia Nguyen
>Priority: Minor
>  Labels: Indentation
> Attachments: image-2020-07-17-13-56-16-941.png, 
> image-2020-07-17-14-09-25-087.png
>
>
> The indentation engine seems to not be placing the 2nd last bracket in the 
> right place.  Even though I use the Format feature in the IDE, the 
> indentation is not correct.  If we add for example a comment // at the end of 
> the 2nd last closing bracket of a function, it will indent correctly.
>  
> // Indentation problem:
> {{function ABC( \{param1, param2}) {}}
>  {{    for (var i = 0; i < 1; i++) {}}
>  
> {{} // This bracket should be be pushed in to match the for.}}
>  {{}}}
>  
> {{// The following code is indenting correctly:}}
> {{class Test {}}
>  {{    static DEF( \{param1, param2}) {}}
> {{    if (true) {}}
> {{    } // By putting a comment here, it allowed the IDE to indent the 
> block correctly.  If we remove it, the indentation will fail.}}
>  {{}}}
>  
>  
> !image-2020-07-17-14-09-25-087.png!
>   



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4598) Indentation error for the 2nd last closing bracket in JavaScript.

2020-07-27 Thread Nghia Nguyen (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4598?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Nghia Nguyen updated NETBEANS-4598:
---
Description: 
The indentation engine seems to not be placing the 2nd last bracket in the 
right place.  Even though I use the Format feature in the IDE, the indentation 
is not correct.  If we add for example a comment // at the end of the 2nd last 
closing bracket of a function, it will indent correctly.

 

// Indentation problem

{{function ABC( \{param1, param2}) {}}
{{    for (var i = 0; i < 1; i++) {}}

 

{{} // This bracket should be be pushed in to match the for.}}
{{}}}

 

{{// This code is the correct indentation.}}

{{class Test {}}
{{    static DEF( \{param1, param2}) {}}

{{    if (true) {}}

{{    } // By putting a comment here, it allowed the IDE to indent the 
block correctly.  If we remove it, the indentation will fail.}}
{{ }}}
{{}}}

 

 

!image-2020-07-17-14-09-25-087.png!
  

  was:
The indentation engine seems to not be placing the 2nd last bracket in the 
right place.  Even though I use the Format feature in the IDE, the indentation 
is not correct.  If we add for example a comment // at the end of the 2nd last 
closing bracket of a function, it will indent correctly.

 

!image-2020-07-17-14-09-25-087.png!
 


> Indentation error for the 2nd last closing bracket in JavaScript.
> -
>
> Key: NETBEANS-4598
> URL: https://issues.apache.org/jira/browse/NETBEANS-4598
> Project: NetBeans
>  Issue Type: Bug
>  Components: javascript - Formatting  Indentation
>Affects Versions: 12.0
> Environment: Windows 10
>Reporter: Nghia Nguyen
>Priority: Minor
>  Labels: Indentation
> Attachments: image-2020-07-17-13-56-16-941.png, 
> image-2020-07-17-14-09-25-087.png
>
>
> The indentation engine seems to not be placing the 2nd last bracket in the 
> right place.  Even though I use the Format feature in the IDE, the 
> indentation is not correct.  If we add for example a comment // at the end of 
> the 2nd last closing bracket of a function, it will indent correctly.
>  
> // Indentation problem
> {{function ABC( \{param1, param2}) {}}
> {{    for (var i = 0; i < 1; i++) {}}
>  
> {{} // This bracket should be be pushed in to match the for.}}
> {{}}}
>  
> {{// This code is the correct indentation.}}
> {{class Test {}}
> {{    static DEF( \{param1, param2}) {}}
> {{    if (true) {}}
> {{    } // By putting a comment here, it allowed the IDE to indent the 
> block correctly.  If we remove it, the indentation will fail.}}
> {{ }}}
> {{}}}
>  
>  
> !image-2020-07-17-14-09-25-087.png!
>   



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4598) Indentation error for the 2nd last closing bracket in JavaScript.

2020-07-27 Thread Nghia Nguyen (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4598?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Nghia Nguyen updated NETBEANS-4598:
---
Description: 
The indentation engine seems to not be placing the 2nd last bracket in the 
right place.  Even though I use the Format feature in the IDE, the indentation 
is not correct.  If we add for example a comment // at the end of the 2nd last 
closing bracket of a function, it will indent correctly.

 

// Indentation problem

{{function ABC( \{param1, param2}) {}}
 {{    for (var i = 0; i < 1; i++) {}}

 

{{} // This bracket should be be pushed in to match the for.}}
 {{}}}

 

{{// This code is the correct indentation.}}

{{class Test {}}
 {{    static DEF( \{param1, param2}) {}}

{{    if (true) {}}

{{    } // By putting a comment here, it allowed the IDE to indent the 
block correctly.  If we remove it, the indentation will fail.}}
 {{}}}

 

 

!image-2020-07-17-14-09-25-087.png!
  

  was:
The indentation engine seems to not be placing the 2nd last bracket in the 
right place.  Even though I use the Format feature in the IDE, the indentation 
is not correct.  If we add for example a comment // at the end of the 2nd last 
closing bracket of a function, it will indent correctly.

 

// Indentation problem

{{function ABC( \{param1, param2}) {}}
{{    for (var i = 0; i < 1; i++) {}}

 

{{} // This bracket should be be pushed in to match the for.}}
{{}}}

 

{{// This code is the correct indentation.}}

{{class Test {}}
{{    static DEF( \{param1, param2}) {}}

{{    if (true) {}}

{{    } // By putting a comment here, it allowed the IDE to indent the 
block correctly.  If we remove it, the indentation will fail.}}
{{ }}}
{{}}}

 

 

!image-2020-07-17-14-09-25-087.png!
  


> Indentation error for the 2nd last closing bracket in JavaScript.
> -
>
> Key: NETBEANS-4598
> URL: https://issues.apache.org/jira/browse/NETBEANS-4598
> Project: NetBeans
>  Issue Type: Bug
>  Components: javascript - Formatting  Indentation
>Affects Versions: 12.0
> Environment: Windows 10
>Reporter: Nghia Nguyen
>Priority: Minor
>  Labels: Indentation
> Attachments: image-2020-07-17-13-56-16-941.png, 
> image-2020-07-17-14-09-25-087.png
>
>
> The indentation engine seems to not be placing the 2nd last bracket in the 
> right place.  Even though I use the Format feature in the IDE, the 
> indentation is not correct.  If we add for example a comment // at the end of 
> the 2nd last closing bracket of a function, it will indent correctly.
>  
> // Indentation problem
> {{function ABC( \{param1, param2}) {}}
>  {{    for (var i = 0; i < 1; i++) {}}
>  
> {{} // This bracket should be be pushed in to match the for.}}
>  {{}}}
>  
> {{// This code is the correct indentation.}}
> {{class Test {}}
>  {{    static DEF( \{param1, param2}) {}}
> {{    if (true) {}}
> {{    } // By putting a comment here, it allowed the IDE to indent the 
> block correctly.  If we remove it, the indentation will fail.}}
>  {{}}}
>  
>  
> !image-2020-07-17-14-09-25-087.png!
>   



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists