[jira] [Updated] (NETBEANS-5276) FlatLAF Options Bugs

2021-01-21 Thread Jira


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

Tomáš Procházka updated NETBEANS-5276:
--
Component/s: FlatLaf

> FlatLAF Options Bugs
> 
>
> Key: NETBEANS-5276
> URL: https://issues.apache.org/jira/browse/NETBEANS-5276
> Project: NetBeans
>  Issue Type: Bug
>  Components: FlatLaf
>Reporter: August Nagro
>Priority: Major
> Attachments: flatLAF-0.png, flatLAF-1.png, flatLAF-2.png, 
> flatLAF-3.png, flatLAF-4.png
>
>
> These screenshots show some places where the UI needs tweaking with the 
> FlatLAF theme.
> The sizing of certain elements is off.
> I'll pay the developer who fixes this issue $40 USD. I know it's not much, 
> but I'd like to do my part to 'chip in' to open source!
> Product Version: Apache NetBeans IDE 12.2
> Java: 15.0.1; OpenJDK 64-Bit Server VM 15.0.1+9-18
> Runtime: OpenJDK Runtime Environment 15.0.1+9-18
> System: Linux version 5.9.16-200.fc33.x86_64 running on amd64; UTF-8; en_US 
> (nb)
> User directory: /home/user/.netbeans/12.2
> Cache directory: /home/user/.cache/netbeans/12.2
> Aside:
> FlatLAF theme should be enabled by default. The MacOS theme
> in particular is not very good with its use of dark Grey. FlatLAF also 
> handles high DPI well
> on linux by considering the font size and not just GDK_SCALE. On a standard 
> Fedora 33 install with a
> 4k monitor, both Eclipse and default-theme Netbeans have very tiny 
> buttons/icons, bordering
> on unusable. Despite it being 2021 and thus the year of the linux desktop, 
> GTK still does not
> support fractional display scaling (Intellij works fine, like FlatLAF).
> So the only option is to run eclipse or netbeans like `GDK_SCALE=2.0 
> ./netbeans`, which
> now makes the buttons/icons almost unusably big. Finally, FlatLAF should 
> become the default
> theme because it looks great, is being actively maintained, and will provide 
> uniformity across
> different platforms.



--
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 (5b67714 -> 4afe4da)

2021-01-21 Thread jtulach
This is an automated email from the ASF dual-hosted git repository.

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


from 5b67714  Merge pull request #2697 from entlicher/CPPLiteDebugComplete
 new 6b00db8  Concentrating DataEditorSupport dialogs into separate class
 new ef841eb  Allow VSNetBeans to say no to any reload file dialog
 new 6ee0337  Testing and documenting appearance of dialogs in 
DataEditorSupport
 new 4f42da8  Replacing isHeadless() check by branding isn't fully 
compatible change
 new cc1eb58  Depends on branding API introduced in org.openide.loaders@7.80
 new 1ee8dfe  Consistently using fully.qualified.package.name.KEY_NAME in 
all branding APIs
 new 4afe4da  Merge pull request #2685 from 
JaroslavTulach/jtulach/DataEditorNoQuestions

The 4910 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 extide/gradle/arch.xml |   2 +-
 ide/projectui/arch.xml |   2 +-
 .../modules/openide/loaders}/Bundle.properties |   5 +-
 .../nbcode/integration/nbproject/project.xml   |  18 ++-
 .../modules/nbcode/integration/Bundle.properties   |   6 +-
 java/maven/arch.xml|   4 +-
 nbbuild/javadoctools/links.xml |   1 +
 nbbuild/javadoctools/properties.xml|   1 +
 nbbuild/javadoctools/replaces.xml  |   1 +
 platform/core.multiview/arch.xml   |   2 +-
 platform/core.network/arch.xml |   2 +-
 platform/o.n.core/arch.xml |   4 +-
 platform/openide.awt/arch.xml  |   2 +-
 .../openide.awt/src/org/openide/awt/Actions.java   |   1 -
 platform/openide.loaders/apichanges.xml|  15 +++
 platform/openide.loaders/arch.xml  |  15 +++
 platform/openide.loaders/manifest.mf   |   2 +-
 .../openide/loaders/AskEditorQuestions.java|  78 +
 .../modules/openide/loaders}/Bundle.properties |  11 +-
 .../src/org/openide/loaders/Bundle.properties  |   7 --
 .../src/org/openide/text/DataEditorSupport.java|  49 ++---
 .../openide/loaders/AskEditorQuestionsTest.java| 122 +
 .../modules/openide/loaders/Bundle_da.properties   |   3 +-
 .../modules/openide/loaders/Bundle_no.properties   |   3 +-
 platform/openide.windows/arch.xml  |  14 +--
 platform/options.api/arch.xml  |   2 +-
 26 files changed, 295 insertions(+), 77 deletions(-)
 copy 
java/java.lsp.server/nbcode/{integration/src/org/netbeans/modules/nbcode/integration
 => 
branding/modules/org-openide-loaders.jar/org/netbeans/modules/openide/loaders}/Bundle.properties
 (93%)
 create mode 100644 
platform/openide.loaders/src/org/netbeans/modules/openide/loaders/AskEditorQuestions.java
 copy 
{java/java.lsp.server/nbcode/integration/src/org/netbeans/modules/nbcode/integration
 => 
platform/openide.loaders/src/org/netbeans/modules/openide/loaders}/Bundle.properties
 (68%)
 create mode 100644 
platform/openide.loaders/test/unit/src/org/netbeans/modules/openide/loaders/AskEditorQuestionsTest.java
 copy 
java/java.lsp.server/nbcode/integration/src/org/netbeans/modules/nbcode/integration/Bundle.properties
 => 
platform/openide.loaders/test/unit/src/org/netbeans/modules/openide/loaders/Bundle_da.properties
 (93%)
 copy 
java/java.lsp.server/nbcode/integration/src/org/netbeans/modules/nbcode/integration/Bundle.properties
 => 
platform/openide.loaders/test/unit/src/org/netbeans/modules/openide/loaders/Bundle_no.properties
 (93%)


-
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-5026) Hacky scrolling in notifications window

2021-01-21 Thread ASF GitHub Bot (Jira)


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

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

> Hacky scrolling in notifications window
> ---
>
> Key: NETBEANS-5026
> URL: https://issues.apache.org/jira/browse/NETBEANS-5026
> Project: NetBeans
>  Issue Type: Bug
>  Components: FlatLaf
>Affects Versions: 12.1
> Environment: Product Version: Apache NetBeans IDE 12.1
> Java: 11.0.2; Java HotSpot(TM) 64-Bit Server VM 11.0.2+9-LTS
> Runtime: Java(TM) SE Runtime Environment 11.0.2+9-LTS
> System: Windows 10 version 10.0 running on amd64; Cp1252; de_DE (nb)
> User directory: C:\Users\Chris\AppData\Roaming\Netbeans\12.1
> Cache directory: C:\Users\Chris\AppData\Local\NetBeans\Cache\12.1
>Reporter: Christian Lenz
>Assignee: Karl Tauber
>Priority: Major
>  Labels: pull-request-available
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Another hacky scrolling is the notifications window. You need to make some 
> notifications. Open the notifications window and see the area, where the full 
> information of the notifications is shown. Either it is still scrollable or 
> you need to resize it, until you see the scrollbar. If you see it, please 
> scroll and see that it is hacky.
> Surface Laptop 3, Windows 10 20H2 and scrolling with the touchpad on 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-5277) HTML Template Element Highlighting Bug

2021-01-21 Thread August Nagro (Jira)
August Nagro created NETBEANS-5277:
--

 Summary: HTML Template Element Highlighting Bug
 Key: NETBEANS-5277
 URL: https://issues.apache.org/jira/browse/NETBEANS-5277
 Project: NetBeans
  Issue Type: Bug
Reporter: August Nagro
 Attachments: index.html

HTML Template elements should not show an error when they have multiple 
children.

I'll pay the developer who fixes this issue $40 USD. I know it's not much, but 
I'd like to do my part to 'chip in' to open source!

Product Version: Apache NetBeans IDE 12.2
Java: 15.0.1; OpenJDK 64-Bit Server VM 15.0.1+9-18
Runtime: OpenJDK Runtime Environment 15.0.1+9-18
System: Linux version 5.9.16-200.fc33.x86_64 running on amd64; UTF-8; en_US (nb)
User directory: /home/user/.netbeans/12.2
Cache directory: /home/user/.cache/netbeans/12.2





--
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-5276) FlatLAF Options Bugs

2021-01-21 Thread August Nagro (Jira)
August Nagro created NETBEANS-5276:
--

 Summary: FlatLAF Options Bugs
 Key: NETBEANS-5276
 URL: https://issues.apache.org/jira/browse/NETBEANS-5276
 Project: NetBeans
  Issue Type: Bug
Reporter: August Nagro
 Attachments: flatLAF-0.png, flatLAF-1.png, flatLAF-2.png, 
flatLAF-3.png, flatLAF-4.png

These screenshots show some places where the UI needs tweaking with the FlatLAF 
theme.
The sizing of certain elements is off.

I'll pay the developer who fixes this issue $40 USD. I know it's not much, but 
I'd like to do my part to 'chip in' to open source!

Product Version: Apache NetBeans IDE 12.2
Java: 15.0.1; OpenJDK 64-Bit Server VM 15.0.1+9-18
Runtime: OpenJDK Runtime Environment 15.0.1+9-18
System: Linux version 5.9.16-200.fc33.x86_64 running on amd64; UTF-8; en_US (nb)
User directory: /home/user/.netbeans/12.2
Cache directory: /home/user/.cache/netbeans/12.2

Aside:

FlatLAF theme should be enabled by default. The MacOS theme
in particular is not very good with its use of dark Grey. FlatLAF also handles 
high DPI well
on linux by considering the font size and not just GDK_SCALE. On a standard 
Fedora 33 install with a
4k monitor, both Eclipse and default-theme Netbeans have very tiny 
buttons/icons, bordering
on unusable. Despite it being 2021 and thus the year of the linux desktop, GTK 
still does not
support fractional display scaling (Intellij works fine, like FlatLAF).
So the only option is to run eclipse or netbeans like `GDK_SCALE=2.0 
./netbeans`, which
now makes the buttons/icons almost unusably big. Finally, FlatLAF should become 
the default
theme because it looks great, is being actively maintained, and will provide 
uniformity across
different platforms.





--
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-5275) HTML Embedded style tag codecompletion crash

2021-01-21 Thread August Nagro (Jira)
August Nagro created NETBEANS-5275:
--

 Summary: HTML Embedded style tag codecompletion crash
 Key: NETBEANS-5275
 URL: https://issues.apache.org/jira/browse/NETBEANS-5275
 Project: NetBeans
  Issue Type: Bug
Reporter: August Nagro
 Attachments: index.html

Code completion in style blocks is very laggy and often crashes netbeans. (I am 
using all default settings).

I'll pay the developer who fixes this issue $40 USD. I know it's not much, but 
I'd like to do my part to 'chip in' to open source!

Product Version: Apache NetBeans IDE 12.2
Java: 15.0.1; OpenJDK 64-Bit Server VM 15.0.1+9-18
Runtime: OpenJDK Runtime Environment 15.0.1+9-18
System: Linux version 5.9.16-200.fc33.x86_64 running on amd64; UTF-8; en_US (nb)
User directory: /home/user/.netbeans/12.2
Cache directory: /home/user/.cache/netbeans/12.2





--
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-5274) Custom Tag in HTML Editor Breaks Formatting

