[jira] [Updated] (NETBEANS-2955) Menu font is ways too big on a HiDPI monitor (Linux)

2020-02-25 Thread Eirik Bakke (Jira)


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

Eirik Bakke updated NETBEANS-2955:
--
Summary: Menu font is ways too big on a HiDPI monitor (Linux)  (was: Menu 
font is ways too big on a HiDPI monitor)

> Menu font is ways too big on a HiDPI monitor (Linux)
> 
>
> Key: NETBEANS-2955
> URL: https://issues.apache.org/jira/browse/NETBEANS-2955
> Project: NetBeans
>  Issue Type: Bug
> Environment: 3840x2160 monitor, Ubuntu 18.04, Unity-desktop, "Scale 
> for menu and title bars" is set to 1.88
>Reporter: John Walker
>Priority: Major
>  Labels: HiDPI
> Attachments: Screenshot from 2019-08-05 21-33-18.png, Screenshot from 
> 2019-08-05 21-34-47.png, Screenshot from 2019-08-05 21-36-49.png
>
>
> Hi There,
> My setup is: 3840x2160 monitor, Ubuntu 18.04, Unity-desktop, "Scale for menu 
> and title bars" is set to 1.88. 
> The netbeans font size of menus, Project Explorer etc is enormously huge.
> This unexpected growth of size happens when I move the scaling ratio from 
> 1.38 to 1.5. 
> I have already tried everything I was able to find on the topic, only 
> switching from GTK+ worked. Please advice on how I can fix 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] [Resolved] (NETBEANS-1583) Support MultiResolutionImage loading from ImageUtilities

2020-02-25 Thread Eirik Bakke (Jira)


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

Eirik Bakke resolved NETBEANS-1583.
---
Resolution: Won't Fix

See previous comment--closing as won't fix, since SVG loading now replaces this 
functionality.

