[jira] [Created] (NETBEANS-3571) Netbeans preventing Windows 10 wake from sleep

2019-12-10 Thread Mathieu Moloney (Jira)
Mathieu Moloney created NETBEANS-3571:
-

 Summary: Netbeans preventing Windows 10 wake from sleep
 Key: NETBEANS-3571
 URL: https://issues.apache.org/jira/browse/NETBEANS-3571
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 11.1
Reporter: Mathieu Moloney


Recently my computer sometimes doesn't wake if left on overnight. The only 
solution is hard reset on the power supply (or long press on power button).

It appears to me the problem is only present if I leave Netbeans open.

I have just upgraded to v11.2, I will let you know if the problem persists. It 
was not present in version 8.2.

*Setup*

Windows 10

Asus P2538U

*Power Options (plugged in) :*

Turn off the display: 5 minutes

Put the computer to sleep: never

 

 

 



--
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-3059) Import classes dialog never finishes execution after clicking OK

2019-09-04 Thread Mathieu Moloney (Jira)
Mathieu Moloney created NETBEANS-3059:
-

 Summary: Import classes dialog never finishes execution after 
clicking OK
 Key: NETBEANS-3059
 URL: https://issues.apache.org/jira/browse/NETBEANS-3059
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 11.1
 Environment: Windows 10 64bit
Reporter: Mathieu Moloney
 Attachments: Import classes.png

When pasting code from one file into another file, netbeans offers to create 
the import declarations for the required classes. See screenshot attached.

When we click the OK button, the button is greyed but nothing happens.

We need to click cancel to get out of the dialog and then use "Organise 
Imports" shortcut



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-3049) Terminal should open to Netbeans workspace folder

2019-08-31 Thread Mathieu Moloney (Jira)
Mathieu Moloney created NETBEANS-3049:
-

 Summary: Terminal should open to Netbeans workspace folder
 Key: NETBEANS-3049
 URL: https://issues.apache.org/jira/browse/NETBEANS-3049
 Project: NetBeans
  Issue Type: Bug
  Components: cnd - Terminalemulator
Affects Versions: 11.1
 Environment: Windows 10 Netbeans installed using the msi installer
Reporter: Mathieu Moloney


The terminal opens to the Netbeans installation directory, on windows this is 
C:\Program Files\Netbeans

This is pretty useless, it should open to the workspace directory by default.

 



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-3047) AINSI colors not showing as of maven 3.5

2019-08-31 Thread Mathieu Moloney (Jira)
Mathieu Moloney created NETBEANS-3047:
-

 Summary: AINSI colors not showing as of maven 3.5
 Key: NETBEANS-3047
 URL: https://issues.apache.org/jira/browse/NETBEANS-3047
 Project: NetBeans
  Issue Type: Bug
  Components: projects - Maven
Affects Versions: 11.1
 Environment: Maven version after 3.5.0
Reporter: Mathieu Moloney


AINSI colors are not working in newer maven versions, they *do* work with the 
maven version shipped with netbeans.

The solution is to add the following maven options

MAVEN_OPTS=-Djansi.passthrough=true

Maven 3.5.0 integrated jansi into its core. Jansi tries to detect the terminal 
capability and if it doesn't think that the terminal support ANSI codes, it 
strips them out of the output.

 

+*Testcase:*+

String greenBold = "\033[32;1m";
String reset = "\033[0m";
System.out.println("before" + greenBold + " green " + reset + "after");
 # If you run the above program against Maven 3.3.9, the word "green" will 
render using a green color inside the Netbeans output tab.
 # If you run the same program against Maven 3.5.0, no colors will show up.

 

See old bug report : [https://netbeans.org/bugzilla/show_bug.cgi?id=270593]



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-3036) Go To Declaration is broken in multi-module project after upgrade to v11

2019-08-31 Thread Mathieu Moloney (Jira)


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

Mathieu Moloney commented on NETBEANS-3036:
---

Resolved in version 11.1