2021-01-21 Thread August Nagro (Jira)
August Nagro created NETBEANS-5274:
--

 Summary: Custom Tag in HTML Editor Breaks Formatting
 Key: NETBEANS-5274
 URL: https://issues.apache.org/jira/browse/NETBEANS-5274
 Project: NetBeans
  Issue Type: Bug
Reporter: August Nagro
 Attachments: index.html

Adding a custom html tag causes the document to format incorrectly.



I'll pay the developer who fixes this issue $40 USD. I know it's not much, but 
I'd like to do my part to 'chip in' to open source!

Product Version: Apache NetBeans IDE 12.2
Java: 15.0.1; OpenJDK 64-Bit Server VM 15.0.1+9-18
Runtime: OpenJDK Runtime Environment 15.0.1+9-18
System: Linux version 5.9.16-200.fc33.x86_64 running on amd64; UTF-8; en_US (nb)
User directory: /home/user/.netbeans/12.2
Cache directory: /home/user/.cache/netbeans/12.2





--
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-5273) Crash when Changing LAF

2021-01-21 Thread August Nagro (Jira)
August Nagro created NETBEANS-5273:
--

 Summary: Crash when Changing LAF
 Key: NETBEANS-5273
 URL: https://issues.apache.org/jira/browse/NETBEANS-5273
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 12.2
Reporter: August Nagro
 Attachments: change-laf-glitch.png

When you change the Look and Feel, the options window freaks out, opening and 
closing rapidly. Often, netbeans crashes.

I've tested GTK and the FlatLAFs.

I'll pay the developer who fixes this issue $40 USD. I know it's not much, but 
I'd like to do my part to 'chip in' to open source!

Product Version: Apache NetBeans IDE 12.2
Java: 15.0.1; OpenJDK 64-Bit Server VM 15.0.1+9-18
Runtime: OpenJDK Runtime Environment 15.0.1+9-18
System: Linux version 5.9.16-200.fc33.x86_64 running on amd64; UTF-8; en_US (nb)
User directory: /home/user/.netbeans/12.2
Cache directory: /home/user/.cache/netbeans/12.2



--
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-5133) On MACOS Big Sur a normal user can not open Preferences or Plugins

2021-01-21 Thread Di (Jira)


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

Di commented on NETBEANS-5133:
--

ah thanks so much for responding, it was my tab setting, what a frustrating 
thing to find. Seems this thread has been going since Big Sur release, I put 
off the upgrade until now hoping things like this were not an issue.(*)

> On MACOS Big Sur a normal user can not open Preferences or Plugins
> --
>
> Key: NETBEANS-5133
> URL: https://issues.apache.org/jira/browse/NETBEANS-5133
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Settings, platform - Plugin Manager
>Affects Versions: 12.1, 12.2
> Environment: macOS Big Sur 11.0.1
>Reporter: Jose Medeiros
>Priority: Critical
> Attachments: Screen Recording 2020-12-11 at 22.09.26.mov, Screen 
> Recording 2020-12-11 at 22.10.15.mov
>
>
> When running as a normal user, if you click on Netbeans->Preferences the 
> window will open, shake, freeze and not let you do anything. The same thing 
> happens with the Tools->Plugins. Running as super user it works perfectly. 
> Could it be trying to pop up an authentication window that never shows up? 
> See my answer at Stackoverflow 
> [https://stackoverflow.com/questions/61904617/access-to-root-application-support-macos-java/61994057#61994057]
>  if that's the case.



--
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-5272) Wrong order of opened documents in switcher

2021-01-21 Thread Jira


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

Tomáš Procházka commented on NETBEANS-5272:
---

Attached project is named "demo".
Because project also contains file {{package.json}} in directory {{www}}, HTML5 
project convertor creates project with {{www}} as project directory. Name of 
HTML5 project is taken from {{package.json}}.

Now we have two projects with same name, but different project directory.
Files are sorted by project name and by filename - files from different 
projects are mixed.

Linked PR sorts files by project name, project directory and by filename.
Files from different projects are always together when sorting this way.


> Wrong order of opened documents in switcher
> ---
>
> Key: NETBEANS-5272
> URL: https://issues.apache.org/jira/browse/NETBEANS-5272
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Actions/Menu/Toolbar
>Affects Versions: 12.2
>Reporter: Tomáš Procházka
>Assignee: Tomáš Procházka
>Priority: Major
>  Labels: pull-request-available
> Attachments: demo.tgz
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> When files are set to be grouped by project and there are more open project 
> with same name, then files in switcher have wrong order.
> Steps to reproduce:
> # In main menu select Tools > Options
> # Go to Appearance > Document Tabs
> # Check option Sort opened documents list by project
> # Open project from attachment
> # Open all files from that project
> # Click on "Show opened documents list" (arrow down on right side of document 
> tabs)
> Actual result - files are not grouped together:
> *demo*
> help.php
> *demo*
> index.html
> package.json
> *demo*
> stats.php
> Expected result - group files from same project together:
> *demo*
> help.php
> stats.php
> *demo*
> index.html
> package.json



--
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-5272) Wrong order of opened documents in switcher

2021-01-21 Thread ASF GitHub Bot (Jira)


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

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

> Wrong order of opened documents in switcher
> ---
>
> Key: NETBEANS-5272
> URL: https://issues.apache.org/jira/browse/NETBEANS-5272
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Actions/Menu/Toolbar
>Affects Versions: 12.2
>Reporter: Tomáš Procházka
>Assignee: Tomáš Procházka
>Priority: Major
>  Labels: pull-request-available
> Attachments: demo.tgz
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> When files are set to be grouped by project and there are more open project 
> with same name, then files in switcher have wrong order.
> Steps to reproduce:
> # In main menu select Tools > Options
> # Go to Appearance > Document Tabs
> # Check option Sort opened documents list by project
> # Open project from attachment
> # Open all files from that project
> # Click on "Show opened documents list" (arrow down on right side of document 
> tabs)
> Actual result - files are not grouped together:
> *demo*
> help.php
> *demo*
> index.html
> package.json
> *demo*
> stats.php
> Expected result - group files from same project together:
> *demo*
> help.php
> stats.php
> *demo*
> index.html
> package.json



--
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-5272) Wrong order of opened documents in switcher

2021-01-21 Thread Jira
Tomáš Procházka created NETBEANS-5272:
-

 Summary: Wrong order of opened documents in switcher
 Key: NETBEANS-5272
 URL: https://issues.apache.org/jira/browse/NETBEANS-5272
 Project: NetBeans
  Issue Type: Bug
  Components: editor - Actions/Menu/Toolbar
Affects Versions: 12.2
Reporter: Tomáš Procházka
Assignee: Tomáš Procházka
 Attachments: demo.tgz

When files are set to be grouped by project and there are more open project 
with same name, then files in switcher have wrong order.

Steps to reproduce:

# In main menu select Tools > Options
# Go to Appearance > Document Tabs
# Check option Sort opened documents list by project
# Open project from attachment
# Open all files from that project
# Click on "Show opened documents list" (arrow down on right side of document 
tabs)

Actual result - files are not grouped together:
*demo*
help.php
*demo*
index.html
package.json
*demo*
stats.php

Expected result - group files from same project together:
*demo*
help.php
stats.php
*demo*
index.html
package.json






--
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-1428) Fatal error when profiling

2021-01-21 Thread Lars Bruun-Hansen (Jira)


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

Lars Bruun-Hansen commented on NETBEANS-1428:
-