> Support MultiResolutionImage loading from ImageUtilities 
> -
>
> Key: NETBEANS-1583
> URL: https://issues.apache.org/jira/browse/NETBEANS-1583
> Project: NetBeans
>  Issue Type: Improvement
>  Components: platform - Other
>Affects Versions: 10.0
> Environment: Windows, Linux, and MacOS
>Reporter: Eirik Bakke
>Priority: Minor
>  Labels: HiDPI
>
> To look good on HiDPI/Retina displays, the NetBeans IDE, and NetBeans 
> Platform (RCP) applications, will eventually need to provide high-resolution 
> versions of various image asset (typically icons). In Swing, multi-resolution 
> image assets are supported via the 
> [MultiResolutionImage|https://docs.oracle.com/javase/10/docs/api/java/awt/image/MultiResolutionImage.html]
>  class; such images are automatically loaded by methods such as 
> Toolkit.getImage based on a standard naming convention. For instance, on 
> MacOS, Toolkit.getImage("myicon.png") will also load the file "myi...@2x.png" 
> if present, returning a MultiResolutionImage (implemented in 
> [JDK-8011059|https://bugs.openjdk.java.net/browse/JDK-8011059]). NetBeans' 
> ImageUtilities.loadImage and friends should do the same.
> The same naming convention for multi-resolution image assets should be used 
> as in the JDK. See Philip Race's comment on 
> [JDK-8151787|https://bugs.openjdk.java.net/browse/JDK-8151787] :
> {quote}The proposed name convention for splash screens *and* other multi-res 
> images is @125pct @150pct @200pct @2x @250pct @300pct @3x 
> ie @2x and @3x are supported as synonyms for @200pct and @300pct respectively 
> and also because we already supported @2x on retina Mac.
> {quote}
>  
> On the naming convention, see also 
> [JDK-8090575|https://bugs.openjdk.java.net/browse/JDK-8090575]. Also make 
> sure to retain the ability to add a "_dark" suffix for dark LAFs.
> As far as I know, only MacOS currently supports the automatic loading of such 
> assets via Toolkit.getImage, but both Windows and MacOS (and Linux?) support 
> the underlying MultiResolutionImage class. So it's already possible to 
> implement this on the latest JDK. Note, however, that we should probably wait 
> for [JDK-8212226|https://bugs.openjdk.java.net/browse/JDK-8212226] to be 
> fixed before enabling this on Windows.
> As part of this patch, other ImageUtilities methods such as 
> createDisabledIcon, createDisabledImage, and mergeImages should also be 
> updated to support both MultiResolutionImage and the new 
> org.openide.util.VectorIcon class (introduced at 
> https://github.com/apache/incubator-netbeans/pull/859/files ). Emilian Bold 
> has done some work on this in the past; see 
> https://github.com/emilianbold/nextbeans/commit/0f99dba0c1b3e8e0bc4e7cec407b53d30e85ead1
>  . Eirik Bakke also has a [Pull 
> Request|https://github.com/apache/incubator-netbeans/pull/998] for 
> createDisabledIcon in particular, which works with the VectorIcon class and 
> any other Icon instance.
> Last, note that there are two ways to create icons that look good on HiDPI 
> displays: either by using MultiResolutionImage, or by hand-painting vector 
> graphics in a custom implementation of the Icon class. This issue deals with 
> the MultiResolutionImage approach; the vector painting approach is supported 
> via the existing helper class org.openide.util.VectorIcon. Both approaches 
> are valid and should be supported by the NetBeans Platform. (Update on 
> 2019-05-27: There's a third approach, which is to supply each icon as an SVG 
> file. That one is probably the better approach. See 
> https://issues.apache.org/jira/browse/NETBEANS-2604 .)



--
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] [Resolved] (NETBEANS-3785) Make memory gauge look better, especially on HiDPI displays

2020-02-25 Thread Eirik Bakke (Jira)


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

Eirik Bakke resolved NETBEANS-3785.
---
Fix Version/s: 11.3
   Resolution: Fixed

PR was merged; marking issue as resolved. For additional cosmetic improvements, 
create a new issue.

> Make memory gauge look better, especially on HiDPI displays
> ---
>
> Key: NETBEANS-3785
> URL: https://issues.apache.org/jira/browse/NETBEANS-3785
> Project: NetBeans
>  Issue Type: Improvement
>  Components: platform - Other
>Affects Versions: 11.2
> Environment: Windows, MacOS, and probably Linux, especially on 
> HiDPI/retina displays
>Reporter: Eirik Bakke
>Priority: Minor
>  Labels: HiDPI, pull-request-available
> Fix For: 11.3
>
> Attachments: gauge.jpg
>
>  Time Spent: 4h
>  Remaining Estimate: 0h
>
> Scott Palmer writes: "Does anyone else see really ugly text in the memory 
> usage widget on the toolbar?  This has been an issue for a while and I can’t 
> recall if I have reported it or it is already a known issue.  It seems like 
> something that shouldn’t be hard to address.  The text showing heap used vs 
> available heap is rendered in such a way that the letters are very puffy and 
> jagged.  Almost like any anti-aliasing that would be blending the edges has 
> the alpha channel interpreted as a binary 0% or 100% opacity.  I’ve attached 
> an image, not sure if it will are it through. I’m testing NB 11.3-beta 2 with 
> JDK 13.0.2 on macOS 10.15.3 (beta)"
> Eirik Bakke confirms that this has been an issue for a long time. In 
> particular, the memory gauge should be updated to look good on HiDPI/Retina 
> displays.



--
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] [Resolved] (NETBEANS-3593) Make web browser icon in the toolbar take advantage of improved HiDPI scaling

2020-02-25 Thread Eirik Bakke (Jira)


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

Eirik Bakke resolved NETBEANS-3593.
---
Fix Version/s: 11.3
   Resolution: Fixed

PR was merged; closing.

> Make web browser icon in the toolbar take advantage of improved HiDPI scaling
> -
>
> Key: NETBEANS-3593
> URL: https://issues.apache.org/jira/browse/NETBEANS-3593
> Project: NetBeans
>  Issue Type: Improvement
>Affects Versions: 11.1
>Reporter: Eirik Bakke
>Priority: Minor
>  Labels: HiDPI, pull-request-available
> Fix For: 11.3
>
> Attachments: browsericon.png
>
>  Time Spent: 40m
>  Remaining Estimate: 0h
>
> This PR ensures that the HiDPI icon scaling improvements made in 
> NETBEANS-2614 applies to the browser icon in the toolbar. (Created a separate 
> PR for this one because it requires one API change to expose the 
> DropDownButton icon.)



--
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-2278) FolderName last character truncating

2020-02-25 Thread Eirik Bakke (Jira)


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

Eirik Bakke commented on NETBEANS-2278:
---

Possibly caused by https://bugs.openjdk.java.net/browse/JDK-8213535 . Not sure.

The Projects pane component is a TreeView, which extends from JTree.

> FolderName last character truncating
> 
>
> Key: NETBEANS-2278
> URL: https://issues.apache.org/jira/browse/NETBEANS-2278
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 9.0, 10.0, 11.0
> Environment: windows
>Reporter: Simerdeep Arora
>Priority: Critical
>  Labels: HiDPI
> Attachments: image-2019-03-19-16-57-45-526.png
>
>
> The last character of all of my folders, with long names, is truncating.
> See the screenshot.
>  
> The issue is in version 9 and 10 and 11..I have not tested in previous 
> versions.
>  
> See the folder name is abc12345678910  but 0 is truncating.
>  
> From CosmicClasses   s is truncating
>  
> !image-2019-03-19-16-57-45-526.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] [Commented] (NETBEANS-2183) CDNJS access no longer works

2020-02-25 Thread Mark Eggers (Jira)


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

Mark Eggers commented on NETBEANS-2183:
---

I did a more thorough examination today.

 

I received update indications when I opened a project. I was able to update the 
libraries (and they downloaded properly). I was able to add new libraries to a 
project (and they downloaded properly).

 

I did this after removing the following from netbeans_default_options:

-J-Dnetbeans.cdnjs.searchurl=[https://api.cdnjs.com/libraries?fields=description,homepage,assets=]

 

Is there any other functionality that needs looking at for this PR?

> CDNJS access no longer works
> 
>
> Key: NETBEANS-2183
> URL: https://issues.apache.org/jira/browse/NETBEANS-2183
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 8.2, 10.0, 11.0
> Environment: Windows 10 Professional 64 bit
> OpenJDK 11.0.2
> NetBeans 10.0 - latest updates
>Reporter: Mark Eggers
>Assignee: Matthias Bläsing
>Priority: Major
>  Labels: pull-request-available
> Attachments: cdnjs-search.png, cdnjs-update.png, 
> messages-with-additional-properties.log, messages.log, messages.log
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> # Right-mouse button on a project and select properties
>  # Select CDNJS under Javascript libraries
>  # The list of libraries comes up
>  # Expect either a green checkbox or the latest version in the far right 
> column
>  # Question marks are there instead
> Also, when searching for a new library via CDNJS, a "Search Failed :(" 
> message is displayed.
> The trace in the logs:
> INFO [org.netbeans.modules.javascript.cdnjs.LibraryProvider$SearchTask]
> Unexpected token END OF FILE at position 0.
>  at org.json.simple.parser.JSONParser.parse(JSONParser.java:257)
>  at org.json.simple.parser.JSONParser.parse(JSONParser.java:81)
>  at org.json.simple.parser.JSONParser.parse(JSONParser.java:75)
> [catch] at 
> org.netbeans.modules.javascript.cdnjs.LibraryProvider$SearchTask.parse(LibraryProvider.java:303)
>  at 
> org.netbeans.modules.javascript.cdnjs.LibraryProvider$SearchTask.run(LibraryProvider.java:260)
>  at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)
>  at 
> org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)
>  at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)
>  at 
> org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)
> INFO [null]: Last record repeated 9 more times.
> Note that this also fails on an old NetBeans 8.2 installation running on JDK 
> 8. I suspect that the remote request is failing.
>  



--
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-3845) CLONE - Create a Location for Standard Distribution AUC

2020-02-25 Thread Eric Barboni (Jira)


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

Eric Barboni updated NETBEANS-3845:
---
Description: Update the URL (eg. 
[http://netbeans-vm.apache.org/uc/11.3/|http://netbeans-vm.apache.org/uc/11.3/] 
) to contain catalog.xml and redirect to mirrors for release distribution.  
(was: Update the URL (eg. 
[http://netbeans-vm.apache.org/uc/11.0/|http://netbeans-vm.apache.org/uc/10.0/] 
) to contain catalog.xml and redirect to mirrors for release distribution.)

> CLONE - Create a Location for Standard Distribution AUC
> ---
>
> Key: NETBEANS-3845
> URL: https://issues.apache.org/jira/browse/NETBEANS-3845
> Project: NetBeans
>  Issue Type: Sub-task
>Reporter: Neil C Smith
>Priority: Major
>
> Update the URL (eg. 
> [http://netbeans-vm.apache.org/uc/11.3/|http://netbeans-vm.apache.org/uc/11.3/]
>  ) to contain catalog.xml and redirect to mirrors for release distribution.



--
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] [Resolved] (NETBEANS-3845) CLONE - Create a Location for Standard Distribution AUC

2020-02-25 Thread Eric Barboni (Jira)


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

Eric Barboni resolved NETBEANS-3845.

Resolution: Fixed

> CLONE - Create a Location for Standard Distribution AUC
> ---
>
> Key: NETBEANS-3845
> URL: https://issues.apache.org/jira/browse/NETBEANS-3845
> Project: NetBeans
>  Issue Type: Sub-task
>Reporter: Neil C Smith
>Priority: Major
>
> Update the URL (eg. 
> [http://netbeans-vm.apache.org/uc/11.3/|http://netbeans-vm.apache.org/uc/11.3/]
>  ) to contain catalog.xml and redirect to mirrors for release distribution.



--
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] [Resolved] (NETBEANS-3853) CLONE - Announce merge window is reopened on master.

2020-02-25 Thread Eric Barboni (Jira)


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

Eric Barboni resolved NETBEANS-3853.

Resolution: Fixed

> CLONE - Announce merge window is reopened on master.
> 
>
> Key: NETBEANS-3853
> URL: https://issues.apache.org/jira/browse/NETBEANS-3853
> Project: NetBeans
>  Issue Type: Sub-task
>Reporter: Neil C Smith
>Priority: Major
>




--
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] [Resolved] (NETBEANS-3852) CLONE - Increment Spec Versions on Master Branch

2020-02-25 Thread Eric Barboni (Jira)


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

Eric Barboni resolved NETBEANS-3852.

Resolution: Fixed

> CLONE - Increment Spec Versions on Master Branch
> 
>
> Key: NETBEANS-3852
> URL: https://issues.apache.org/jira/browse/NETBEANS-3852
> Project: NetBeans
>  Issue Type: Sub-task
>Reporter: Neil C Smith
>Priority: Major
> Fix For: Next
>
>
> Incrementing spec version of all modules in master, so that master modules 
> are definitely "newer" than anything on the release branch.
> {{Done by:}}
>  {
> { ant increment-spec-versions}
> }



--
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] [Resolved] (NETBEANS-3842) CLONE - Create PMC Vote Thread

2020-02-25 Thread Eric Barboni (Jira)


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

Eric Barboni resolved NETBEANS-3842.

Resolution: Fixed

> CLONE - Create PMC Vote Thread
> --
>
> Key: NETBEANS-3842
> URL: https://issues.apache.org/jira/browse/NETBEANS-3842
> Project: NetBeans
>  Issue Type: Sub-task
>Reporter: Neil C Smith
>Priority: Major
>




--
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] [Resolved] (NETBEANS-3851) CLONE - Snapshot of APIs for release

2020-02-25 Thread Eric Barboni (Jira)


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

Eric Barboni resolved NETBEANS-3851.

Resolution: Fixed

> CLONE - Snapshot of APIs for release
> 
>
> Key: NETBEANS-3851
> URL: https://issues.apache.org/jira/browse/NETBEANS-3851
> Project: NetBeans
>  Issue Type: Sub-task
>Reporter: Neil C Smith
>Assignee: Eric Barboni
>Priority: Major
>  Labels: pull-request-available
>
> Creating this issue as a note for PR-1064.
> {code}
>  $ git checkout 11.0
>  $ ant clean; ant build
>  $ ant gen-sigtests-release
>  # I had to fix the nbbuild/build.xml a bit to make this work
>  $ git stash
>  $ git checkout master
>  $ git pull
>  $ git checkout -b SnapshotOfAPIsAsOfRelease110
>  $ git stash pop
>  $ git add .
>  $ git commit -m "Snapshot of APIs as of 
> 910bd74bf46d079e49925f702432c74d54ec705c"
> {code}