[https://stackoverflow.com/questions/56456996/netbeans-11-0-is-using-sources-from-maven-instead-of-other-open-project?rq=1]

> Go To Declaration is broken in multi-module project after upgrade to v11
> 
>
> Key: NETBEANS-3036
> URL: https://issues.apache.org/jira/browse/NETBEANS-3036
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 11.0
> Environment: Windows 10
> Following upgrade from Netbeans v8 to v11 (it was working correctly before)
>Reporter: Mathieu Moloney
>Priority: Major
>  Labels: shortcuts
> Attachments: messages.log
>
>
> Following upgrade of Netbeans from v8.2 to v11 and running a java/maven 
> project with many modules.
> Go To Declaration no longer works correctly. The shortcut opens the correct 
> class under Dependencies (ie the binary file) not the source file in another 
> project. It still works correctly for files within the same JAR
> I have tried without success to :
>  * Delete the cache
>  * Check the logs for errors (log file attached)
> See older/duplicate/similar issues :
>  * [https://netbeans.org/bugzilla/show_bug.cgi?id=256166]
>  * [https://github.com/kelemen/netbeans-gradle-project/issues/196]
>  * 
> [https://stackoverflow.com/questions/8369807/go-to-declaration-does-not-work-in-netbeans-php]



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-3036) Go To Declaration is broken in multi-module project after upgrade to v11

2019-08-31 Thread Mathieu Moloney (Jira)


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

Mathieu Moloney resolved NETBEANS-3036.
---
Fix Version/s: 11.1
   Resolution: Fixed

> Go To Declaration is broken in multi-module project after upgrade to v11
> 
>
> Key: NETBEANS-3036
> URL: https://issues.apache.org/jira/browse/NETBEANS-3036
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 11.0
> Environment: Windows 10
> Following upgrade from Netbeans v8 to v11 (it was working correctly before)
>Reporter: Mathieu Moloney
>Priority: Major
>  Labels: shortcuts
> Fix For: 11.1
>
> Attachments: messages.log
>
>
> Following upgrade of Netbeans from v8.2 to v11 and running a java/maven 
> project with many modules.
> Go To Declaration no longer works correctly. The shortcut opens the correct 
> class under Dependencies (ie the binary file) not the source file in another 
> project. It still works correctly for files within the same JAR
> I have tried without success to :
>  * Delete the cache
>  * Check the logs for errors (log file attached)
> See older/duplicate/similar issues :
>  * [https://netbeans.org/bugzilla/show_bug.cgi?id=256166]
>  * [https://github.com/kelemen/netbeans-gradle-project/issues/196]
>  * 
> [https://stackoverflow.com/questions/8369807/go-to-declaration-does-not-work-in-netbeans-php]



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-3036) Go To Declaration is broken in multi-module project after upgrade to v11

2019-08-27 Thread Mathieu Moloney (Jira)
Mathieu Moloney created NETBEANS-3036:
-

 Summary: Go To Declaration is broken in multi-module project after 
upgrade to v11
 Key: NETBEANS-3036
 URL: https://issues.apache.org/jira/browse/NETBEANS-3036
 Project: NetBeans
  Issue Type: Bug
  Components: projects - Maven
Affects Versions: 11.0
 Environment: Windows 10
Following upgrade from Netbeans v8 to v11 (it was working correctly before)
Reporter: Mathieu Moloney
 Attachments: messages.log

Following upgrade of Netbeans from v8.2 to v11 and running a java/maven project 
with many modules.

Go To Declaration no longer works correctly. The shortcut opens the correct 
class under Dependencies (ie the binary file) not the source file in another 
project. It still works correctly for files within the same JAR

I have tried without success to :
 * Delete the cache
 * Check the logs for errors (log file attached)

See older/duplicate/similar issues :
 * [https://netbeans.org/bugzilla/show_bug.cgi?id=256166]
 * [https://github.com/kelemen/netbeans-gradle-project/issues/196]
 * 
[https://stackoverflow.com/questions/8369807/go-to-declaration-does-not-work-in-netbeans-php]



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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