As per the [discussion on the mailing 
list|http://mail-archives.apache.org/mod_mbox//netbeans-dev/202101.mbox/%3CCADQsCza6%3DVYZNB48zMKp%3DHy-e_kPGrfE_ELC241Uy%2B7T13dwvA%40mail.gmail.com%3E]
 I've created [PR-2700|https://github.com/apache/netbeans/pull/2700].

> Fatal error when profiling
> --
>
> Key: NETBEANS-1428
> URL: https://issues.apache.org/jira/browse/NETBEANS-1428
> Project: NetBeans
>  Issue Type: Bug
>  Components: profiler - Base
>Affects Versions: 9.0, 10.0, 11.0
> Environment: Windows 10, JDK11 (OpenJDK 11.0+28)
>Reporter: Peter Hull
>Priority: Major
>  Labels: netcat, pull-request-available
> Attachments: hs_err_pid2496.log, hs_err_pid38528.log
>
>  Time Spent: 4.5h
>  Remaining Estimate: 0h
>
> Attempting to profile a Java freeform project (Netcat 10, Profiling FreeForm, 
> Step 2)
> I get the following error
> {{#}}
> {{# A fatal error has been detected by the Java Runtime Environment:}}
> {{#}}
> {{#  EXCEPTION_ACCESS_VIOLATION (0xc005) at pc=0x7ff8e831c775, 
> pid=38528, tid=38596}}
> {{#}}
> {{# JRE version: OpenJDK Runtime Environment (11.0+28) (build 11+28)}}
> {{# Java VM: OpenJDK 64-Bit Server VM (11+28, mixed mode, tiered, compressed 
> oops, g1 gc, windows-amd64)}}
> {{# Problematic frame:}}
> {{# V  [jvm.dll+0x5ec775]}}
> {{#}}
> {{# No core dump will be written. Minidumps are not enabled by default on 
> client versions of Windows}}
> {{#}}
> {{# An error report file with more information is saved as:}}
> {{# D:\Libraries\Downloads\TS_Profiler_freeform\freeform\hs_err_pid38528.log}}
> {{#}}
> {{# If you would like to submit a bug report, please visit:}}
> {{#   http://bugreport.java.com/bugreport/crash.jsp}}
> {{#}}
> Seems reproducible, I have attached the crash log.



--
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-5109) Remove distribution of nbjavac from apache controlled infrastructure

2021-01-21 Thread Neil C Smith (Jira)


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

Neil C Smith commented on NETBEANS-5109:


[~matthiasblaesing] I realise what this is, and how the .external system works, 
and also how many release issues and problems in updating it has provided. My 
question stands. If we can decouple the release processes of NetBeans and 
nb-javac, we have a chance of delivering 12.3 with the current nb-javac version 
from master as is, while making it more realistic to allow users to test/update 
to the newer version without having to wait until 12.4.

> Remove distribution of nbjavac from apache controlled infrastructure
> 
>
> Key: NETBEANS-5109
> URL: https://issues.apache.org/jira/browse/NETBEANS-5109
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Compiler
>Affects Versions: 12.3
>Reporter: Matthias Bläsing
>Assignee: Matthias Bläsing
>Priority: Blocker
>
> The ASF has a pretty clear opinion about the handling of the GPLv2-CPE. There 
> might be an option to distribute it, but not out of the box. After the 
> transition of NetBeans from oracle to the ASF there was a timeframe were use 
> of the Oregon State University was ok, as the transition was happening. I 
> think we stretched that limit to the max and thus I consider this a blocker 
> for the next release. The nbjavac needs to be moved of ASF controlled 
> infrastructure.
> There are various options:
> - Oracle could publish nbjavac to maven central
> - Oracle could provide a custom updatecenter distributing the nbjavac
> - Oracle could relicense javac
> - Apache NetBeans could switch to the eclipse java development tools
> Not all of these options are realistic, but publishing to maven central is 
> perfectly doable.
> I'll mark this as a blocker for next release, so it is not ignored.



--
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-5109) Remove distribution of nbjavac from apache controlled infrastructure

2021-01-21 Thread Jira


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

Matthias Bläsing commented on NETBEANS-5109:


[~neilcsmith] at this point the the nbjavac repository fixes the distribution 
problem by using the maven central infrastructure. Nothing more, nothing less. 
We currently have:
 # the updatecenters module, that in addition to the regular update centers 
also holds an internal update center, that can install 6 NBMs: OpenJFX for 
Linux, mac OS and Windows and the nb-javac modules
 # the installed modules themselves hold only minimal code and fetch the main 
content via an "*.external" file embedded in the module
 # the "*.external" file points either to Maven Central (JavaFX) or Apache 
NetBeans Controlled Infrastructure (netbeans.osuosl.org or hg.netbeans.org for 
nbjavac)

The update to nbjavac will enable movement to maven central and then a followup 
PR against netbeans can update the external dependencies to point to maven 
central. Step 3 mentioned above is unified to load dependencies from maven 
central.

> Remove distribution of nbjavac from apache controlled infrastructure
> 
>
> Key: NETBEANS-5109
> URL: https://issues.apache.org/jira/browse/NETBEANS-5109
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Compiler
>Affects Versions: 12.3
>Reporter: Matthias Bläsing
>Assignee: Matthias Bläsing
>Priority: Blocker
>
> The ASF has a pretty clear opinion about the handling of the GPLv2-CPE. There 
> might be an option to distribute it, but not out of the box. After the 
> transition of NetBeans from oracle to the ASF there was a timeframe were use 
> of the Oregon State University was ok, as the transition was happening. I 
> think we stretched that limit to the max and thus I consider this a blocker 
> for the next release. The nbjavac needs to be moved of ASF controlled 
> infrastructure.
> There are various options:
> - Oracle could publish nbjavac to maven central
> - Oracle could provide a custom updatecenter distributing the nbjavac
> - Oracle could relicense javac
> - Apache NetBeans could switch to the eclipse java development tools
> Not all of these options are realistic, but publishing to maven central is 
> perfectly doable.
> I'll mark this as a blocker for next release, so it is not ignored.



--
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-1823) JavaFX Scene Builder Integration is still broken (Since Java SE 8u40)

2021-01-21 Thread Jira


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

Matthias Bläsing resolved NETBEANS-1823.

Fix Version/s: 12.3
   Resolution: Fixed

Fix was merged to master

> JavaFX Scene Builder Integration is still broken (Since Java SE 8u40)
> -
>
> Key: NETBEANS-1823
> URL: https://issues.apache.org/jira/browse/NETBEANS-1823
> Project: NetBeans
>  Issue Type: Bug
>  Components: javafx - Editor
>Affects Versions: 10.0
> Environment: MacOS High Sierra; NetBeans 10.vc5 running on JDK 10.0.1 
>  
>Reporter: r-go
>Assignee: Moacir da Roza Flores
>Priority: Major
>  Labels: 10.0-vc5, clos
> Fix For: 12.3
>
> Attachments: org-netbeans-modules-javafx2-scenebuilder.jar
>
>
> NetBeans -> Preferences (Options) -> Java ->JavaFX 
> The only path supported is one that refers to long abandoned (since Java SE 
> 8u40) Oracle's Scene Builder. JavaFX Scene Builder provided by Gluon can not 
> be registered and used in NetBeans - which is kind of nonsense as its in fact 
> the only maintained version of JavaFX scene builder, recommended even by 
> oracle. 
> As JavaFX scene builder is effectively "just" an external .fxml file editor - 
>  the integration with NB  is trivial (but for some strange reasons it is 
> missing from NB for years now) - please fix it if possible. 



--
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-5258) JavaFX Scene Builder 15.0.0 Integration Linux

2021-01-21 Thread Jira


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

Matthias Bläsing resolved NETBEANS-5258.

Fix Version/s: 12.3
   Resolution: Fixed

Fix was merged to master

> JavaFX Scene Builder 15.0.0 Integration Linux
> -
>
> Key: NETBEANS-5258
> URL: https://issues.apache.org/jira/browse/NETBEANS-5258
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.2
> Environment: Manjaro
> Netbeans 12.2
> Scene Builder 15.0.0
>Reporter: Moacir da Roza Flores
>Assignee: Moacir da Roza Flores
>Priority: Major
>  Labels: pull-request-available
> Fix For: 12.3
>
> Attachments: bug.png
>
>  Time Spent: 1h 40m
>  Remaining Estimate: 0h
>
> Hello,
>  Scene Builder 15.0.0 changed some structure of installation folder, so the 
> integration is broken.
>  To fix it open the file
>  
> repository/netbeans/javafx/javafx2.scenebuilder/src/org/netbeans/modules/javafx2/scenebuilder/impl/Bundle.properties
> Replace this lines:
>  UX_LAUNCHER=JavaFXSceneBuilder$ver$;SceneBuilder
>  UX_PROPERTIES=app/scenebuilder.properties;app/SceneBuilder.cfg
> By
> UX_LAUNCHER=JavaFXSceneBuilder$ver$;SceneBuilder;bin/SceneBuilder
>  
> UX_PROPERTIES=app/scenebuilder.properties;app/SceneBuilder.cfg;lib/app/SceneBuilder.cfg
> Can i open a pull request?
> Obs.: Thanks to the people that did this, was very easy support other version 
> of scenebuilder, very well done, i'm surprised how easy was build netbeans.



--
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] [Assigned] (NETBEANS-1823) JavaFX Scene Builder Integration is still broken (Since Java SE 8u40)

2021-01-21 Thread Jira


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

Matthias Bläsing reassigned NETBEANS-1823:
--

Assignee: Moacir da Roza Flores

> JavaFX Scene Builder Integration is still broken (Since Java SE 8u40)
> -
>
> Key: NETBEANS-1823
> URL: https://issues.apache.org/jira/browse/NETBEANS-1823
> Project: NetBeans
>  Issue Type: Bug
>  Components: javafx - Editor
>Affects Versions: 10.0
> Environment: MacOS High Sierra; NetBeans 10.vc5 running on JDK 10.0.1 
>  
>Reporter: r-go
>Assignee: Moacir da Roza Flores
>Priority: Major
>  Labels: 10.0-vc5, clos
> Attachments: org-netbeans-modules-javafx2-scenebuilder.jar
>
>
> NetBeans -> Preferences (Options) -> Java ->JavaFX 
> The only path supported is one that refers to long abandoned (since Java SE 
> 8u40) Oracle's Scene Builder. JavaFX Scene Builder provided by Gluon can not 
> be registered and used in NetBeans - which is kind of nonsense as its in fact 
> the only maintained version of JavaFX scene builder, recommended even by 
> oracle. 
> As JavaFX scene builder is effectively "just" an external .fxml file editor - 
>  the integration with NB  is trivial (but for some strange reasons it is 
> missing from NB for years now) - please fix it if possible. 



--
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 (894e4b5 -> ed02fd2)

2021-01-21 Thread matthiasblaesing
This is an automated email from the ASF dual-hosted git repository.

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


from 894e4b5  Merge pull request #2679 from sdedic/lsp/maven-execution-stop
 add ed02fd2  [NETBEANS-1823][NETBEANS-5258] Fix integration with scene 
builder 15

No new revisions were added by this update.

Summary of changes:
 .../netbeans/modules/javafx2/scenebuilder/impl/Bundle.properties| 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)


-
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] [Assigned] (NETBEANS-5258) JavaFX Scene Builder 15.0.0 Integration Linux

2021-01-21 Thread Jira


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

Matthias Bläsing reassigned NETBEANS-5258:
--

Assignee: Moacir da Roza Flores

> JavaFX Scene Builder 15.0.0 Integration Linux
> -
>
> Key: NETBEANS-5258
> URL: https://issues.apache.org/jira/browse/NETBEANS-5258
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.2
> Environment: Manjaro
> Netbeans 12.2
> Scene Builder 15.0.0
>Reporter: Moacir da Roza Flores
>Assignee: Moacir da Roza Flores
>Priority: Major
>  Labels: pull-request-available
> Attachments: bug.png
>
>  Time Spent: 1h 20m
>  Remaining Estimate: 0h
>
> Hello,
>  Scene Builder 15.0.0 changed some structure of installation folder, so the 
> integration is broken.
>  To fix it open the file
>  
> repository/netbeans/javafx/javafx2.scenebuilder/src/org/netbeans/modules/javafx2/scenebuilder/impl/Bundle.properties
> Replace this lines:
>  UX_LAUNCHER=JavaFXSceneBuilder$ver$;SceneBuilder
>  UX_PROPERTIES=app/scenebuilder.properties;app/SceneBuilder.cfg
> By
> UX_LAUNCHER=JavaFXSceneBuilder$ver$;SceneBuilder;bin/SceneBuilder
>  
> UX_PROPERTIES=app/scenebuilder.properties;app/SceneBuilder.cfg;lib/app/SceneBuilder.cfg
> Can i open a pull request?
> Obs.: Thanks to the people that did this, was very easy support other version 
> of scenebuilder, very well done, i'm surprised how easy was build netbeans.



--
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-5133) On MACOS Big Sur a normal user can not open Preferences or Plugins

2021-01-21 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-5133:
-

See the solution here: https://issues.apache.org/jira/browse/NETBEANS-5037

> On MACOS Big Sur a normal user can not open Preferences or Plugins
> --
>
> Key: NETBEANS-5133
> URL: https://issues.apache.org/jira/browse/NETBEANS-5133
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Settings, platform - Plugin Manager
>Affects Versions: 12.1, 12.2
> Environment: macOS Big Sur 11.0.1
>Reporter: Jose Medeiros
>Priority: Critical
> Attachments: Screen Recording 2020-12-11 at 22.09.26.mov, Screen 
> Recording 2020-12-11 at 22.10.15.mov
>
>
> When running as a normal user, if you click on Netbeans->Preferences the 
> window will open, shake, freeze and not let you do anything. The same thing 
> happens with the Tools->Plugins. Running as super user it works perfectly. 
> Could it be trying to pop up an authentication window that never shows up? 
> See my answer at Stackoverflow 
> [https://stackoverflow.com/questions/61904617/access-to-root-application-support-macos-java/61994057#61994057]
>  if that's the case.



--
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-5133) On MACOS Big Sur a normal user can not open Preferences or Plugins

2021-01-21 Thread Craig H (Jira)


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

Craig H commented on NETBEANS-5133:
---

There are some issues running as super user:

System (config)  files that get modified then prevent the app from running as a 
normal user due to file ownership security issues.

 If you build projects, all folders created as part of the build are locked to 
the super user.

So running as super user will require some cleanup and a NEW install to undo 
the damage. Then re-build all projects and redeploy them.

This is a CRITICAL issue that needs to be addressed ASAP.

 

> On MACOS Big Sur a normal user can not open Preferences or Plugins
> --
>
> Key: NETBEANS-5133
> URL: https://issues.apache.org/jira/browse/NETBEANS-5133
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Settings, platform - Plugin Manager
>Affects Versions: 12.1, 12.2
> Environment: macOS Big Sur 11.0.1
>Reporter: Jose Medeiros
>Priority: Critical
> Attachments: Screen Recording 2020-12-11 at 22.09.26.mov, Screen 
> Recording 2020-12-11 at 22.10.15.mov
>
>
> When running as a normal user, if you click on Netbeans->Preferences the 
> window will open, shake, freeze and not let you do anything. The same thing 
> happens with the Tools->Plugins. Running as super user it works perfectly. 
> Could it be trying to pop up an authentication window that never shows up? 
> See my answer at Stackoverflow 
> [https://stackoverflow.com/questions/61904617/access-to-root-application-support-macos-java/61994057#61994057]
>  if that's the case.



--
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-4974) PHP8 named arguments

2021-01-21 Thread Cyril VERLOOP (Jira)


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

Cyril VERLOOP commented on NETBEANS-4974:
-

Looks good, thanks.

> PHP8 named arguments
> 
>
> Key: NETBEANS-4974
> URL: https://issues.apache.org/jira/browse/NETBEANS-4974
> Project: NetBeans
>  Issue Type: Improvement
>Affects Versions: 11.3
>Reporter: Jayce
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: PHP8NamedArgument.jpg, nb-php80-named-argument-01.png, 
> nb-php80-named-argument-02.png
>
>
> Tested in latest build (netbeans-linux-143-on-20201030-release.zip30 oct. 
> 2020 05:40:08)
> Project opened in Netbeans is set to PHP8.
> Netbeans shows a syntax error on PHP8 named arguments.
> These lines are valid in PHP8:
> array_fill(start_index: 0, num: 100, value: 50); // From RFC
> setcookie(name: 'test', expires: time() + 60 * 60 * 2,); // other example



--
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] (NETBEANSINFRA-252) CLONE - Archive the old release artifacts.

2021-01-21 Thread Neil C Smith (Jira)
Neil C Smith created NETBEANSINFRA-252:
--

 Summary: CLONE - Archive the old release artifacts.
 Key: NETBEANSINFRA-252
 URL: https://issues.apache.org/jira/browse/NETBEANSINFRA-252
 Project: Apache NetBeans Infra
  Issue Type: Sub-task
  Components: Apache NetBeans Release Preparation Tasks
Affects Versions: Release Management 12.0
Reporter: Neil C Smith
Assignee: Neil C Smith
 Fix For: Release Management 12.0


Archive the old release artefacts, remembering that LTS releases should remain 
current throughout the year, so there should be two active releases for 9 
months.



--
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] (NETBEANSINFRA-257) CLONE - Announce merge window is reopened on master.

2021-01-21 Thread Neil C Smith (Jira)
Neil C Smith created NETBEANSINFRA-257:
--

 Summary: CLONE - Announce merge window is reopened on master.
 Key: NETBEANSINFRA-257
 URL: https://issues.apache.org/jira/browse/NETBEANSINFRA-257
 Project: Apache NetBeans Infra
  Issue Type: Sub-task
  Components: Apache NetBeans Release Preparation Tasks
Affects Versions: Release Management 12.0
Reporter: Neil C Smith
Assignee: Neil C Smith
 Fix For: Release Management 12.0






--
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] (NETBEANSINFRA-256) CLONE - Increment Spec Versions on Master Branch

2021-01-21 Thread Neil C Smith (Jira)
Neil C Smith created NETBEANSINFRA-256:
--

 Summary: CLONE - Increment Spec Versions on Master Branch
 Key: NETBEANSINFRA-256
 URL: https://issues.apache.org/jira/browse/NETBEANSINFRA-256
 Project: Apache NetBeans Infra
  Issue Type: Sub-task
  Components: Apache NetBeans Release Preparation Tasks
Affects Versions: Release Management 12.0
Reporter: Neil C Smith
Assignee: Neil C Smith
 Fix For: Release Management 12.0


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] [Created] (NETBEANSINFRA-255) CLONE - Snapshot of APIs for release

2021-01-21 Thread Neil C Smith (Jira)
Neil C Smith created NETBEANSINFRA-255:
--

 Summary: CLONE - Snapshot of APIs for release
 Key: NETBEANSINFRA-255
 URL: https://issues.apache.org/jira/browse/NETBEANSINFRA-255
 Project: Apache NetBeans Infra
  Issue Type: Sub-task
  Components: Apache NetBeans Release Preparation Tasks
Affects Versions: Release Management 12.0
Reporter: Neil C Smith
Assignee: Neil C Smith
 Fix For: Release Management 12.0


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] [Created] (NETBEANSINFRA-254) CLONE - Update the website for the new release

2021-01-21 Thread Neil C Smith (Jira)
Neil C Smith created NETBEANSINFRA-254:
--

 Summary: CLONE - Update the website for the new release
 Key: NETBEANSINFRA-254
 URL: https://issues.apache.org/jira/browse/NETBEANSINFRA-254
 Project: Apache NetBeans Infra
  Issue Type: Sub-task
  Components: Apache NetBeans Release Preparation Tasks
Affects Versions: Release Management 12.0
Reporter: Neil C Smith
Assignee: Geertjan Wielenga
 Fix For: Release Management 12.0






--
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] (NETBEANSINFRA-253) CLONE - Send out release announcements

2021-01-21 Thread Neil C Smith (Jira)
Neil C Smith created NETBEANSINFRA-253:
--

 Summary: CLONE - Send out release announcements
 Key: NETBEANSINFRA-253
 URL: https://issues.apache.org/jira/browse/NETBEANSINFRA-253
 Project: Apache NetBeans Infra
  Issue Type: Sub-task
  Components: Apache NetBeans Release Preparation Tasks
Affects Versions: Release Management 12.0
Reporter: Neil C Smith
Assignee: Neil C Smith
 Fix For: Release Management 12.0






--
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] (NETBEANSINFRA-240) CLONE - Update Json for release.

2021-01-21 Thread Neil C Smith (Jira)
Neil C Smith created NETBEANSINFRA-240:
--

 Summary: CLONE - Update Json for release.
 Key: NETBEANSINFRA-240
 URL: https://issues.apache.org/jira/browse/NETBEANSINFRA-240
 Project: Apache NetBeans Infra
  Issue Type: Sub-task
  Components: Apache NetBeans Release Preparation Tasks
Affects Versions: Release Management 12.0
Reporter: Neil C Smith
Assignee: Neil C Smith
 Fix For: Release Management 12.0


Update 
https://github.com/apache/netbeans-jenkins-lib/blob/master/meta/netbeansrelease.json
to reflect all information needed, update center, apido version ...



--
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] (NETBEANSINFRA-249) CLONE - Create a Location for Standard Distribution AUC

2021-01-21 Thread Neil C Smith (Jira)
Neil C Smith created NETBEANSINFRA-249:
--

 Summary: CLONE - Create a Location for Standard Distribution AUC
 Key: NETBEANSINFRA-249
 URL: https://issues.apache.org/jira/browse/NETBEANSINFRA-249
 Project: Apache NetBeans Infra
  Issue Type: Sub-task
  Components: Apache NetBeans Release Preparation Tasks
Affects Versions: Release Management 12.0
Reporter: Neil C Smith
Assignee: Neil C Smith
 Fix For: Release Management 12.0


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] [Created] (NETBEANSINFRA-239) CLONE - Branch master to release branch

2021-01-21 Thread Neil C Smith (Jira)
Neil C Smith created NETBEANSINFRA-239:
--

 Summary: CLONE - Branch master to release branch
 Key: NETBEANSINFRA-239
 URL: https://issues.apache.org/jira/browse/NETBEANSINFRA-239
 Project: Apache NetBeans Infra
  Issue Type: Sub-task
  Components: Apache NetBeans Release Preparation Tasks
Affects Versions: Release Management 12.0
Reporter: Neil C Smith
Assignee: Neil C Smith
 Fix For: Release Management 12.0


Create a release branch from master. Branch name is release followed by the 
version number excluding the dot

eg.

Apache NetBeans 11.0 - release110
Apache NetBeans 11.1 - release111
Apache NetBeans 12.0 - release120



--
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] (NETBEANSINFRA-242) CLONE - Manage beta

2021-01-21 Thread Neil C Smith (Jira)
Neil C Smith created NETBEANSINFRA-242:
--

 Summary: CLONE - Manage beta
 Key: NETBEANSINFRA-242
 URL: https://issues.apache.org/jira/browse/NETBEANSINFRA-242
 Project: Apache NetBeans Infra
  Issue Type: Sub-task
  Components: Apache NetBeans Release Preparation Tasks
Affects Versions: Release Management 12.0
Reporter: Neil C Smith
Assignee: Neil C Smith
 Fix For: Release Management 12.0


# Open PR between master and releaseXXX branch leading up to beta.
 # Merge PR to release branch when ready.
 # Add information and hash of beta under milestones in the release properties 
at 
[https://github.com/apache/netbeans-jenkins-lib/blob/master/meta/netbeansrelease.json]
 # Commit of beta info should trigger new build of beta on Jenkins.
 # Download and check build artefacts - make sure splash, etc. show correct 
beta version.
 # Email beta notification to dev@ and netcat@ lists, linking directly from 
build artefacts on Jenkins.



--
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] (NETBEANSINFRA-250) CLONE - Release Maven artefacts

2021-01-21 Thread Neil C Smith (Jira)
Neil C Smith created NETBEANSINFRA-250:
--

 Summary: CLONE - Release Maven artefacts
 Key: NETBEANSINFRA-250
 URL: https://issues.apache.org/jira/browse/NETBEANSINFRA-250
 Project: Apache NetBeans Infra
  Issue Type: Sub-task
  Components: Apache NetBeans Release Preparation Tasks
Affects Versions: Release Management 12.0
Reporter: Neil C Smith
Assignee: Neil C Smith
 Fix For: Release Management 12.0






--
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] (NETBEANSINFRA-251) CLONE - Release installers

2021-01-21 Thread Neil C Smith (Jira)
Neil C Smith created NETBEANSINFRA-251:
--

 Summary: CLONE - Release installers
 Key: NETBEANSINFRA-251
 URL: https://issues.apache.org/jira/browse/NETBEANSINFRA-251
 Project: Apache NetBeans Infra
  Issue Type: Sub-task
  Components: Apache NetBeans Release Preparation Tasks
Affects Versions: Release Management 12.0
Reporter: Neil C Smith
Assignee: John McDonnell
 Fix For: Release Management 12.0






--
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] (NETBEANSINFRA-238) Release NetBeans 12.3

2021-01-21 Thread Neil C Smith (Jira)
Neil C Smith created NETBEANSINFRA-238:
--

 Summary: Release NetBeans 12.3
 Key: NETBEANSINFRA-238
 URL: https://issues.apache.org/jira/browse/NETBEANSINFRA-238
 Project: Apache NetBeans Infra
  Issue Type: Task
  Components: Apache NetBeans Release Preparation Tasks
Affects Versions: Release Management 11.3
Reporter: Neil C Smith
Assignee: Neil C Smith
 Fix For: Release Management 12.1


This is the task of releasing Apache NetBeans 12.1



--
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] (NETBEANSINFRA-244) CLONE - Check the Critical issues

2021-01-21 Thread Neil C Smith (Jira)
Neil C Smith created NETBEANSINFRA-244:
--

 Summary: CLONE - Check the Critical issues
 Key: NETBEANSINFRA-244
 URL: https://issues.apache.org/jira/browse/NETBEANSINFRA-244
 Project: Apache NetBeans Infra
  Issue Type: Sub-task
  Components: Apache NetBeans Release Preparation Tasks
Affects Versions: Release Management 12.0
Reporter: Neil C Smith
Assignee: Neil C Smith
 Fix For: Release Management 12.0


 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] [Created] (NETBEANSINFRA-248) CLONE - Copy staged release artifacts to the release area.

2021-01-21 Thread Neil C Smith (Jira)
Neil C Smith created NETBEANSINFRA-248:
--

 Summary: CLONE - Copy staged release artifacts to the release area.
 Key: NETBEANSINFRA-248
 URL: https://issues.apache.org/jira/browse/NETBEANSINFRA-248
 Project: Apache NetBeans Infra
  Issue Type: Sub-task
  Components: Apache NetBeans Release Preparation Tasks
Affects Versions: Release Management 12.0
Reporter: Neil C Smith
Assignee: Neil C Smith
 Fix For: Release Management 12.0






--
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] (NETBEANSINFRA-241) CLONE - Update the Snap package descriptor files

2021-01-21 Thread Neil C Smith (Jira)
Neil C Smith created NETBEANSINFRA-241:
--

 Summary: CLONE - Update the Snap package descriptor files
 Key: NETBEANSINFRA-241
 URL: https://issues.apache.org/jira/browse/NETBEANSINFRA-241
 Project: Apache NetBeans Infra
  Issue Type: Sub-task
  Components: Apache NetBeans Release Preparation Tasks
Affects Versions: Release Management 12.0
Reporter: Neil C Smith
Assignee: Laszlo Kishalmi
 Fix For: Release Management 12.0


We have new hi-res frame images use the 512x512 one for the icon

Update the version number in the snapcraft.yaml and the netbeans.desktop files

In order to have the best out of the box experience add the following options 
to netbeans.conf:

-J-Djdk.gtk.version=2.2 -J-Dawt.useSystemAAFontSettings=on 
-J-Dplugin.manager.install.global=false



--
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] (NETBEANSINFRA-247) CLONE - Close PMC Vote Thread

2021-01-21 Thread Neil C Smith (Jira)
Neil C Smith created NETBEANSINFRA-247:
--

 Summary: CLONE - Close PMC Vote Thread
 Key: NETBEANSINFRA-247
 URL: https://issues.apache.org/jira/browse/NETBEANSINFRA-247
 Project: Apache NetBeans Infra
  Issue Type: Sub-task
  Components: Apache NetBeans Release Preparation Tasks
Affects Versions: Release Management 12.0
Reporter: Neil C Smith
Assignee: Neil C Smith
 Fix For: Release Management 12.0






--
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] (NETBEANSINFRA-243) CLONE - Check the Blocker issues

2021-01-21 Thread Neil C Smith (Jira)
Neil C Smith created NETBEANSINFRA-243:
--

 Summary: CLONE - Check the Blocker issues
 Key: NETBEANSINFRA-243
 URL: https://issues.apache.org/jira/browse/NETBEANSINFRA-243
 Project: Apache NetBeans Infra
  Issue Type: Sub-task
  Components: Apache NetBeans Release Preparation Tasks
Affects Versions: Release Management 12.0
Reporter: Neil C Smith
Assignee: Neil C Smith
 Fix For: Release Management 12.0


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] [Commented] (NETBEANS-4974) PHP8 named arguments

2021-01-21 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto commented on NETBEANS-4974:


 !nb-php80-named-argument-01.png!  !nb-php80-named-argument-02.png! 

I've just fixed the parser.

[~cyrilverloop]
Unfortunately, I'm not sure whether we can include this in the next release 
(12.3) because the feature freeze date comes soon. Maybe it's tomorrow or later.
However, you can use this feature in a dev version if the PR is merged.
Thanks.

> PHP8 named arguments
> 
>
> Key: NETBEANS-4974
> URL: https://issues.apache.org/jira/browse/NETBEANS-4974
> Project: NetBeans
>  Issue Type: Improvement
>Affects Versions: 11.3
>Reporter: Jayce
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: PHP8NamedArgument.jpg, nb-php80-named-argument-01.png, 
> nb-php80-named-argument-02.png
>
>
> Tested in latest build (netbeans-linux-143-on-20201030-release.zip30 oct. 
> 2020 05:40:08)
> Project opened in Netbeans is set to PHP8.
> Netbeans shows a syntax error on PHP8 named arguments.
> These lines are valid in PHP8:
> array_fill(start_index: 0, num: 100, value: 50); // From RFC
> setcookie(name: 'test', expires: time() + 60 * 60 * 2,); // other example



--
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] (NETBEANSINFRA-245) CLONE - Create voting candidate

2021-01-21 Thread Neil C Smith (Jira)
Neil C Smith created NETBEANSINFRA-245:
--

 Summary: CLONE - Create voting candidate
 Key: NETBEANSINFRA-245
 URL: https://issues.apache.org/jira/browse/NETBEANSINFRA-245
 Project: Apache NetBeans Infra
  Issue Type: Sub-task
  Components: Apache NetBeans Release Preparation Tasks
Affects Versions: Release Management 12.0
Reporter: Neil C Smith
Assignee: Neil C Smith
 Fix For: Release Management 12.0


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] [Created] (NETBEANSINFRA-246) CLONE - Create PMC Vote Thread

2021-01-21 Thread Neil C Smith (Jira)
Neil C Smith created NETBEANSINFRA-246:
--

 Summary: CLONE - Create PMC Vote Thread
 Key: NETBEANSINFRA-246
 URL: https://issues.apache.org/jira/browse/NETBEANSINFRA-246
 Project: Apache NetBeans Infra
  Issue Type: Sub-task
  Components: Apache NetBeans Release Preparation Tasks
Affects Versions: Release Management 12.0
Reporter: Neil C Smith
Assignee: Neil C Smith
 Fix For: Release Management 12.0






--
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-4974) PHP8 named arguments

2021-01-21 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto updated NETBEANS-4974:
---
Attachment: nb-php80-named-argument-02.png
nb-php80-named-argument-01.png

> PHP8 named arguments
> 
>
> Key: NETBEANS-4974
> URL: https://issues.apache.org/jira/browse/NETBEANS-4974
> Project: NetBeans
>  Issue Type: Improvement
>Affects Versions: 11.3
>Reporter: Jayce
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: PHP8NamedArgument.jpg, nb-php80-named-argument-01.png, 
> nb-php80-named-argument-02.png
>
>
> Tested in latest build (netbeans-linux-143-on-20201030-release.zip30 oct. 
> 2020 05:40:08)
> Project opened in Netbeans is set to PHP8.
> Netbeans shows a syntax error on PHP8 named arguments.
> These lines are valid in PHP8:
> array_fill(start_index: 0, num: 100, value: 50); // From RFC
> setcookie(name: 'test', expires: time() + 60 * 60 * 2,); // other example



--
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] [Reopened] (NETBEANS-4974) PHP8 named arguments