--
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] [Resolved] (NETBEANS-3839) CLONE - Check the Blocker issues

2020-02-25 Thread Eric Barboni (Jira)


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

Eric Barboni resolved NETBEANS-3839.

Resolution: Fixed

> CLONE - Check the Blocker issues
> 
>
> Key: NETBEANS-3839
> URL: https://issues.apache.org/jira/browse/NETBEANS-3839
> Project: NetBeans
>  Issue Type: Sub-task
>Reporter: Neil C Smith
>Assignee: Eric Barboni
>Priority: Major
>
> People often add blocker issues to NetBeans even if it is just their work is 
> blocked.
> At least before preparing for a release the blocker issues shall be 
> addressed. If real blockers are found without suitable resolution, ask for 
> help from the community.



--
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] [Resolved] (NETBEANS-3840) CLONE - Check the Critical issues

2020-02-25 Thread Eric Barboni (Jira)


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

Eric Barboni resolved NETBEANS-3840.

Resolution: Fixed

> CLONE - Check the Critical issues
> -
>
> Key: NETBEANS-3840
> URL: https://issues.apache.org/jira/browse/NETBEANS-3840
> Project: NetBeans
>  Issue Type: Sub-task
>Reporter: Neil C Smith
>Assignee: Eric Barboni
>Priority: Major
>
>  People often add critical issues to NetBeans if that's critical for their 
> workflow..
> Also ask the community help for resolving real critical issues.



--
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] [Resolved] (NETBEANS-3846) CLONE - Release Maven artefacts

2020-02-25 Thread Eric Barboni (Jira)


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

Eric Barboni resolved NETBEANS-3846.

Resolution: Fixed

> CLONE - Release Maven artefacts
> ---
>
> Key: NETBEANS-3846
> URL: https://issues.apache.org/jira/browse/NETBEANS-3846
> Project: NetBeans
>  Issue Type: Sub-task
>Reporter: Neil C Smith
>Assignee: Eric Barboni
>Priority: Major
>




--
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] [Resolved] (NETBEANS-3841) CLONE - Create voting candidate

2020-02-25 Thread Eric Barboni (Jira)


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

Eric Barboni resolved NETBEANS-3841.

Resolution: Fixed

> CLONE - Create voting candidate
> ---
>
> Key: NETBEANS-3841
> URL: https://issues.apache.org/jira/browse/NETBEANS-3841
> Project: NetBeans
>  Issue Type: Sub-task
>Reporter: Neil C Smith
>Priority: Major
>
> Create the voting candidate (eg. NB 11.1-vc1), and sign and SVN commit 
> relevant files to Apache dist/dev for voting.



--
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] [Resolved] (NETBEANS-3843) CLONE - Close PMC Vote Thread

2020-02-25 Thread Eric Barboni (Jira)


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

Eric Barboni resolved NETBEANS-3843.

Resolution: Fixed

> CLONE - Close PMC Vote Thread
> -
>
> Key: NETBEANS-3843
> URL: https://issues.apache.org/jira/browse/NETBEANS-3843
> Project: NetBeans
>  Issue Type: Sub-task
>Reporter: Neil C Smith
>Priority: Major
>




--
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] [Resolved] (NETBEANS-3844) CLONE - Copy staged release artifacts to the release area.

2020-02-25 Thread Eric Barboni (Jira)


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

Eric Barboni resolved NETBEANS-3844.

Resolution: Fixed

> CLONE - Copy staged release artifacts to the release area.
> --
>
> Key: NETBEANS-3844
> URL: https://issues.apache.org/jira/browse/NETBEANS-3844
> Project: NetBeans
>  Issue Type: Sub-task
>Reporter: Neil C Smith
>Priority: Major
>




--
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-3903] - Netbeans 11.2 fails to detect startup of Tomcat

2020-02-25 Thread matthiasblaesing
This is an automated email from the ASF dual-hosted git repository.

matthiasblaesing 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 8375ec8  [NETBEANS-3903] - Netbeans 11.2 fails to detect startup of 
Tomcat
 new ee94db4  Merge pull request #1981 from nam-van-nguyen/NETBEANS-3903
8375ec8 is described below

commit 8375ec8f8e351a8da1ea836533621d3cf13c295c
Author: Nam Nguyen 
AuthorDate: Tue Feb 25 13:46:22 2020 -0500

[NETBEANS-3903] - Netbeans 11.2 fails to detect startup of Tomcat

  + Added new line to the HTTP head request to the Tomcat so it would
return successfully (according to HTTP specs)
---
 enterprise/tomcat5/src/org/netbeans/modules/tomcat5/util/Utils.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/enterprise/tomcat5/src/org/netbeans/modules/tomcat5/util/Utils.java 