2021-01-21 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto reopened NETBEANS-4974:

  Assignee: Junichi Yamamoto

> PHP8 named arguments
> 
>
> Key: NETBEANS-4974
> URL: https://issues.apache.org/jira/browse/NETBEANS-4974
> Project: NetBeans
>  Issue Type: Improvement
>Affects Versions: 11.3
>Reporter: Jayce
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: PHP8NamedArgument.jpg, nb-php80-named-argument-01.png, 
> nb-php80-named-argument-02.png
>
>
> Tested in latest build (netbeans-linux-143-on-20201030-release.zip30 oct. 
> 2020 05:40:08)
> Project opened in Netbeans is set to PHP8.
> Netbeans shows a syntax error on PHP8 named arguments.
> These lines are valid in PHP8:
> array_fill(start_index: 0, num: 100, value: 50); // From RFC
> setcookie(name: 'test', expires: time() + 60 * 60 * 2,); // other example



--
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-5268) Alter Welcome Screen colours for readability

2021-01-21 Thread ASF GitHub Bot (Jira)


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

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

> Alter Welcome Screen colours for readability
> 
>
> Key: NETBEANS-5268
> URL: https://issues.apache.org/jira/browse/NETBEANS-5268
> Project: NetBeans
>  Issue Type: Improvement
>  Components: FlatLaf, ide - Welcome
>Affects Versions: Next, 12.2
>Reporter: Martin H.
>Priority: Major
>  Labels: pull-request-available
> Attachments: date-motif-suggested.png, date-motif.png, 
> flatlaf-current.png, flatlaf-suggested.png, flatlafdark-current.png, 
> flatlafdark-suggested.png
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> I would like to suggest the following colour changes to FlatLaf Light and 
> Dark for the Welcome Screen:
> FlatLaf - Change background colour (instead of altering the image just for 
> this theme) to make the logo stand out.
> Current:
> !flatlaf-current.png!
> Suggested:
> !flatlaf-suggested.png!
> FlatLafDark - use actual dark image asset colours for content banner in order 
> to avoid title "cutting".
> Current:
> !flatlafdark-current.png!
> Suggested:
> !flatlafdark-suggested.png!
>  In addition, the default date color may be changed from orange to dark red 
> (icon color) to improve consistency and readability, especially with Motif 
> theme.
> Current:
> !date-motif.png!
> Suggested:
>   !date-motif-suggested.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-4974) PHP8 named arguments

2021-01-21 Thread Cyril VERLOOP (Jira)


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

Cyril VERLOOP commented on NETBEANS-4974:
-

[~junichi11], i just wanted to help you with use cases. It seems that i can not 
attach a new file though.

Thanks for your work anyway.

> PHP8 named arguments
> 
>
> Key: NETBEANS-4974
> URL: https://issues.apache.org/jira/browse/NETBEANS-4974
> Project: NetBeans
>  Issue Type: Improvement
>Affects Versions: 11.3
>Reporter: Jayce
>Priority: Major
> Attachments: PHP8NamedArgument.jpg
>
>
> Tested in latest build (netbeans-linux-143-on-20201030-release.zip30 oct. 
> 2020 05:40:08)
> Project opened in Netbeans is set to PHP8.
> Netbeans shows a syntax error on PHP8 named arguments.
> These lines are valid in PHP8:
> array_fill(start_index: 0, num: 100, value: 50); // From RFC
> setcookie(name: 'test', expires: time() + 60 * 60 * 2,); // other example



--
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-5268) Alter Welcome Screen colours for readability

2021-01-21 Thread Martin H. (Jira)


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

Martin H. updated NETBEANS-5268:

Summary: Alter Welcome Screen colours for readability  (was: Alter Welcome 
Screen colours for better readability)

> Alter Welcome Screen colours for readability
> 
>
> Key: NETBEANS-5268
> URL: https://issues.apache.org/jira/browse/NETBEANS-5268
> Project: NetBeans
>  Issue Type: Improvement
>  Components: FlatLaf, ide - Welcome
>Affects Versions: Next, 12.2
>Reporter: Martin H.
>Priority: Major
> Attachments: date-motif-suggested.png, date-motif.png, 
> flatlaf-current.png, flatlaf-suggested.png, flatlafdark-current.png, 
> flatlafdark-suggested.png
>
>
> I would like to suggest the following colour changes to FlatLaf Light and 
> Dark for the Welcome Screen:
> FlatLaf - Change background colour (instead of altering the image just for 
> this theme) to make the logo stand out.
> Current:
> !flatlaf-current.png!
> Suggested:
> !flatlaf-suggested.png!
> FlatLafDark - use actual dark image asset colours for content banner in order 
> to avoid title "cutting".
> Current:
> !flatlafdark-current.png!
> Suggested:
> !flatlafdark-suggested.png!
>  In addition, the default date color may be changed from orange to dark red 
> (icon color) to improve consistency and readability, especially with Motif 
> theme.
> Current:
> !date-motif.png!
> Suggested:
>   !date-motif-suggested.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-5268) Alter Welcome Screen colours for better readability

2021-01-21 Thread Martin H. (Jira)


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

Martin H. updated NETBEANS-5268:

Summary: Alter Welcome Screen colours for better readability  (was: Alter 
Welcome Screen colours for FlatLaf)

> Alter Welcome Screen colours for better readability
> ---
>
> Key: NETBEANS-5268
> URL: https://issues.apache.org/jira/browse/NETBEANS-5268
> Project: NetBeans
>  Issue Type: Improvement
>  Components: FlatLaf, ide - Welcome
>Affects Versions: Next, 12.2
>Reporter: Martin H.
>Priority: Major
> Attachments: date-motif-suggested.png, date-motif.png, 
> flatlaf-current.png, flatlaf-suggested.png, flatlafdark-current.png, 
> flatlafdark-suggested.png
>
>
> I would like to suggest the following colour changes to FlatLaf Light and 
> Dark for the Welcome Screen:
> FlatLaf - Change background colour (instead of altering the image just for 
> this theme) to make the logo stand out.
> Current:
> !flatlaf-current.png!
> Suggested:
> !flatlaf-suggested.png!
> FlatLafDark - use actual dark image asset colours for content banner in order 
> to avoid title "cutting".
> Current:
> !flatlafdark-current.png!
> Suggested:
> !flatlafdark-suggested.png!
>  In addition, the default date color may be changed from orange to dark red 
> (icon color) to improve consistency and readability, especially with Motif 
> theme.
> Current:
> !date-motif.png!
> Suggested:
>   !date-motif-suggested.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-5268) Alter Welcome Screen colours for FlatLaf