b/enterprise/tomcat5/src/org/netbeans/modules/tomcat5/util/Utils.java
index e64ae97..3c45c8b 100644
--- a/enterprise/tomcat5/src/org/netbeans/modules/tomcat5/util/Utils.java
+++ b/enterprise/tomcat5/src/org/netbeans/modules/tomcat5/util/Utils.java
@@ -78,7 +78,7 @@ public final class Utils {
 BufferedReader in = new BufferedReader(new 
InputStreamReader(socket.getInputStream()));
 try {
 // request
-out.println("HEAD /netbeans-tomcat-status-test 
HTTP/1.1\r\nHost: localhost:" + port + "\r\n"); // NOI18N
+out.println("HEAD /netbeans-tomcat-status-test 
HTTP/1.1\r\nHost: localhost:" + port + "\r\n\r\n"); // NOI18N
 out.flush();
 
 // response


-
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] [Resolved] (NETBEANS-3668) Update Groovy support to use Groovy 2.5.8

2020-02-25 Thread Eric Barboni (Jira)


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

Eric Barboni resolved NETBEANS-3668.

Resolution: Fixed

> Update Groovy support to use Groovy 2.5.8
> -
>
> Key: NETBEANS-3668
> URL: https://issues.apache.org/jira/browse/NETBEANS-3668
> Project: NetBeans
>  Issue Type: Improvement
>  Components: groovy - Editor
>Affects Versions: 11.2
>Reporter: Sven Reimers
>Assignee: Sven Reimers
>Priority: Major
> Fix For: 11.3
>
>
> Groovy support should be based on latest stable Groovy release (2.5.8).



--
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-2446) New project wizard with wrong project location

2020-02-25 Thread Ernie Rael (Jira)


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

Ernie Rael commented on NETBEANS-2446:
--

Filed NETBEANS-3918 for spurious directory creation.

> New project wizard with wrong project location
> --
>
> Key: NETBEANS-2446
> URL: https://issues.apache.org/jira/browse/NETBEANS-2446
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - Code
>Affects Versions: 11.0
>Reporter: James Z
>Assignee: Ernie Rael
>Priority: Major
>  Labels: pull-request-available
> Fix For: 12.0
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> New Project wizard has bug, it used wrong Project Location, and when navigate 
> with 'Next >', '< Back', the project location will become longer and longer. 
> It also create lots of directories.
> Such as: ~/NetBeansProjects/mavenproject1/mavenproject1/mavenproject1/.../...



--
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-3918) Maven new project wizard creates spurious directories

2020-02-25 Thread Ernie Rael (Jira)


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

Ernie Rael commented on NETBEANS-3918:
--

The spurious directory creation comes from
{code:java}
changeset:   301468:76d9cafcee35
branch:  ArchetypesUI268677
parent:  299970:0c5aa5cdb86a
user:Jaroslav Tulach 
date:Tue Oct 25 21:52:49 2016 +0200
summary: #268677: Recognizing .archetype template files and using them 
to instantiate projects via mvn archetype
{code}
The directory creation comes from 
java/maven/.../BasicPanelVisual.store(WizardDescriptor d)
{code:java}
void store(WizardDescriptor d) {
...
d.putProperty(CommonProjectActions.PROJECT_PARENT_FOLDER, parentFolder);
if (d instanceof TemplateWizard) {
parentFolder.mkdirs();
((TemplateWizard) 
d).setTargetFolder(DataFolder.findFolder(FileUtil.toFileObject(parentFolder)));
}
{code}
The store method is called to save panel settings; it could be for cancel, 
back, next. Not just finish.

I don't know if this code is for convenience, to avoid later calculations, or 
if it's required, or ...

With some guidance I might...

> Maven new project wizard creates spurious directories
> -
>
> Key: NETBEANS-3918
> URL: https://issues.apache.org/jira/browse/NETBEANS-3918
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 11.3
>Reporter: Ernie Rael
>Priority: Major
>
> This derives from the 2nd part of NETBEANS-2446. Whenever the "Name and 
> Location" panel for maven's NewProject action is exited, a directory is 
> created for the indicated "Project Folder:". This could be after pressing 
> "Back", "Next", "Cancel". 



--
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-3876) Using Groovy in projects is causing java.lang.NoClassDefFoundError

2020-02-25 Thread Benjamin Graf (Jira)


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

Benjamin Graf commented on NETBEANS-3876:
-

Hi [~paulk],

I did a quick test with latest 2.5.10 SNAPSHOT. Actually seeing no incident 
anymore. (y)

Regards
Benjamin

> Using Groovy in projects is causing java.lang.NoClassDefFoundError
> --
>
> Key: NETBEANS-3876
> URL: https://issues.apache.org/jira/browse/NETBEANS-3876
> Project: NetBeans
>  Issue Type: Bug
>  Components: groovy - Editor
>Affects Versions: 11.3
> Environment: Windows 10
> openjdk version "14" 2020-03-17
> OpenJDK Runtime Environment AdoptOpenJDK (build 14+34-202002111235)
> OpenJDK 64-Bit Server VM AdoptOpenJDK (build 14+34-202002111235, mixed mode, 
> sharing)
>Reporter: Benjamin Graf
>Priority: Major
>
> Following Exception is throws in several use cases for projects using groovy 
> files. I can recognize it for following use cases:
> * internal code parsing of editor
> * while "Clean and Build" ant project
> {noformat}
> java.lang.NoClassDefFoundError: Could not initialize class 
> org.codehaus.groovy.vmplugin.v7.Java7
>   at 
> org.codehaus.groovy.vmplugin.VMPluginFactory.(VMPluginFactory.java:43)
>   at org.codehaus.groovy.ast.ClassHelper.makeCached(ClassHelper.java:141)
>   at org.codehaus.groovy.ast.ClassHelper.(ClassHelper.java:77)
>   at org.codehaus.groovy.classgen.Verifier.(Verifier.java:133)
>   at 
> org.codehaus.groovy.control.CompilationUnit.(CompilationUnit.java:170)
>   at 
> org.netbeans.modules.groovy.editor.compiler.CompilationUnit.(CompilationUnit.java:64)
>   at 
> org.netbeans.modules.groovy.editor.api.parser.GroovyParser.parseBuffer(GroovyParser.java:441)
>   at 
> org.netbeans.modules.groovy.editor.api.parser.GroovyParser.parse(GroovyParser.java:137)
>   at 
> org.netbeans.modules.parsing.impl.TaskProcessor.callParse(TaskProcessor.java:598)
>   at 
> org.netbeans.modules.parsing.impl.SourceCache.getResult(SourceCache.java:228)
>   at 
> org.netbeans.modules.parsing.api.ResultIterator.getParserResult(ResultIterator.java:115)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work$2.run(RepositoryUpdater.java:3171)
>   at 
> org.netbeans.modules.parsing.impl.TaskProcessor.callUserTask(TaskProcessor.java:586)
>   at 
> org.netbeans.modules.parsing.api.ParserManager$UserTaskAction.run(ParserManager.java:130)
>   at 
> org.netbeans.modules.parsing.api.ParserManager$UserTaskAction.run(ParserManager.java:114)
>   at 
> org.netbeans.modules.parsing.impl.TaskProcessor$2.call(TaskProcessor.java:181)
>   at 
> org.netbeans.modules.parsing.impl.TaskProcessor$2.call(TaskProcessor.java:178)
>   at 
> org.netbeans.modules.masterfs.filebasedfs.utils.FileChangedManager.priorityIO(FileChangedManager.java:153)
>   at 
> org.netbeans.modules.masterfs.providers.ProvidedExtensions.priorityIO(ProvidedExtensions.java:335)
>   at 
> org.netbeans.modules.parsing.nb.DataObjectEnvFactory.runPriorityIO(DataObjectEnvFactory.java:118)
>   at 
> org.netbeans.modules.parsing.impl.Utilities.runPriorityIO(Utilities.java:67)
>   at 
> org.netbeans.modules.parsing.impl.TaskProcessor.runUserTask(TaskProcessor.java:178)
>   at 
> org.netbeans.modules.parsing.api.ParserManager.parse(ParserManager.java:81)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work.indexEmbedding(RepositoryUpdater.java:3143)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work.doIndex(RepositoryUpdater.java:2862)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work.access$800(RepositoryUpdater.java:2154)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work$1.run(RepositoryUpdater.java:2636)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work$1.run(RepositoryUpdater.java:2634)
>   at 
> org.netbeans.modules.parsing.impl.indexing.errors.TaskCache.refreshTransaction(TaskCache.java:540)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work.index(RepositoryUpdater.java:2634)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$AbstractRootsWork$4.call(RepositoryUpdater.java:5714)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$AbstractRootsWork$4.call(RepositoryUpdater.java:5622)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$4.run(RepositoryUpdater.java:2127)
>   at org.openide.util.lookup.Lookups.executeWith(Lookups.java:279)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater.runInContext(RepositoryUpdater.java:2123)
>   at 
> 

[jira] [Created] (NETBEANS-3918) Maven new project wizard creates spurious directories

2020-02-25 Thread Ernie Rael (Jira)
Ernie Rael created NETBEANS-3918:


 Summary: Maven new project wizard creates spurious directories
 Key: NETBEANS-3918
 URL: https://issues.apache.org/jira/browse/NETBEANS-3918
 Project: NetBeans
  Issue Type: Bug
  Components: projects - Maven
Affects Versions: 11.3
Reporter: Ernie Rael


This derives from the 2nd part of NETBEANS-2446. Whenever the "Name and 
Location" panel for maven's NewProject action is exited, a directory is created 
for the indicated "Project Folder:". This could be after pressing "Back", 
"Next", "Cancel". 



--
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-2446) New project wizard with wrong project location

2020-02-25 Thread Ernie Rael (Jira)


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

Ernie Rael updated NETBEANS-2446:
-
Fix Version/s: 12.0

> New project wizard with wrong project location
> --
>
> Key: NETBEANS-2446
> URL: https://issues.apache.org/jira/browse/NETBEANS-2446
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - Code
>Affects Versions: 11.0
>Reporter: James Z
>Assignee: Ernie Rael
>Priority: Major
>  Labels: pull-request-available
> Fix For: 12.0
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> New Project wizard has bug, it used wrong Project Location, and when navigate 
> with 'Next >', '< Back', the project location will become longer and longer. 
> It also create lots of directories.
> Such as: ~/NetBeansProjects/mavenproject1/mavenproject1/mavenproject1/.../...



--
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-2446) New project wizard with wrong project location

2020-02-25 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot updated NETBEANS-2446:
-
Labels: pull-request-available  (was: )

> New project wizard with wrong project location
> --
>
> Key: NETBEANS-2446
> URL: https://issues.apache.org/jira/browse/NETBEANS-2446
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - Code
>Affects Versions: 11.0
>Reporter: James Z
>Assignee: Ernie Rael
>Priority: Major
>  Labels: pull-request-available
>
> New Project wizard has bug, it used wrong Project Location, and when navigate 
> with 'Next >', '< Back', the project location will become longer and longer. 
> It also create lots of directories.
> Such as: ~/NetBeansProjects/mavenproject1/mavenproject1/mavenproject1/.../...



--
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: [TRAVIS] Fix macOS tests

2020-02-25 Thread matthiasblaesing
This is an automated email from the ASF dual-hosted git repository.

matthiasblaesing 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 666b339  [TRAVIS] Fix macOS tests
 new cd1ef75  Merge pull request #1971 from blackleg/fix_macos_travis
666b339 is described below

commit 666b339f224a9cb4dc7d9a65ec7d06004a790114
Author: Hector Espert 
AuthorDate: Mon Feb 24 20:02:22 2020 +0100

[TRAVIS] Fix macOS tests
---
 .travis.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index a14be6b..a50dd8a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -362,7 +362,7 @@ matrix:
 - ant $OPTS build
   script:
 - ant $OPTS -f java/java.completion test
-- ant $OPTS -f java/java.source.base test
+- travis_retry ant $OPTS -f java/java.source.base test
 
 - name: Test Java modules with nb-javac on Java 13
   jdk: openjdk8
@@ -579,6 +579,7 @@ matrix:
 homebrew:
   packages:
 - ant
+  update: true
   env:
 - OPTS="-silent -Dcluster.config=platform 
-Dpermit.jdk9.builds=true -Djavac.compilerargs=-nowarn 
-Dbuild.compiler.deprecation=false 
-Dtest-unit-sys-prop.ignore.random.failures=true -Dvanilla.javac.exists=true"
   before_script:


-
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-3917) NetBeans 11.2 is not able to use Apache Tomcat 9.0.31

2020-02-25 Thread Enrico Olivelli (Jira)


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

Enrico Olivelli commented on NETBEANS-3917:
---

This is what I wanted :-) 
-J-Dorg.netbeans.modules.tomcat5.level=100 

> NetBeans 11.2 is not able to use Apache Tomcat 9.0.31
> -
>
> Key: NETBEANS-3917
> URL: https://issues.apache.org/jira/browse/NETBEANS-3917
> Project: NetBeans
>  Issue Type: Bug
>  Components: serverplugins - Tomcat
>Affects Versions: 11.2
>Reporter: Enrico Olivelli
>Priority: Blocker
>
> NetBeans is not happy with Tomcat 9.0.31.
> It is able to work properly with 9.0.30 but not with 9.0.31.
> I am using NetBeans 11.2 on Mac with JDK13.
> I am able to register Tomcat but it looks like NetBeans is not able to talk 
> to him in order to:
> - list deployed applications
> - check if the server is running during the deployement of a Web Application 
> (I am using Maven Web Application type)
>  



--
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-3917) NetBeans 11.2 is not able to use Apache Tomcat 9.0.31

2020-02-25 Thread Enrico Olivelli (Jira)


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

Enrico Olivelli edited comment on NETBEANS-3917 at 2/25/20 3:51 PM:


I am starting to debug this issue.
I am seeing this useful property:
org.netbeans.modules.tomcat5.LogManagerCommands

but how can change the log level of a specific logger in NetBeans ?
I see that you can configure a system property like this
http://bits.netbeans.org/dev/javadoc/org-openide-util/org/openide/util/doc-files/logging.html

Isn't there any logging configuration file ?


was (Author: eolivelli):
I am starting to debug this issue.
I am seeing this useful property:
org.netbeans.modules.tomcat5.LogManagerCommands

but how can change the log level of a specific logger in NetBeans ?

> NetBeans 11.2 is not able to use Apache Tomcat 9.0.31
> -
>
> Key: NETBEANS-3917
> URL: https://issues.apache.org/jira/browse/NETBEANS-3917
> Project: NetBeans
>  Issue Type: Bug
>  Components: serverplugins - Tomcat
>Affects Versions: 11.2
>Reporter: Enrico Olivelli
>Priority: Blocker
>
> NetBeans is not happy with Tomcat 9.0.31.
> It is able to work properly with 9.0.30 but not with 9.0.31.
> I am using NetBeans 11.2 on Mac with JDK13.
> I am able to register Tomcat but it looks like NetBeans is not able to talk 
> to him in order to:
> - list deployed applications
> - check if the server is running during the deployement of a Web Application 
> (I am using Maven Web Application type)
>  



--
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-3917) NetBeans 11.2 is not able to use Apache Tomcat 9.0.31

2020-02-25 Thread Enrico Olivelli (Jira)


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

Enrico Olivelli commented on NETBEANS-3917:
---

I am starting to debug this issue.
I am seeing this useful property:
org.netbeans.modules.tomcat5.LogManagerCommands

but how can change the log level of a specific logger in NetBeans ?

> NetBeans 11.2 is not able to use Apache Tomcat 9.0.31
> -
>
> Key: NETBEANS-3917
> URL: https://issues.apache.org/jira/browse/NETBEANS-3917
> Project: NetBeans
>  Issue Type: Bug
>  Components: serverplugins - Tomcat
>Affects Versions: 11.2
>Reporter: Enrico Olivelli
>Priority: Blocker
>
> NetBeans is not happy with Tomcat 9.0.31.
> It is able to work properly with 9.0.30 but not with 9.0.31.
> I am using NetBeans 11.2 on Mac with JDK13.
> I am able to register Tomcat but it looks like NetBeans is not able to talk 
> to him in order to:
> - list deployed applications
> - check if the server is running during the deployement of a Web Application 
> (I am using Maven Web Application type)
>  



--
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-3917) NetBeans 11.2 is not able to use Apache Tomcat 9.0.31

2020-02-25 Thread Eduardo Quintanilla (Jira)


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

Eduardo Quintanilla edited comment on NETBEANS-3917 at 2/25/20 3:40 PM:


Sounds like is the same issue


was (Author: eduardo quintanilla):
Sound like is the same issue

> NetBeans 11.2 is not able to use Apache Tomcat 9.0.31
> -
>
> Key: NETBEANS-3917
> URL: https://issues.apache.org/jira/browse/NETBEANS-3917
> Project: NetBeans
>  Issue Type: Bug
>  Components: serverplugins - Tomcat
>Affects Versions: 11.2
>Reporter: Enrico Olivelli
>Priority: Blocker
>
> NetBeans is not happy with Tomcat 9.0.31.
> It is able to work properly with 9.0.30 but not with 9.0.31.
> I am using NetBeans 11.2 on Mac with JDK13.
> I am able to register Tomcat but it looks like NetBeans is not able to talk 
> to him in order to:
> - list deployed applications
> - check if the server is running during the deployement of a Web Application 
> (I am using Maven Web Application type)
>  



--
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-3917) NetBeans 11.2 is not able to use Apache Tomcat 9.0.31

2020-02-25 Thread Eduardo Quintanilla (Jira)


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

Eduardo Quintanilla commented on NETBEANS-3917:
---

Sound like is the same issue

> NetBeans 11.2 is not able to use Apache Tomcat 9.0.31
> -
>
> Key: NETBEANS-3917
> URL: https://issues.apache.org/jira/browse/NETBEANS-3917
> Project: NetBeans
>  Issue Type: Bug
>  Components: serverplugins - Tomcat
>Affects Versions: 11.2
>Reporter: Enrico Olivelli
>Priority: Blocker
>
> NetBeans is not happy with Tomcat 9.0.31.
> It is able to work properly with 9.0.30 but not with 9.0.31.
> I am using NetBeans 11.2 on Mac with JDK13.
> I am able to register Tomcat but it looks like NetBeans is not able to talk 
> to him in order to:
> - list deployed applications
> - check if the server is running during the deployement of a Web Application 
> (I am using Maven Web Application type)
>  



--
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-3917) NetBeans 11.2 is not able to use Apache Tomcat 9.0.31

2020-02-25 Thread Enrico Olivelli (Jira)
Enrico Olivelli created NETBEANS-3917:
-

 Summary: NetBeans 11.2 is not able to use Apache Tomcat 9.0.31
 Key: NETBEANS-3917
 URL: https://issues.apache.org/jira/browse/NETBEANS-3917
 Project: NetBeans
  Issue Type: Bug
  Components: serverplugins - Tomcat
Affects Versions: 11.2
Reporter: Enrico Olivelli


NetBeans is not happy with Tomcat 9.0.31.
It is able to work properly with 9.0.30 but not with 9.0.31.

I am using NetBeans 11.2 on Mac with JDK13.
I am able to register Tomcat but it looks like NetBeans is not able to talk to 
him in order to:
- list deployed applications
- check if the server is running during the deployement of a Web Application (I 
am using Maven Web Application type)
 



--
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-website] branch asf-site updated: Automated site publishing by Jenkins build 1197