2021-01-21 Thread Martin H. (Jira)


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

Martin H. updated NETBEANS-5268:

Attachment: (was: date-motif-suggested.png)

> Alter Welcome Screen colours for FlatLaf
> 
>
> Key: NETBEANS-5268
> URL: https://issues.apache.org/jira/browse/NETBEANS-5268
> Project: NetBeans
>  Issue Type: Improvement
>  Components: FlatLaf, ide - Welcome
>Affects Versions: Next, 12.2
>Reporter: Martin H.
>Priority: Major
> Attachments: date-motif-suggested.png, date-motif.png, 
> flatlaf-current.png, flatlaf-suggested.png, flatlafdark-current.png, 
> flatlafdark-suggested.png
>
>
> I would like to suggest the following colour changes to FlatLaf Light and 
> Dark for the Welcome Screen:
> FlatLaf - Change background colour (instead of altering the image just for 
> this theme) to make the logo stand out.
> Current:
> !flatlaf-current.png!
> Suggested:
> !flatlaf-suggested.png!
> FlatLafDark - use actual dark image asset colours for content banner in order 
> to avoid title "cutting".
> Current:
> !flatlafdark-current.png!
> Suggested:
> !flatlafdark-suggested.png!
>  In addition, the default date color may be changed from orange to dark red 
> (icon color) to improve consistency and readability, especially with Motif 
> theme.
> Current:
> !date-motif.png!
> Suggested:
>   !date-motif-suggested.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-5268) Alter Welcome Screen colours for FlatLaf

2021-01-21 Thread Martin H. (Jira)


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

Martin H. updated NETBEANS-5268:

Description: 
I would like to suggest the following colour changes to FlatLaf Light and Dark 
for the Welcome Screen:

FlatLaf - Change background colour (instead of altering the image just for this 
theme) to make the logo stand out.

Current:

!flatlaf-current.png!

Suggested:

!flatlaf-suggested.png!

FlatLafDark - use actual dark image asset colours for content banner in order 
to avoid title "cutting".

Current:

!flatlafdark-current.png!

Suggested:

!flatlafdark-suggested.png!

 In addition, the default date color may be changed from orange to dark red 
(icon color) to improve consistency and readability, especially with Motif 
theme.

Current:

!date-motif.png!

Suggested:

  !date-motif-suggested.png!

  was:
I would like to suggest the following colour changes to FlatLaf Light and Dark 
for the Welcome Screen:

FlatLaf - Change background colour (instead of altering the image just for this 
theme) to make the logo stand out.

Current:

!flatlaf-current.png!

Suggested:

!flatlaf-suggested.png!

FlatLafDark - use actual dark image asset colours for content banner in order 
to avoid title "cutting".

Current:

!flatlafdark-current.png!

Suggested:

!flatlafdark-suggested.png!

 In addition, the default date color may be changed from orange to dark red 
(icon color) to improve consistency and readability, especially with Motif 
theme.

Current:

!date-motif.png!

Suggested:

 


> Alter Welcome Screen colours for FlatLaf
> 
>
> Key: NETBEANS-5268
> URL: https://issues.apache.org/jira/browse/NETBEANS-5268
> Project: NetBeans
>  Issue Type: Improvement
>  Components: FlatLaf, ide - Welcome
>Affects Versions: Next, 12.2
>Reporter: Martin H.
>Priority: Major
> Attachments: date-motif-suggested.png, date-motif.png, 
> flatlaf-current.png, flatlaf-suggested.png, flatlafdark-current.png, 
> flatlafdark-suggested.png
>
>
> I would like to suggest the following colour changes to FlatLaf Light and 
> Dark for the Welcome Screen:
> FlatLaf - Change background colour (instead of altering the image just for 
> this theme) to make the logo stand out.
> Current:
> !flatlaf-current.png!
> Suggested:
> !flatlaf-suggested.png!
> FlatLafDark - use actual dark image asset colours for content banner in order 
> to avoid title "cutting".
> Current:
> !flatlafdark-current.png!
> Suggested:
> !flatlafdark-suggested.png!
>  In addition, the default date color may be changed from orange to dark red 
> (icon color) to improve consistency and readability, especially with Motif 
> theme.
> Current:
> !date-motif.png!
> Suggested:
>   !date-motif-suggested.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-5268) Alter Welcome Screen colours for FlatLaf

2021-01-21 Thread Martin H. (Jira)


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

Martin H. updated NETBEANS-5268:

Attachment: date-motif-suggested.png

> Alter Welcome Screen colours for FlatLaf
> 
>
> Key: NETBEANS-5268
> URL: https://issues.apache.org/jira/browse/NETBEANS-5268
> Project: NetBeans
>  Issue Type: Improvement
>  Components: FlatLaf, ide - Welcome
>Affects Versions: Next, 12.2
>Reporter: Martin H.
>Priority: Major
> Attachments: date-motif-suggested.png, date-motif-suggested.png, 
> date-motif.png, flatlaf-current.png, flatlaf-suggested.png, 
> flatlafdark-current.png, flatlafdark-suggested.png
>
>
> I would like to suggest the following colour changes to FlatLaf Light and 
> Dark for the Welcome Screen:
> FlatLaf - Change background colour (instead of altering the image just for 
> this theme) to make the logo stand out.
> Current:
> !flatlaf-current.png!
> Suggested:
> !flatlaf-suggested.png!
> FlatLafDark - use actual dark image asset colours for content banner in order 
> to avoid title "cutting".
> Current:
> !flatlafdark-current.png!
> Suggested:
> !flatlafdark-suggested.png!
>  In addition, the default date color may be changed from orange to dark red 
> (icon color) to improve consistency and readability, especially with Motif 
> theme.
> Current:
> !date-motif.png!
> Suggested:
>  



--
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-5268) Alter Welcome Screen colours for FlatLaf

2021-01-21 Thread Martin H. (Jira)


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

Martin H. updated NETBEANS-5268:

Attachment: date-motif.png

> Alter Welcome Screen colours for FlatLaf
> 
>
> Key: NETBEANS-5268
> URL: https://issues.apache.org/jira/browse/NETBEANS-5268
> Project: NetBeans
>  Issue Type: Improvement
>  Components: FlatLaf, ide - Welcome
>Affects Versions: Next, 12.2
>Reporter: Martin H.
>Priority: Major
> Attachments: date-motif-suggested.png, date-motif-suggested.png, 
> date-motif.png, flatlaf-current.png, flatlaf-suggested.png, 
> flatlafdark-current.png, flatlafdark-suggested.png
>
>
> I would like to suggest the following colour changes to FlatLaf Light and 
> Dark for the Welcome Screen:
> FlatLaf - Change background colour (instead of altering the image just for 
> this theme) to make the logo stand out.
> Current:
> !flatlaf-current.png!
> Suggested:
> !flatlaf-suggested.png!
> FlatLafDark - use actual dark image asset colours for content banner in order 
> to avoid title "cutting".
> Current:
> !flatlafdark-current.png!
> Suggested:
> !flatlafdark-suggested.png!
>  In addition, the default date color may be changed from orange to dark red 
> (icon color) to improve consistency and readability, especially with Motif 
> theme.
> Current:
> !date-motif.png!
> Suggested:
>  



--
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-5268) Alter Welcome Screen colours for FlatLaf

2021-01-21 Thread Martin H. (Jira)


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

Martin H. updated NETBEANS-5268:

Attachment: (was: date-motif.png)

> Alter Welcome Screen colours for FlatLaf
> 
>
> Key: NETBEANS-5268
> URL: https://issues.apache.org/jira/browse/NETBEANS-5268
> Project: NetBeans
>  Issue Type: Improvement
>  Components: FlatLaf, ide - Welcome
>Affects Versions: Next, 12.2
>Reporter: Martin H.
>Priority: Major
> Attachments: date-motif-suggested.png, flatlaf-current.png, 
> flatlaf-suggested.png, flatlafdark-current.png, flatlafdark-suggested.png
>
>
> I would like to suggest the following colour changes to FlatLaf Light and 
> Dark for the Welcome Screen:
> FlatLaf - Change background colour (instead of altering the image just for 
> this theme) to make the logo stand out.
> Current:
> !flatlaf-current.png!
> Suggested:
> !flatlaf-suggested.png!
> FlatLafDark - use actual dark image asset colours for content banner in order 
> to avoid title "cutting".
> Current:
> !flatlafdark-current.png!
> Suggested:
> !flatlafdark-suggested.png!
>  In addition, the default date color may be changed from orange to dark red 
> (icon color) to improve consistency and readability, especially with Motif 
> theme.
> Current:
> !date-motif.png!
> Suggested:
>  



--
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-5268) Alter Welcome Screen colours for FlatLaf

2021-01-21 Thread Martin H. (Jira)


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

Martin H. updated NETBEANS-5268:

Attachment: date-motif-suggested.png

> Alter Welcome Screen colours for FlatLaf
> 
>
> Key: NETBEANS-5268
> URL: https://issues.apache.org/jira/browse/NETBEANS-5268
> Project: NetBeans
>  Issue Type: Improvement
>  Components: FlatLaf, ide - Welcome
>Affects Versions: Next, 12.2
>Reporter: Martin H.
>Priority: Major
> Attachments: date-motif-suggested.png, flatlaf-current.png, 
> flatlaf-suggested.png, flatlafdark-current.png, flatlafdark-suggested.png
>
>
> I would like to suggest the following colour changes to FlatLaf Light and 
> Dark for the Welcome Screen:
> FlatLaf - Change background colour (instead of altering the image just for 
> this theme) to make the logo stand out.
> Current:
> !flatlaf-current.png!
> Suggested:
> !flatlaf-suggested.png!
> FlatLafDark - use actual dark image asset colours for content banner in order 
> to avoid title "cutting".
> Current:
> !flatlafdark-current.png!
> Suggested:
> !flatlafdark-suggested.png!
>  In addition, the default date color may be changed from orange to dark red 
> (icon color) to improve consistency and readability, especially with Motif 
> theme.
> Current:
> !date-motif.png!
> Suggested:
>  



--
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-5268) Alter Welcome Screen colours for FlatLaf

2021-01-21 Thread Martin H. (Jira)


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

Martin H. updated NETBEANS-5268:

Attachment: (was: date-motif-suggested)

> Alter Welcome Screen colours for FlatLaf
> 
>
> Key: NETBEANS-5268
> URL: https://issues.apache.org/jira/browse/NETBEANS-5268
> Project: NetBeans
>  Issue Type: Improvement
>  Components: FlatLaf, ide - Welcome
>Affects Versions: Next, 12.2
>Reporter: Martin H.
>Priority: Major
> Attachments: date-motif.png, flatlaf-current.png, 
> flatlaf-suggested.png, flatlafdark-current.png, flatlafdark-suggested.png
>
>
> I would like to suggest the following colour changes to FlatLaf Light and 
> Dark for the Welcome Screen:
> FlatLaf - Change background colour (instead of altering the image just for 
> this theme) to make the logo stand out.
> Current:
> !flatlaf-current.png!
> Suggested:
> !flatlaf-suggested.png!
> FlatLafDark - use actual dark image asset colours for content banner in order 
> to avoid title "cutting".
> Current:
> !flatlafdark-current.png!
> Suggested:
> !flatlafdark-suggested.png!
>  In addition, the default date color may be changed from orange to dark red 
> (icon color) to improve consistency and readability, especially with Motif 
> theme.
> Current:
> !date-motif.png!
> Suggested:
>  