2020-02-25 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/netbeans-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
 new 493fdc3  Automated site publishing by Jenkins build 1197
493fdc3 is described below

commit 493fdc3df894c78a5bf7d985b7bb0fe6c2a6abc1
Author: jenkins 
AuthorDate: Tue Feb 25 15:04:33 2020 +

Automated site publishing by Jenkins build 1197
---
 content/download/nb113/index.html | 13 -
 1 file changed, 4 insertions(+), 9 deletions(-)

diff --git a/content/download/nb113/index.html 
b/content/download/nb113/index.html
index 382d468..d813cba 100644
--- a/content/download/nb113/index.html
+++ b/content/download/nb113/index.html
@@ -77,8 +77,8 @@
 Java EE
 Appearance
 
+FlatLaf Look and Feel 
Support
 HiDPI
-HiDPI
 
 
 
@@ -263,20 +263,15 @@ Currently, Apache NetBeans supports Java EE, though not 
yet Jakarta EE. The Jaka
 A strong focus of the 11.3 release is around appearance, since the NetBeans 
dark look and feel support has been donated by Oracle to Apache, while FlatLaf, 
a completely new look and feel has been donated and integrated by Karl Tauber 
from FormDev Software GmbH, and enhancements for HiDPI on Windows have also 
been introduced.
 
 
-HiDPI
-
-
-
-
-
+FlatLaf Look and Feel Support
 
 
-
+
 
 
 
 
-HiDPI
+HiDPI
 
 
 


-
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-website] branch asf-site updated: Automated site publishing by Jenkins build 1196

2020-02-25 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/netbeans-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
 new 7dfd98b  Automated site publishing by Jenkins build 1196
7dfd98b is described below

commit 7dfd98b4787e8864fac91eb307583335c5db9823
Author: jenkins 
AuthorDate: Tue Feb 25 15:01:13 2020 +

Automated site publishing by Jenkins build 1196
---
 content/download/nb113/FlatLaf-11.3.png | Bin 0 -> 118373 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/content/download/nb113/FlatLaf-11.3.png 
b/content/download/nb113/FlatLaf-11.3.png
new file mode 100644
index 000..72a56f3
Binary files /dev/null and b/content/download/nb113/FlatLaf-11.3.png differ


-
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-website] branch master updated: Update index.asciidoc

2020-02-25 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 17ccfed  Update index.asciidoc
17ccfed is described below

commit 17ccfed4c346897cf2497cc41c94cefc9e0fdd94
Author: Geertjan Wielenga 
AuthorDate: Tue Feb 25 15:57:40 2020 +0100

Update index.asciidoc
---
 netbeans.apache.org/src/content/download/nb113/index.asciidoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/netbeans.apache.org/src/content/download/nb113/index.asciidoc 
b/netbeans.apache.org/src/content/download/nb113/index.asciidoc
index 81d1aa3..8dca960 100644
--- a/netbeans.apache.org/src/content/download/nb113/index.asciidoc
+++ b/netbeans.apache.org/src/content/download/nb113/index.asciidoc
@@ -117,7 +117,7 @@ TIP: Currently, Apache NetBeans supports Java EE, though 
not yet Jakarta EE. The
 
 A strong focus of the 11.3 release is around appearance, since the NetBeans 
dark look and feel support has been donated by Oracle to Apache, while FlatLaf, 
a completely new look and feel has been donated and integrated by Karl Tauber 
from FormDev Software GmbH, and enhancements for HiDPI on Windows have also 
been introduced.
 
- HiDPI
+ FlatLaf Look and Feel Support
 
 image::FlatLaf-11.3.png[role="left", link="FlatLaf-11.3.png"]
 


-
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-website] branch master updated: Tweaking screenshot

2020-02-25 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 43f2f5b  Tweaking screenshot
43f2f5b is described below

commit 43f2f5b182c8f34b4641055cce27effc2f676d00
Author: Geertjan Wielenga 
AuthorDate: Tue Feb 25 15:56:54 2020 +0100

Tweaking screenshot
---
 netbeans.apache.org/src/content/download/nb113/index.asciidoc | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/netbeans.apache.org/src/content/download/nb113/index.asciidoc 
b/netbeans.apache.org/src/content/download/nb113/index.asciidoc
index 3e9796e..81d1aa3 100644
--- a/netbeans.apache.org/src/content/download/nb113/index.asciidoc
+++ b/netbeans.apache.org/src/content/download/nb113/index.asciidoc
@@ -119,9 +119,7 @@ A strong focus of the 11.3 release is around appearance, 
since the NetBeans dark
 
  HiDPI
 
-image::FlatLafDark-11.3.png[role="left", link="FlatLafDark-11.3.png"]
-
-image::FlatLafLight-11.3.png[role="left", link="FlatLafLight-11.3.png"]
+image::FlatLaf-11.3.png[role="left", link="FlatLaf-11.3.png"]
 
  HiDPI
 


-
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-website] branch master updated: Add files via upload

2020-02-25 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new a0618eb  Add files via upload
a0618eb is described below

commit a0618eba22e88608cddbc67ae8cf958935603039
Author: Geertjan Wielenga 
AuthorDate: Tue Feb 25 15:55:55 2020 +0100

Add files via upload
---
 .../src/content/download/nb113/FlatLaf-11.3.png| Bin 0 -> 118373 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/netbeans.apache.org/src/content/download/nb113/FlatLaf-11.3.png 
b/netbeans.apache.org/src/content/download/nb113/FlatLaf-11.3.png
new file mode 100644
index 000..72a56f3
Binary files /dev/null and 
b/netbeans.apache.org/src/content/download/nb113/FlatLaf-11.3.png differ


-
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-website] branch asf-site updated: Automated site publishing by Jenkins build 1194

2020-02-25 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/netbeans-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
 new 0fc7ebd  Automated site publishing by Jenkins build 1194
0fc7ebd is described below

commit 0fc7ebd47917c133c70e94acb3fade8e0ba49d16
Author: jenkins 
AuthorDate: Tue Feb 25 14:50:00 2020 +

Automated site publishing by Jenkins build 1194
---
 content/download/nb113/FlatLafDark-11.3.png  | Bin 0 -> 132932 bytes
 content/download/nb113/FlatLafLight-11.3.png | Bin 0 -> 114536 bytes
 content/download/nb113/index.html|  47 +--
 3 files changed, 45 insertions(+), 2 deletions(-)

diff --git a/content/download/nb113/FlatLafDark-11.3.png 
b/content/download/nb113/FlatLafDark-11.3.png
new file mode 100644
index 000..f101ab9
Binary files /dev/null and b/content/download/nb113/FlatLafDark-11.3.png differ
diff --git a/content/download/nb113/FlatLafLight-11.3.png 
b/content/download/nb113/FlatLafLight-11.3.png
new file mode 100644
index 000..2030c5b
Binary files /dev/null and b/content/download/nb113/FlatLafLight-11.3.png differ
diff --git a/content/download/nb113/index.html 
b/content/download/nb113/index.html
index 7c3358a..382d468 100644
--- a/content/download/nb113/index.html
+++ b/content/download/nb113/index.html
@@ -75,7 +75,12 @@
 
 Java
 Java EE
-Appearance
+Appearance
+
+HiDPI
+HiDPI
+
+
 
 
 Enhancements and Fixes
@@ -255,7 +260,45 @@ Currently, Apache NetBeans supports Java EE, though not 
yet Jakarta EE. The Jaka
 
 Appearance
 
-A strong focus of the 11.3 release is around appearance, since the NetBeans 
dark look and feel support has been donated by Oracle to Apache, while FlatLaf, 
a completely new look and feel has been donated and integrated by Karl Tauber 
from FormDev Software GmbH, and enhancements for HiDPI on Windows has also been 
introduced.
+A strong focus of the 11.3 release is around appearance, since the NetBeans 
dark look and feel support has been donated by Oracle to Apache, while FlatLaf, 
a completely new look and feel has been donated and integrated by Karl Tauber 
from FormDev Software GmbH, and enhancements for HiDPI on Windows have also 
been introduced.
+
+
+HiDPI
+
+
+
+
+
+
+
+
+
+
+
+
+HiDPI
+
+
+
+Windows LAF: Fix tiny or huge GUI font size on various HiDPI 
configurations.
+
+
+Windows LAF: Fix incorrectly sized component icons (radio buttons, 
checkboxes, project tree expansion handles etc.) on various HiDPI 
configurations.
+
+
+Windows LAF: Fix uneven borders on text components on non-integral HiDPI 
scaling factors, e.g. 150%.
+
+
+Windows: Fix broken tab dragging (window rearrangements) on HiDPI 
displays.
+
+
+Make toolbar browser icon take advantage of improved HiDPI scaling.
+
+
+Implement simplified HeapView widget.
+
+
+
 
 
 