--
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-5268) Alter Welcome Screen colours for FlatLaf

2021-01-21 Thread Martin H. (Jira)


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

Martin H. updated NETBEANS-5268:

Attachment: date-motif-suggested

> Alter Welcome Screen colours for FlatLaf
> 
>
> Key: NETBEANS-5268
> URL: https://issues.apache.org/jira/browse/NETBEANS-5268
> Project: NetBeans
>  Issue Type: Improvement
>  Components: FlatLaf, ide - Welcome
>Affects Versions: Next, 12.2
>Reporter: Martin H.
>Priority: Major
> Attachments: date-motif.png, flatlaf-current.png, 
> flatlaf-suggested.png, flatlafdark-current.png, flatlafdark-suggested.png
>
>
> I would like to suggest the following colour changes to FlatLaf Light and 
> Dark for the Welcome Screen:
> FlatLaf - Change background colour (instead of altering the image just for 
> this theme) to make the logo stand out.
> Current:
> !flatlaf-current.png!
> Suggested:
> !flatlaf-suggested.png!
> FlatLafDark - use actual dark image asset colours for content banner in order 
> to avoid title "cutting"
> Current:
> !flatlafdark-current.png!
> Suggested:
> !flatlafdark-suggested.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-5268) Alter Welcome Screen colours for FlatLaf

2021-01-21 Thread Martin H. (Jira)


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

Martin H. updated NETBEANS-5268:

Description: 
I would like to suggest the following colour changes to FlatLaf Light and Dark 
for the Welcome Screen:

FlatLaf - Change background colour (instead of altering the image just for this 
theme) to make the logo stand out.

Current:

!flatlaf-current.png!

Suggested:

!flatlaf-suggested.png!

FlatLafDark - use actual dark image asset colours for content banner in order 
to avoid title "cutting".

Current:

!flatlafdark-current.png!

Suggested:

!flatlafdark-suggested.png!

 In addition, the default date color may be changed from orange to dark red 
(icon color) to improve consistency and readability, especially with Motif 
theme.

Current:

!date-motif.png!

Suggested:

 

  was:
I would like to suggest the following colour changes to FlatLaf Light and Dark 
for the Welcome Screen:

FlatLaf - Change background colour (instead of altering the image just for this 
theme) to make the logo stand out.

Current:

!flatlaf-current.png!

Suggested:

!flatlaf-suggested.png!

FlatLafDark - use actual dark image asset colours for content banner in order 
to avoid title "cutting"

Current:

!flatlafdark-current.png!

Suggested:

!flatlafdark-suggested.png!

 


> Alter Welcome Screen colours for FlatLaf
> 
>
> Key: NETBEANS-5268
> URL: https://issues.apache.org/jira/browse/NETBEANS-5268
> Project: NetBeans
>  Issue Type: Improvement
>  Components: FlatLaf, ide - Welcome
>Affects Versions: Next, 12.2
>Reporter: Martin H.
>Priority: Major
> Attachments: date-motif.png, flatlaf-current.png, 
> flatlaf-suggested.png, flatlafdark-current.png, flatlafdark-suggested.png
>
>
> I would like to suggest the following colour changes to FlatLaf Light and 
> Dark for the Welcome Screen:
> FlatLaf - Change background colour (instead of altering the image just for 
> this theme) to make the logo stand out.
> Current:
> !flatlaf-current.png!
> Suggested:
> !flatlaf-suggested.png!
> FlatLafDark - use actual dark image asset colours for content banner in order 
> to avoid title "cutting".
> Current:
> !flatlafdark-current.png!
> Suggested:
> !flatlafdark-suggested.png!
>  In addition, the default date color may be changed from orange to dark red 
> (icon color) to improve consistency and readability, especially with Motif 
> theme.
> Current:
> !date-motif.png!
> Suggested:
>  



--
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-5268) Alter Welcome Screen colours for FlatLaf

2021-01-21 Thread Martin H. (Jira)


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

Martin H. updated NETBEANS-5268:

Attachment: date-motif.png

> Alter Welcome Screen colours for FlatLaf
> 
>
> Key: NETBEANS-5268
> URL: https://issues.apache.org/jira/browse/NETBEANS-5268
> Project: NetBeans
>  Issue Type: Improvement
>  Components: FlatLaf, ide - Welcome
>Affects Versions: Next, 12.2
>Reporter: Martin H.
>Priority: Major
> Attachments: date-motif.png, flatlaf-current.png, 
> flatlaf-suggested.png, flatlafdark-current.png, flatlafdark-suggested.png
>
>
> I would like to suggest the following colour changes to FlatLaf Light and 
> Dark for the Welcome Screen:
> FlatLaf - Change background colour (instead of altering the image just for 
> this theme) to make the logo stand out.
> Current:
> !flatlaf-current.png!
> Suggested:
> !flatlaf-suggested.png!
> FlatLafDark - use actual dark image asset colours for content banner in order 
> to avoid title "cutting"
> Current:
> !flatlafdark-current.png!
> Suggested:
> !flatlafdark-suggested.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-4974) PHP8 named arguments

2021-01-21 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto commented on NETBEANS-4974:


I'm working on it now.  Please wait a while.

> PHP8 named arguments
> 
>
> Key: NETBEANS-4974
> URL: https://issues.apache.org/jira/browse/NETBEANS-4974
> Project: NetBeans
>  Issue Type: Improvement
>Affects Versions: 11.3
>Reporter: Jayce
>Priority: Major
> Attachments: PHP8NamedArgument.jpg
>
>
> Tested in latest build (netbeans-linux-143-on-20201030-release.zip30 oct. 
> 2020 05:40:08)
> Project opened in Netbeans is set to PHP8.
> Netbeans shows a syntax error on PHP8 named arguments.
> These lines are valid in PHP8:
> array_fill(start_index: 0, num: 100, value: 50); // From RFC
> setcookie(name: 'test', expires: time() + 60 * 60 * 2,); // other example



--
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 (e7d693d -> 894e4b5)

2021-01-21 Thread sdedic
This is an automated email from the ASF dual-hosted git repository.

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


from e7d693d  Fix broken links to images in the extension's readme. (#2686)
 new cf4ee2f  Core execution engine passes default Lookup to task. 
Recommendation added to spec.
 new 167d3da  Server tests should run in headless mode.
 new 9fabbae  DAP listens even on delayed operation's ProgressHandle 
creation.
 new 970712d  Modules needed to properly terminate mvn build/run process 
subtree.
 new 0b3e340  HID test extended to cover Lookup propagation. Core Execution 
engine tested with Lookup.
 new 6c90ce5  Add functional test for maven-controlled start/stop.
 new 1c6a14d  Fixing test for dev env: extra cluster ignored.
 new 894e4b5  Merge pull request #2679 from sdedic/lsp/maven-execution-stop

The 4900 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../java.lsp.server/nbcode/integration/manifest.mf |   1 +
 .../nbcode/nbproject/platform.properties   |   2 -
 .../server/debugging/launch/NbLaunchDelegate.java  |  15 ++-
 .../lsp/server/progress/LspInternalHandle.java |  20 +++-
 .../java/lsp/server/progress/OperationContext.java | 112 +-
 .../server/progress/ProgressOperationEvent.java|  64 ++
 .../server/progress/ProgressOperationListener.java |  45 +++
 .../java/lsp/server/protocol/ServerTest.java   |   1 +
 java/java.lsp.server/vscode/package-lock.json  |  31 -
 java/java.lsp.server/vscode/package.json   |   8 +-
 .../vscode/src/test/suite/extension.test.ts|  94 ++-
 platform/core.execution/manifest.mf|   4 +-
 .../netbeans/core/execution/ExecutionEngine.java   |   2 +-
 .../netbeans/core/execution/RunClassThread.java|  60 ++
 .../execution/CoreExecutionCompatibilityTest.java  |   3 +-
 .../openide.execution/nbproject/project.properties |   2 +-
 .../src/org/openide/execution/ExecutionEngine.java |  24 ++--
 .../execution/ExecutionCompatibilityTest.java  |  12 +-
 .../org/openide/execution/ExecutionEngineHid.java  | 129 +++--
 19 files changed, 539 insertions(+), 90 deletions(-)
 create mode 100644 
java/java.lsp.server/src/org/netbeans/modules/java/lsp/server/progress/ProgressOperationEvent.java
 create mode 100644 
java/java.lsp.server/src/org/netbeans/modules/java/lsp/server/progress/ProgressOperationListener.java


-
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-5259) Tried to use the Projects window float then back to unfloat on the right side, left side etc..

2021-01-21 Thread Neil C Smith (Jira)


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

Neil C Smith edited comment on NETBEANS-5259 at 1/21/21, 12:37 PM:
---

Unfortunately {{java.lang.UnsatisfiedLinkError: libjawt.so: cannot open shared 
object file: No such file or directory}} is an error that seems to happen with 
stock OpenJDK on various Linux distros including Ubuntu, and isn't specific to 
NetBeans. Not sure if it's the full cause or could be handled better though.


was (Author: neilcsmith):
Unfortunately {{java.lang.UnsatisfiedLinkError: libjawt.so: cannot open shared 
object file: No such file or directory}} is an error that seems to happen with 
stock OpenJDK on various Linux distros including Ubuntu. Not sure if it's full 
cause or could be handled better.

> Tried to use the Projects window float then back to unfloat on the right 
> side, left side etc..
> --
>
> Key: NETBEANS-5259
> URL: https://issues.apache.org/jira/browse/NETBEANS-5259
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.2
>Reporter: M Shoaib Qureshi
>Priority: Critical
>  Labels: Editor, interface, project-explorer
> Attachments: Netbeans bug, netbeansbug.png
>
>
> I have dual screen and wanted to use full width of primary screen and use 
> float window to to secondary screen . after usage, i tried to unfloat the 
> projects window and put the window on the right side of the netbeans area.
> The Netbeans got stuck and for considerable time , which blocked my 
> development.
> THen a window of bug reporting appeared so I am trying to report the bug. I 
> have used NEtbeans for more than 7-8 years and only use netbeans for all my 
> development.
>  
> Thanks.



--
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-5259) Tried to use the Projects window float then back to unfloat on the right side, left side etc..

2021-01-21 Thread Neil C Smith (Jira)


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

Neil C Smith commented on NETBEANS-5259:


Unfortunately {{java.lang.UnsatisfiedLinkError: libjawt.so: cannot open shared 
object file: No such file or directory}} is an error that seems to happen with 
stock OpenJDK on various Linux distros including Ubuntu. Not sure if it's full 
cause or could be handled better.

> Tried to use the Projects window float then back to unfloat on the right 
> side, left side etc..
> --
>
> Key: NETBEANS-5259
> URL: https://issues.apache.org/jira/browse/NETBEANS-5259
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.2
>Reporter: M Shoaib Qureshi
>Priority: Critical
>  Labels: Editor, interface, project-explorer
> Attachments: Netbeans bug, netbeansbug.png
>
>
> I have dual screen and wanted to use full width of primary screen and use 
> float window to to secondary screen . after usage, i tried to unfloat the 
> projects window and put the window on the right side of the netbeans area.
> The Netbeans got stuck and for considerable time , which blocked my 
> development.
> THen a window of bug reporting appeared so I am trying to report the bug. I 
> have used NEtbeans for more than 7-8 years and only use netbeans for all my 
> development.
>  
> Thanks.