-
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-website] branch master updated: Add files via upload

2020-02-25 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 9a47a26  Add files via upload
9a47a26 is described below

commit 9a47a261a26126efa4aafe92729143031713eb61
Author: Geertjan Wielenga 
AuthorDate: Tue Feb 25 15:47:46 2020 +0100

Add files via upload
---
 .../src/content/download/nb113/FlatLafDark-11.3.png| Bin 0 -> 132932 bytes
 .../src/content/download/nb113/FlatLafLight-11.3.png   | Bin 0 -> 114536 bytes
 2 files changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/netbeans.apache.org/src/content/download/nb113/FlatLafDark-11.3.png 
b/netbeans.apache.org/src/content/download/nb113/FlatLafDark-11.3.png
new file mode 100644
index 000..f101ab9
Binary files /dev/null and 
b/netbeans.apache.org/src/content/download/nb113/FlatLafDark-11.3.png differ
diff --git 
a/netbeans.apache.org/src/content/download/nb113/FlatLafLight-11.3.png 
b/netbeans.apache.org/src/content/download/nb113/FlatLafLight-11.3.png
new file mode 100644
index 000..2030c5b
Binary files /dev/null and 
b/netbeans.apache.org/src/content/download/nb113/FlatLafLight-11.3.png differ


-
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-website] branch master updated: FlatLaf screenshots and HiDPI

2020-02-25 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 429165a  FlatLaf screenshots and HiDPI
429165a is described below

commit 429165a5df14b4f756ec7f3b4ada4921ef1a472c
Author: Geertjan Wielenga 
AuthorDate: Tue Feb 25 15:47:16 2020 +0100

FlatLaf screenshots and HiDPI
---
 .../src/content/download/nb113/index.asciidoc   | 17 -
 1 file changed, 16 insertions(+), 1 deletion(-)

diff --git a/netbeans.apache.org/src/content/download/nb113/index.asciidoc 
b/netbeans.apache.org/src/content/download/nb113/index.asciidoc
index 39594e1..3e9796e 100644
--- a/netbeans.apache.org/src/content/download/nb113/index.asciidoc
+++ b/netbeans.apache.org/src/content/download/nb113/index.asciidoc
@@ -115,7 +115,22 @@ TIP: Currently, Apache NetBeans supports Java EE, though 
not yet Jakarta EE. The
 
 === Appearance
 
-A strong focus of the 11.3 release is around appearance, since the NetBeans 
dark look and feel support has been donated by Oracle to Apache, while FlatLaf, 
a completely new look and feel has been donated and integrated by Karl Tauber 
from FormDev Software GmbH, and enhancements for HiDPI on Windows has also been 
introduced.
+A strong focus of the 11.3 release is around appearance, since the NetBeans 
dark look and feel support has been donated by Oracle to Apache, while FlatLaf, 
a completely new look and feel has been donated and integrated by Karl Tauber 
from FormDev Software GmbH, and enhancements for HiDPI on Windows have also 
been introduced.
+
+ HiDPI
+
+image::FlatLafDark-11.3.png[role="left", link="FlatLafDark-11.3.png"]
+
+image::FlatLafLight-11.3.png[role="left", link="FlatLafLight-11.3.png"]
+
+ HiDPI
+
+- Windows LAF: Fix tiny or huge GUI font size on various HiDPI configurations.
+- Windows LAF: Fix incorrectly sized component icons (radio buttons, 
checkboxes, project tree expansion handles etc.) on various HiDPI 
configurations.
+- Windows LAF: Fix uneven borders on text components on non-integral HiDPI 
scaling factors, e.g. 150%.
+- Windows: Fix broken tab dragging (window rearrangements) on HiDPI displays.
+- Make toolbar browser icon take advantage of improved HiDPI scaling.
+- Implement simplified HeapView widget.
 
 == Enhancements and Fixes
 


-
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-3916) Crash in Editor after code highlighting in C file

2020-02-25 Thread Noel Kuntze (Jira)
Noel Kuntze created NETBEANS-3916:
-

 Summary: Crash in Editor after code highlighting in C file
 Key: NETBEANS-3916
 URL: https://issues.apache.org/jira/browse/NETBEANS-3916
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 11.2
 Environment: Arch Linux
Reporter: Noel Kuntze


I was editing a C source file and the editor window crashed, not displaying any 
more contents.


 2020-02-25T14:42:07
 1582638127055
 66913
 1000
 176
 Error in RequestProcessor 
org.netbeans.modules.lsp.client.bindings.TextDocumentSyncServerCapabilityHandler$$Lambda$105/980902628
 
 java.lang.NoClassDefFoundError: 
org/eclipse/lsp4j/services/LanguageClient
 
 
org.netbeans.modules.lsp.client.bindings.TextDocumentSyncServerCapabilityHandler
 lambda$handleChange$1
 84
 ${netBeansDir}modules/org-netbeans-modules-lsp-client.jar
 
 
 org.openide.util.RequestProcessor$Task
 run
 1418
 ${netbeans.home}lib/org-openide-util.jar
 
 
 org.netbeans.modules.openide.util.GlobalLookup
 execute
 45
 ${netbeans.home}lib/org-openide-util-lookup.jar
 
 
 org.openide.util.lookup.Lookups
 executeWith
 278
 ${netbeans.home}lib/org-openide-util-lookup.jar
 
 
 org.openide.util.RequestProcessor$Processor
 run
 2033
 ${netbeans.home}lib/org-openide-util.jar
 
 
 
 java.lang.ClassNotFoundException: 
org.eclipse.lsp4j.services.LanguageClient starting from 
ModuleCL@5f665ef9[org.netbeans.modules.lsp.client] with possible defining 
loaders [ModuleCL@5f665ef9[org.netbeans.modules.lsp.client]] and declared 
parents [ModuleCL@3c46c2c6[org.openide.loaders], 
ModuleCL@21f125da[org.netbeans.modules.editor.document], 
ModuleCL@47bb9afc[org.openide.dialogs], 
ModuleCL@1b59cd95[org.netbeans.modules.projectapi], 
ModuleCL@7e5cb89a[org.netbeans.modules.editor.lib], 
org.netbeans.JarClassLoader@1e3496ea, ModuleCL@2557a452[org.openide.awt], 
Netigso[reference:file:ide/modules/com-google-guava.jar], 
Netigso[reference:file:ide/modules/com-google-gson.jar], 
ModuleCL@534b59f2[org.openide.text], ...11 more]
 
 org.netbeans.ProxyClassLoader
 loadClass
 199
 ${netbeans.home}lib/boot.jar
 
 
 java.lang.ClassLoader
 loadClass
 352
 ${java.home}lib/rt.jar
 
 5
 
 
 java.lang.ClassNotFoundException: 
org.eclipse.lsp4j.services.LanguageClient
 
 java.net.URLClassLoader
 findClass
 382
 ${java.home}lib/rt.jar
 
 
 java.lang.ClassLoader
 loadClass
 419
 ${java.home}lib/rt.jar
 
 
 sun.misc.Launcher$AppClassLoader
 loadClass
 352
 ${java.home}lib/rt.jar
 
 
 java.lang.ClassLoader
 loadClass
 352
 ${java.home}lib/rt.jar
 
 
 org.netbeans.ProxyClassLoader
 loadClass
 197
 ${netbeans.home}lib/boot.jar
 
 6
 




--
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



svn commit: r38282 - /dev/netbeans/netbeans/11.3/installers/Apache-NetBeans-11.3-bin-windows-x64.exe

2020-02-25 Thread arusinha
Author: arusinha
Date: Tue Feb 25 08:54:21 2020
New Revision: 38282

Log:
Windows installer for NetBeans-11.3

Added:

dev/netbeans/netbeans/11.3/installers/Apache-NetBeans-11.3-bin-windows-x64.exe  
 (with props)

Added: 
dev/netbeans/netbeans/11.3/installers/Apache-NetBeans-11.3-bin-windows-x64.exe
==
Binary file - no diff available.

Propchange: 
dev/netbeans/netbeans/11.3/installers/Apache-NetBeans-11.3-bin-windows-x64.exe
--
svn:mime-type = application/octet-stream



-
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-jenkins-lib] branch master updated: fix build

2020-02-25 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 35b9004  fix build
35b9004 is described below

commit 35b9004d200f259520957d7c75c7a4ca4888ebc7
Author: Eric Barboni 
AuthorDate: Tue Feb 25 09:40:26 2020 +0100

fix build
---
 vars/asfMainNetBeansBuild.groovy | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/vars/asfMainNetBeansBuild.groovy b/vars/asfMainNetBeansBuild.groovy
index 6001e8d..5f857d7 100644
--- a/vars/asfMainNetBeansBuild.groovy
+++ b/vars/asfMainNetBeansBuild.groovy
@@ -171,8 +171,8 @@ def call(Map params = [:]) {
 
 // create dist folder and content
 def versionpath = "";
-def platformpath = "";
-def releasepath = "";
+def platformpath = "/";
+def releasepath = "/";
 if (votecandidate) {
 versionpath = "/${version}/vc${vote}"
 platformpath = 
"/netbeans-platform${versionpath}/"


-
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



svn commit: r38281 - /dev/netbeans/netbeans/11.3/installers/Apache-NetBeans-11.3-bin-linux-x64.sh

2020-02-25 Thread arusinha
Author: arusinha
Date: Tue Feb 25 08:39:46 2020
New Revision: 38281

Log:
Linux installer for NetBeans-11.3

Added:
dev/netbeans/netbeans/11.3/installers/Apache-NetBeans-11.3-bin-linux-x64.sh

Added: 
dev/netbeans/netbeans/11.3/installers/Apache-NetBeans-11.3-bin-linux-x64.sh
==
--- dev/netbeans/netbeans/11.3/installers/Apache-NetBeans-11.3-bin-linux-x64.sh 
(added)
+++ dev/netbeans/netbeans/11.3/installers/Apache-NetBeans-11.3-bin-linux-x64.sh 
Tue Feb 25 08:39:46 2020
@@ -0,0 +1,772185 @@
+#!/bin/sh
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+# 
+
+ARG_JAVAHOME="--javahome"
+ARG_VERBOSE="--verbose"
+ARG_OUTPUT="--output"
+ARG_EXTRACT="--extract"
+ARG_JAVA_ARG_PREFIX="-J"
+ARG_TEMPDIR="--tempdir"
+ARG_CLASSPATHA="--classpath-append"
+ARG_CLASSPATHP="--classpath-prepend"
+ARG_HELP="--help"
+ARG_SILENT="--silent"
+ARG_NOSPACECHECK="--nospacecheck"
+ARG_LOCALE="--locale"
+
+USE_DEBUG_OUTPUT=0
+PERFORM_FREE_SPACE_CHECK=1
+SILENT_MODE=0
+EXTRACT_ONLY=0
+SHOW_HELP_ONLY=0
+LOCAL_OVERRIDDEN=0
+APPEND_CP=
+PREPEND_CP=
+LAUNCHER_APP_ARGUMENTS=
+LAUNCHER_JVM_ARGUMENTS=
+ERROR_OK=0
+ERROR_TEMP_DIRECTORY=2
+ERROR_TEST_JVM_FILE=3
+ERROR_JVM_NOT_FOUND=4
+ERROR_JVM_UNCOMPATIBLE=5
+ERROR_EXTRACT_ONLY=6
+ERROR_INPUTOUPUT=7
+ERROR_FREESPACE=8
+ERROR_INTEGRITY=9
+ERROR_MISSING_RESOURCES=10
+ERROR_JVM_EXTRACTION=11
+ERROR_JVM_UNPACKING=12
+ERROR_VERIFY_BUNDLED_JVM=13
+
+VERIFY_OK=1
+VERIFY_NOJAVA=2
+VERIFY_UNCOMPATIBLE=3
+
+MSG_ERROR_JVM_NOT_FOUND="nlu.jvm.notfoundmessage"
+MSG_ERROR_USER_ERROR="nlu.jvm.usererror"
+MSG_ERROR_JVM_UNCOMPATIBLE="nlu.jvm.uncompatible"
+MSG_ERROR_INTEGRITY="nlu.integrity"
+MSG_ERROR_FREESPACE="nlu.freespace"
+MSG_ERROP_MISSING_RESOURCE="nlu.missing.external.resource"
+MSG_ERROR_TMPDIR="nlu.cannot.create.tmpdir"
+
+MSG_ERROR_EXTRACT_JVM="nlu.cannot.extract.bundled.jvm"
+MSG_ERROR_UNPACK_JVM_FILE="nlu.cannot.unpack.jvm.file"
+MSG_ERROR_VERIFY_BUNDLED_JVM="nlu.error.verify.bundled.jvm"
+
+MSG_RUNNING="nlu.running"
+MSG_STARTING="nlu.starting"
+MSG_EXTRACTING="nlu.extracting"
+MSG_PREPARE_JVM="nlu.prepare.jvm"
+MSG_JVM_SEARCH="nlu.jvm.search"
+MSG_ARG_JAVAHOME="nlu.arg.javahome"
+MSG_ARG_VERBOSE="nlu.arg.verbose"
+MSG_ARG_OUTPUT="nlu.arg.output"
+MSG_ARG_EXTRACT="nlu.arg.extract"
+MSG_ARG_TEMPDIR="nlu.arg.tempdir"
+MSG_ARG_CPA="nlu.arg.cpa"
+MSG_ARG_CPP="nlu.arg.cpp"
+MSG_ARG_DISABLE_FREE_SPACE_CHECK="nlu.arg.disable.space.check"
+MSG_ARG_LOCALE="nlu.arg.locale"
+MSG_ARG_SILENT="nlu.arg.silent"
+MSG_ARG_HELP="nlu.arg.help"
+MSG_USAGE="nlu.msg.usage"
+
+isSymlink=
+
+entryPoint() {
+initSymlinkArgument
+   CURRENT_DIRECTORY=`pwd`
+   LAUNCHER_NAME=`echo $0`
+   parseCommandLineArguments "$@"
+   initializeVariables
+   setLauncherLocale   
+   debugLauncherArguments "$@"
+   if [ 1 -eq $SHOW_HELP_ONLY ] ; then
+   showHelp
+   fi
+   
+message "$MSG_STARTING"
+createTempDirectory
+   checkFreeSpace "$TOTAL_BUNDLED_FILES_SIZE" "$LAUNCHER_EXTRACT_DIR"  
+
+extractJVMData
+   if [ 0 -eq $EXTRACT_ONLY ] ; then 
+searchJava
+   fi
+
+   extractBundledData
+   verifyIntegrity
+
+   if [ 0 -eq $EXTRACT_ONLY ] ; then 
+   executeMainClass
+   else 
+   exitProgram $ERROR_OK
+   fi
+}
+
+initSymlinkArgument() {
+testSymlinkErr=`test -L / 2>&1 > /dev/null`
+if [ -z "$testSymlinkErr" ] ; then
+isSymlink=-L
+else
+isSymlink=-h
+fi
+}
+
+debugLauncherArguments() {
+   debug "Launcher Command : $0"
+   argCounter=1
+while [ $# != 0 ] ; do
+   debug "... argument [$argCounter] = $1"
+   argCounter=`expr "$argCounter" + 1`
+   shift
+   done
+}
+isLauncherCommandArgument() {
+   case "$1" in
+   $ARG_VERBOSE | $ARG_NOSPACECHECK | $ARG_OUTPUT | $ARG_HELP | 
$ARG_JAVAHOME | $ARG_TEMPDIR | $ARG_EXTRACT | $ARG_SILENT | $ARG_LOCALE | 
$ARG_CLASSPATHP | $ARG_CLASSPATHA)
+   echo 1
+   ;;
+   *)
+   echo 0
+   ;;
+   esac
+}
+