--
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-5162) NetBean 12.2 includes an incompatible bundled version of maven (3.6.0)

2021-01-21 Thread Neil C Smith (Jira)


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

Neil C Smith updated NETBEANS-5162:
---
Component/s: (was: cnd - Debugger)
 projects - Maven

> NetBean 12.2 includes an incompatible bundled version of maven (3.6.0) 
> ---
>
> Key: NETBEANS-5162
> URL: https://issues.apache.org/jira/browse/NETBEANS-5162
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 12.0, 12.1, 12.2
>Reporter: MALIET Yves
>Priority: Blocker
>
> I have no problem to build a project but not able to debug it (java project)
> I'm facing the same issue as the MNG-6970 "The syntax of the command is 
> incorrect"
> I also have a Netbeans 11.3 installed on the same machine, if I force 12.2 to 
> use the maven bundled with 11.3 (maven v 3.3.9), the debugger works like a 
> charm in 12.2.



--
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-4232) Have to restart NetBeans to Change JDK

2021-01-21 Thread Neil C Smith (Jira)


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

Neil C Smith updated NETBEANS-4232:
---
Priority: Major  (was: Blocker)

> Have to restart NetBeans to Change JDK
> --
>
> Key: NETBEANS-4232
> URL: https://issues.apache.org/jira/browse/NETBEANS-4232
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - JDK Problems, projects - Maven
>Affects Versions: 12.0, 11.3, 12.1, 12.2
> Environment: Windows 10
>Reporter: KoKo
>Priority: Major
> Attachments: change java dependencies.png
>
>
> To change the *Jave Dependencies* of a *Maven* project, choose another JDK 
> via -Options > Java > Maven > Default JDK- *Properties > Build > Compiler > 
> Java Platform*, but it doesn't work at once. I must restart the IDE, which is 
> annoying!  
> !change java dependencies.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-5109) Remove distribution of nbjavac from apache controlled infrastructure

2021-01-21 Thread Neil C Smith (Jira)


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

Neil C Smith commented on NETBEANS-5109:


[~matthiasblaesing] OK, the specifically relevant bit - can we add the wrapper 
NBMs to Maven as part of this or not? Understanding how and why we ended up 
distributing nb-javac via OSUOSL during 11.2, as something of a quick fix*, 
seems highly relevant to resolving this properly, along with the related 
knock-on issues it's caused. *- not a comment on [~jlahoda] implementation!

> Remove distribution of nbjavac from apache controlled infrastructure
> 
>
> Key: NETBEANS-5109
> URL: https://issues.apache.org/jira/browse/NETBEANS-5109
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Compiler
>Affects Versions: 12.3
>Reporter: Matthias Bläsing
>Assignee: Matthias Bläsing
>Priority: Blocker
>
> The ASF has a pretty clear opinion about the handling of the GPLv2-CPE. There 
> might be an option to distribute it, but not out of the box. After the 
> transition of NetBeans from oracle to the ASF there was a timeframe were use 
> of the Oregon State University was ok, as the transition was happening. I 
> think we stretched that limit to the max and thus I consider this a blocker 
> for the next release. The nbjavac needs to be moved of ASF controlled 
> infrastructure.
> There are various options:
> - Oracle could publish nbjavac to maven central
> - Oracle could provide a custom updatecenter distributing the nbjavac
> - Oracle could relicense javac
> - Apache NetBeans could switch to the eclipse java development tools
> Not all of these options are realistic, but publishing to maven central is 
> perfectly doable.
> I'll mark this as a blocker for next release, so it is not ignored.



--
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-5271) JDK javadoc uses wrong URL in external web browser

2021-01-21 Thread Dragan Bjedov (Jira)


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

Dragan Bjedov edited comment on NETBEANS-5271 at 1/21/21, 12:00 PM:


For me javadoc is not shown in popup javadoc window.

I see downloading HTTP javadoc for second or two in status line.

!image-2021-01-21-13-00-00-792.png!


was (Author: draganbje...@gmail.com):
For javadoc is not correct in popup javadoc.

I see downloding HTTP javadoc for second or two in status line.

!image-2021-01-21-13-00-00-792.png!

> JDK javadoc uses wrong URL in external web browser
> --
>
> Key: NETBEANS-5271
> URL: https://issues.apache.org/jira/browse/NETBEANS-5271
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Javadoc
>Affects Versions: 12.2
> Environment: NetBeans 12.2 on JDK 11 running under Debian Linux.
>Reporter: Glenn Holmer
>Priority: Major
> Attachments: image-2021-01-21-13-00-00-792.png
>
>
> Steps to reproduce:
> 0) Hit ctrl-space on e.g. System.out.println(). Popup Javadoc appears 
> correctly.
> 1) Click "Show documentation in external web browser" button (second from 
> right in popup toolbar).
> 2) Browser will report a 404 because the URL is
> [https://docs.oracle.com/en/java/javase/11/docs/api/java/io/PrintStream.html]
> instead of
> [https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/PrintStream.html]
> This appears to happen with all base classes, e.g.
> [https://docs.oracle.com/en/java/javase/11/docs/api/java/lang/Math.html]
> instead of
> [https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Math.html]
>  



--
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-5271) JDK javadoc uses wrong URL in external web browser

2021-01-21 Thread Dragan Bjedov (Jira)


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

Dragan Bjedov commented on NETBEANS-5271:
-

For javadoc is not correct in popup javadoc.

I see downloding HTTP javadoc for second or two in status line.

!image-2021-01-21-13-00-00-792.png!

> JDK javadoc uses wrong URL in external web browser
> --
>
> Key: NETBEANS-5271
> URL: https://issues.apache.org/jira/browse/NETBEANS-5271
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Javadoc
>Affects Versions: 12.2
> Environment: NetBeans 12.2 on JDK 11 running under Debian Linux.
>Reporter: Glenn Holmer
>Priority: Major
> Attachments: image-2021-01-21-13-00-00-792.png
>
>
> Steps to reproduce:
> 0) Hit ctrl-space on e.g. System.out.println(). Popup Javadoc appears 
> correctly.
> 1) Click "Show documentation in external web browser" button (second from 
> right in popup toolbar).
> 2) Browser will report a 404 because the URL is
> [https://docs.oracle.com/en/java/javase/11/docs/api/java/io/PrintStream.html]
> instead of
> [https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/PrintStream.html]
> This appears to happen with all base classes, e.g.
> [https://docs.oracle.com/en/java/javase/11/docs/api/java/lang/Math.html]
> instead of
> [https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Math.html]
>  



--
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-5271) JDK javadoc uses wrong URL in external web browser

2021-01-21 Thread Dragan Bjedov (Jira)


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

Dragan Bjedov updated NETBEANS-5271:

Attachment: image-2021-01-21-13-00-00-792.png

> JDK javadoc uses wrong URL in external web browser
> --
>
> Key: NETBEANS-5271
> URL: https://issues.apache.org/jira/browse/NETBEANS-5271
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Javadoc
>Affects Versions: 12.2
> Environment: NetBeans 12.2 on JDK 11 running under Debian Linux.
>Reporter: Glenn Holmer
>Priority: Major
> Attachments: image-2021-01-21-13-00-00-792.png
>
>
> Steps to reproduce:
> 0) Hit ctrl-space on e.g. System.out.println(). Popup Javadoc appears 
> correctly.
> 1) Click "Show documentation in external web browser" button (second from 
> right in popup toolbar).
> 2) Browser will report a 404 because the URL is
> [https://docs.oracle.com/en/java/javase/11/docs/api/java/io/PrintStream.html]
> instead of
> [https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/PrintStream.html]
> This appears to happen with all base classes, e.g.
> [https://docs.oracle.com/en/java/javase/11/docs/api/java/lang/Math.html]
> instead of
> [https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Math.html]
>  



--
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-5133) On MACOS Big Sur a normal user can not open Preferences or Plugins

2021-01-21 Thread Jose Medeiros (Jira)


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

Jose Medeiros commented on NETBEANS-5133:
-

Did I not say in the OP that "Running as super user it works perfectly." ? This 
is not the solution. I am not running NB as superuser. I am dropping it as my 
goto integrated development tool.

> On MACOS Big Sur a normal user can not open Preferences or Plugins
> --
>
> Key: NETBEANS-5133
> URL: https://issues.apache.org/jira/browse/NETBEANS-5133
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Settings, platform - Plugin Manager
>Affects Versions: 12.1, 12.2
> Environment: macOS Big Sur 11.0.1
>Reporter: Jose Medeiros
>Priority: Critical
> Attachments: Screen Recording 2020-12-11 at 22.09.26.mov, Screen 
> Recording 2020-12-11 at 22.10.15.mov
>
>
> When running as a normal user, if you click on Netbeans->Preferences the 
> window will open, shake, freeze and not let you do anything. The same thing 
> happens with the Tools->Plugins. Running as super user it works perfectly. 
> Could it be trying to pop up an authentication window that never shows up? 
> See my answer at Stackoverflow 
> [https://stackoverflow.com/questions/61904617/access-to-root-application-support-macos-java/61994057#61994057]
>  if that's the case.



--
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-5252) New github authorization ....

2021-01-21 Thread Lobzek (Jira)


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

Lobzek commented on NETBEANS-5252:
--

Also received that mail from GitHub. I think the priority should be much higher 
then "Minor". Given how slow the development of new versions of Netbeans, it 
should be ready in advance to face the change on August 13, 2021

> New github authorization 
> -
>
> Key: NETBEANS-5252
> URL: https://issues.apache.org/jira/browse/NETBEANS-5252
> Project: NetBeans
>  Issue Type: Improvement
>  Components: versioncontrol - Git
>Affects Versions: 12.2
> Environment: win1o pro
>Reporter: Heinz Schweitzer
>Priority: Minor
>
> I use git via netbeans integration, obvioulsy zhis will no longer work in the 
> future. See email from github belaow.
> Any plans to support this ? 
>  
> Hi @napengam,
> You recently used a password to access the repository at 
> napengam/phpWebSocketServer with git using JGit/5.5.1.201910021850-r.
> Basic authentication using a password to Git is deprecated and will soon no 
> longer work. Visit 
> [https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/]
>  for more information around suggested workarounds and removal dates.
> Thanks,
> The GitHub Team



--
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-4974) PHP8 named arguments

2021-01-21 Thread Cyril VERLOOP (Jira)


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

Cyril VERLOOP commented on NETBEANS-4974:
-

Hi,

I would like to add a case where a named argument is seen as a syntax error in 
build 266.

Ex :
{code:java}
public function __construct()
{
parent::__construct(legs: 4); // Seen as a syntax error in NB build 266.
}
{code}
I have attached a working example using PHP 8.0.1.

You can execute the code to see it working through "php index.php" or Docker 
(Dockerfile included).

 

> PHP8 named arguments
> 
>
> Key: NETBEANS-4974
> URL: https://issues.apache.org/jira/browse/NETBEANS-4974
> Project: NetBeans
>  Issue Type: Improvement
>Affects Versions: 11.3
>Reporter: Jayce
>Priority: Major
> Attachments: PHP8NamedArgument.jpg
>
>
> Tested in latest build (netbeans-linux-143-on-20201030-release.zip30 oct. 
> 2020 05:40:08)
> Project opened in Netbeans is set to PHP8.
> Netbeans shows a syntax error on PHP8 named arguments.
> These lines are valid in PHP8:
> array_fill(start_index: 0, num: 100, value: 50); // From RFC
> setcookie(name: 'test', expires: time() + 60 * 60 * 2,); // other example



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