Re: Apache NetBeans 11.2-beta3 is Available for Testing!

2019-10-17 Thread John Neffenger

On 10/17/19 2:35 PM, Glenn Holmer wrote:

It's much less subtle than that (see attachment: without on the left,
with on the right). Interestingly, I checked my anti-aliasing settings
in KDE, which were set to "Vendor Default". When I changed anti-aliasing
to "Enabled", hinting style "Medium", then *removed* the -J-D, I got
nice-looking fonts in NetBeans. Seems counter-intuitive, but hey.
When I zoom in, I see no anti-aliasing on the left and grayscale 
anti-aliasing on the right in the screenshots (linked in your later 
message).


I suspect the counter-intuitive result is just normal subpixel rendering 
provided by the fix in JDK 12 and 13. For even better fonts, in my 
opinion, turn down the hinting one more level to Light (sometimes called 
Slight):


On Slight Hinting, Proper Text Rendering, Stem Darkening and LCD Filters
https://www.freetype.org/freetype2/docs/text-rendering-general.html

John

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

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





List of dark and light theme names

2019-10-17 Thread Tim Boudreau
I've got a weird query:  I need to compile a list of all the popular light
and dark editor themes for NetBeans - but, very specifically, the name of
the folder in Editors/FontsColors in the system filesystem, not the
localized display name.

If you run a custom editor theme that's installed by a module, could you
take a look (say, in the NetBeans Runtime Explorer module, or in your
userdir if you've modified some settings of the theme so there's actually
something there) and let me know?

Here's the problem I want to solve:  With the
create-a-full-language-plugin-from-an-Antlr-grammar-and-a-few-annotations
modules I've been working on, you define editor colorings in an
annotation.  Typically, you want one set of colors for bright backgrounds
and another for dark backgrounds, so it lets you define an array of
colorings tied to editor theme folder names, like this:

@HighlighterKeyRegistration(mimeType = ANTLR_MIME_TYPE, order = 2000,
positionInZOrder = 2900,
colors = @ColoringCategory(name = "alternatives",
colors = {
@Coloration(
themes = {"NetBeans", "NetBeans55",
"NetbeansEarth", "Tan", "NetBeans_Solarized_Light" },
bg = {255, 255, 200},
bold = true,
italic = true
),
@Coloration(
themes = {"NetBeans_Solarized_Dark",
"BlueTheme", "Darcula", "CityLights"},
bg = {80, 40, 40},
bold = true,
italic = true
)}))
public static final NamedRegionKey NAMED_ALTERNATIVES =
NamedRegionKey.create("alternatives", RuleTypes.class);

(this is an annotation to provide semantic highlighting, but you do the
same thing for specific  token categories).  You can see above the ones
I've already got.

Thanks,

Tim

--
http://timboudreau.com


Re: Apache NetBeans 11.2-beta3 is Available for Testing!

2019-10-17 Thread Laszlo Kishalmi

Then that's the expected result in your case.

On 10/17/19 2:51 PM, Glenn Holmer wrote:

On 10/17/19 4:45 PM, Laszlo Kishalmi wrote:

And your JDK and Linux distro?

openjdk version "13" 2019-09-17
OpenJDK Runtime Environment (build 13+33)
OpenJDK 64-Bit Server VM (build 13+33, mixed mode, sharing)

PRETTY_NAME="Debian GNU/Linux 10 (buster)"


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

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



Re: Apache NetBeans 11.2-beta3 is Available for Testing!

2019-10-17 Thread Glenn Holmer
On 10/17/19 4:45 PM, Laszlo Kishalmi wrote:
> And your JDK and Linux distro?

openjdk version "13" 2019-09-17
OpenJDK Runtime Environment (build 13+33)
OpenJDK 64-Bit Server VM (build 13+33, mixed mode, sharing)

PRETTY_NAME="Debian GNU/Linux 10 (buster)"

-- 
Glenn Holmer (Linux registered user #16682)
"After the vintage season came the aftermath -- and Cenbe."


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

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



AW: Plugin doesn't work while using html4j/javafx wrappers

2019-10-17 Thread Christian Lenz
Hey Efrem,

what do you mean exactly? Installed are JDK 1.8-131, 9.0.4, 10.0.1 & 10.0.2 and 
11.0.2 The Instance of NetBeans, where my plugin will be installed runs on JDK 
11.0.2. Highest version is 11.0.2, no JDK 12 or 13. And for building my plugin, 
I’m using JDK 9 and also tried 11.

And here is the info about the environment of the Instance which runs, when I 
run my plugin:

Product Version: Apache NetBeans IDE 11.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:\Projekte\Netbeans Plugins\NbScratchFile\target\userdir
Cache directory: C:\Projekte\Netbeans 
Plugins\NbScratchFile\target\userdir\var\cache


Cheers

Chris



Von: Efrem Mc
Gesendet: Donnerstag, 17. Oktober 2019 22:54
An: dev@netbeans.apache.org
Betreff: Re: Plugin doesn't work while using html4j/javafx wrappers

Hi what  Java version are using for testing?

I need to update my Java version, I am running 10.0.2.  I believe I saw
Java 13 SDK/JRE for the SE edition?


Efrem

On Thu, Oct 17, 2019 at 12:01 PM Christian Lenz 
wrote:

> Hey guys,
>
> regarding to this ticket here:
> https://issues.apache.org/jira/browse/NETBEANS-3185
>
> I have the same problem with my own plugin which uses html4j stuff.
> Jaroslav Tulach already knows the plugin, he rewrote some code months
> (maybe 1 year) ago to fit better with html4j and no direct dependency to
> the WebView of javafx. After I changed from building it wih JDK 1.8 and
> want to use JDK >= 9.0 I have the same problem with the warning, already
> mentioned in the ticket:
>
> „Warning - could not install some modules: JavaFX wrapper - No module
> providing the capability org.openide.modules.jre.JavaFX could be found. 2
> further modules could not be installed due to the above problems.“
>
> So here is my plugin called NbScratchFile:
> https://github.com/Chris2011/NbScratchFile/tree/develop (Develop is the
> current branch which is up to date). I really tried my best to check
> everything from the created sample project "Java Frontend Application" to
> fix everything in my pom and removed unused files, etc. I also added the
> changes from Jaroslav (he added a comment in the ticket) to my pom but
> still got the same issue as this was the initial problem.
> See my pom here:
> https://github.com/Chris2011/NbScratchFile/blob/develop/pom.xml.
>
> Some side info here, it is really only a nbm so a plugin for NetBeans, no
> standalone nbm-application.
> It works like a charme, with JDK 1.8 in NetBeans 8.2 but I want to be up
> to date and want to support Apache NetBeans >= 9.0 with the newest version.
> The settings (JDK, platform to run) are the same as I mentioned in the
> ticket description.
>
> You see that I have an Installer.java and I also had a manifest.mf file,
> but I removed the file in case of finding the error. So the Installer.java
> class shouldn't be the problem nor the missing manfiest.mf file which
> registers the Installer class.
>
> It would be very nice, if someone can have a look there what I did wrong.
> Maybe I missed smth or whatever. I tried my best until now and I thought it
> was only because of the initial problem but for my plugin it seems not.
>
>
> Cheers and thx
>
> Chris
>



Re: Apache NetBeans 11.2-beta3 is Available for Testing!

2019-10-17 Thread Laszlo Kishalmi

And your JDK and Linux distro?

On 10/17/19 2:43 PM, Glenn Holmer wrote:

On 10/17/19 4:35 PM, Glenn Holmer wrote:

-J-Dawt.useSystemAAFontSettings=on

It's much less subtle than that (see attachment: without on the left,
with on the right).

Oh, attachment went to bit bucket. See it here:

https://www.lyonlabs.org/temp/without-with.png


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

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



Re: Apache NetBeans 11.2-beta3 is Available for Testing!

2019-10-17 Thread Glenn Holmer
On 10/17/19 4:35 PM, Glenn Holmer wrote:
>>> -J-Dawt.useSystemAAFontSettings=on

> It's much less subtle than that (see attachment: without on the left,
> with on the right).

Oh, attachment went to bit bucket. See it here:

https://www.lyonlabs.org/temp/without-with.png

-- 
Glenn Holmer (Linux registered user #16682)
"After the vintage season came the aftermath -- and Cenbe."


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

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



Re: Apache NetBeans 11.2-beta3 is Available for Testing!

2019-10-17 Thread John Neffenger

On 10/17/19 8:49 AM, Laszlo Kishalmi wrote:
The stats says the majority of the Snap users are on Ubuntu 18.04 and 
though I do not have stats on the used JDK, but I guess they are still 
using either OpenJDK 1.8 or OpenJDK 11 LTS. So I feel for the majority 
of the users who do not really care what is in the netbeans.conf 
Grayscale anti aliasing is still better than the ugly fonts.


Agreed. I was asking Glenn Holmer for clarification because he said he 
was running NetBeans under JDK 13, which includes the fix.


The font fix is already backported to 11.0.6 version of OpenJDK which is 
scheduled for early 2020. I think this setting can go away with Apache 
NetBeans 12.0.


Wow, I didn't know that! For reference, below is the Backport Bug Report 
created on September 23, 2019:


JDK / JDK-8231359
Need to set the FreeType LCD Filter to reduce fringing
https://bugs.openjdk.java.net/browse/JDK-8231359

That means I can close this bug report against Ubuntu:

Backport JDK-8212071 font fix to OpenJDK 11
https://bugs.launchpad.net/ubuntu/+source/openjdk-lts/+bug/1815119

Thank you, Laszlo.

John

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

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





Plugin doesn't work while using html4j/javafx wrappers

2019-10-17 Thread Christian Lenz
Hey guys,

regarding to this ticket here: 
https://issues.apache.org/jira/browse/NETBEANS-3185

I have the same problem with my own plugin which uses html4j stuff. Jaroslav 
Tulach already knows the plugin, he rewrote some code months (maybe 1 year) ago 
to fit better with html4j and no direct dependency to the WebView of javafx. 
After I changed from building it wih JDK 1.8 and want to use JDK >= 9.0 I have 
the same problem with the warning, already mentioned in the ticket:

„Warning - could not install some modules: JavaFX wrapper - No module providing 
the capability org.openide.modules.jre.JavaFX could be found. 2 further modules 
could not be installed due to the above problems.“

So here is my plugin called NbScratchFile: 
https://github.com/Chris2011/NbScratchFile/tree/develop (Develop is the current 
branch which is up to date). I really tried my best to check everything from 
the created sample project "Java Frontend Application" to fix everything in my 
pom and removed unused files, etc. I also added the changes from Jaroslav (he 
added a comment in the ticket) to my pom but still got the same issue as this 
was the initial problem.
See my pom here: 
https://github.com/Chris2011/NbScratchFile/blob/develop/pom.xml.

Some side info here, it is really only a nbm so a plugin for NetBeans, no 
standalone nbm-application.
It works like a charme, with JDK 1.8 in NetBeans 8.2 but I want to be up to 
date and want to support Apache NetBeans >= 9.0 with the newest version.
The settings (JDK, platform to run) are the same as I mentioned in the ticket 
description.

You see that I have an Installer.java and I also had a manifest.mf file, but I 
removed the file in case of finding the error. So the Installer.java class 
shouldn't be the problem nor the missing manfiest.mf file which registers the 
Installer class.

It would be very nice, if someone can have a look there what I did wrong. Maybe 
I missed smth or whatever. I tried my best until now and I thought it was only 
because of the initial problem but for my plugin it seems not.


Cheers and thx

Chris


Re: Setup development env for develop netbeans platform **itself**

2019-10-17 Thread Geertjan Wielenga
NetBeans IDE is a NetBeans Platform application, git clone from the repo,
then do an ant build, open the module from the sources that you want to
work on, and when you run it from NetBeans your changed module will be run
on your cloned/built NetBeans Platform.

Gj

On Thu, 17 Oct 2019 at 18:16, ZhiHao Zhu  wrote:

> I'm seeking that the way to setup  development env for develop netbeans
> platform **itself**.
>
> Could i use Eclipse or Intellij idea or netbeans IDE to import platform
> source code ??
>


Setup development env for develop netbeans platform **itself**

2019-10-17 Thread ZhiHao Zhu
I'm seeking that the way to setup  development env for develop netbeans
platform **itself**.

Could i use Eclipse or Intellij idea or netbeans IDE to import platform
source code ??


Re: Apache NetBeans 11.2-beta3 is Available for Testing!

2019-10-17 Thread Laszlo Kishalmi

Well,

The stats says the majority of the Snap users are on Ubuntu 18.04 and 
though I do not have stats on the used JDK, but I guess they are still 
using either OpenJDK 1.8 or OpenJDK 11 LTS. So I feel for the majority 
of the users who do not really care what is in the netbeans.conf 
Grayscale anti aliasing is still better than the ugly fonts.


The font fix is already backported to 11.0.6 version of OpenJDK which is 
scheduled for early 2020. I think this setting can go away with Apache 
NetBeans 12.0. Till then you still have the opportunity to overwrite 
these settings in your custom netbeans.conf as described in: 
https://cwiki.apache.org/confluence/display/NETBEANS/Font+Rendering+Issues


On 10/17/19 8:13 AM, John Neffenger wrote:

On 10/17/19 4:39 AM, Glenn Holmer wrote:

However, I find that I still need to add

-J-Dawt.useSystemAAFontSettings=on

to make fonts look good in NetBeans (even under JDK 13). What would be
the correct incantation to start the installer that way as well?


Do you set that system property because you prefer grayscale 
anti-aliasing over subpixel rendering in general? Or are you not 
seeing the following JDK 12 font fix on your system?


OpenJDK FreeType font fix for Debian & Ubuntu
https://github.com/jgneff/openjdk-freetype

See the "before" and "after" screenshots for the difference the fix 
made to the default font rendering:


https://github.com/jgneff/openjdk-freetype#system-freetype-library

You can run the project to see how your system is rendering that 
particular font (Source Code Pro).


Thanks,
John

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

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





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

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





Re: Apache NetBeans 11.2-beta3 is Available for Testing!

2019-10-17 Thread John Neffenger

On 10/17/19 4:39 AM, Glenn Holmer wrote:

However, I find that I still need to add

-J-Dawt.useSystemAAFontSettings=on

to make fonts look good in NetBeans (even under JDK 13). What would be
the correct incantation to start the installer that way as well?


Do you set that system property because you prefer grayscale 
anti-aliasing over subpixel rendering in general? Or are you not seeing 
the following JDK 12 font fix on your system?


OpenJDK FreeType font fix for Debian & Ubuntu
https://github.com/jgneff/openjdk-freetype

See the "before" and "after" screenshots for the difference the fix made 
to the default font rendering:


https://github.com/jgneff/openjdk-freetype#system-freetype-library

You can run the project to see how your system is rendering that 
particular font (Source Code Pro).


Thanks,
John

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

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





Re: Apache NetBeans 11.2-beta3 is Available for Testing!

2019-10-17 Thread Geertjan Wielenga
Really, you’ve had weeks and weeks now to report issues to be fixed for
11.2. Unless you have an issue that is about something that causes NetBeans
itself not to start, your issue will be investigated, assuming you report
the issue and have clear steps to reproduce, for 11.3, which is scheduled
to be released in January.

Gj


On Thu, 17 Oct 2019 at 16:49, Richard Linsdale <
rich...@theretiredprogrammer.uk> wrote:

> Browser display slowness (reported on this thread by Peter Borreggine).
>
> I have also seen similar problems on a Mac with 11.1 - wasn't sure if it
> was due to the custom project type I was using.  It does look like a
> Netbeans problem, as I can reproduce with both Chrome and Safari browers.
>
> Not yet tested with 11.2 to see if it is still occuring there.
>
> My 11.1 workround is not to close the browser, and after any changes to
> use the browser reload function to refresh the page, which is immediate.
>
> I will happily add my concerns to an issue if Peter was to raise one.
>
> Easy to reproduce - select an .html file in project view, use View
> option in popup menu, then wait and eventually the page will display in
> the browser.
>
> regards
>
> Richard
>
> On 17/10/2019 15:31, Geertjan Wielenga wrote:
> > Where is that issue reported with steps to reproduce it?
> >
> > Gj
> >
> > On Thu, 17 Oct 2019 at 16:17,  wrote:
> >
> >> Where can I get 11.2 for windows?
> >>
> >> I'm getting tired of 11.0 lagging when I make a change and the browser
> >> refreshes, then it locks up, then if finally works... but I have to keep
> >> going back to 8.2
> >>
> >> Does 11.2 FIX this connection to the browser and stop the lagging
> problem?
> >>
> >> Thank you
> >>
> >>
> >> Peter Borreggine
> >> Owner and Developer
> >> Angular/Bootstrap/NodeJS/Databases/HTML5/CSS3/Responsive Web Design/SEO
> >> WebParity.net
> >> A Service Connected Disabled Veteran Owned Business
> >> WA State License: 603-501-609
> >> 360-830-8926 C
> >>
> >> "Lead, Follow or Get Out of the Way."
> >> - Lee Iacocca, former head of Chrysler and Ford
> >>
> >> This email message is for the sole use of the intended recipient(s) and
> may
> >> contain confidential and privileged information. If you are not the
> >> intended
> >> recipient, please contact the sender and destroy all copies of the
> original
> >> message and its attachments. Any unauthorized review, use, disclosure,
> or
> >> distribution is prohibited.
> >>
> >> -Original Message-
> >> From: Luff,Chris 
> >> Sent: Thursday, October 17, 2019 1:16 AM
> >> To: dev@netbeans.apache.org
> >> Cc: NetCAT team 
> >> Subject: Re: Apache NetBeans 11.2-beta3 is Available for Testing!
> >>
> >> Looking good, no issues and starting up nice and fast.
> >>
> >> Product Version: Apache NetBeans IDE 11.2-beta3
> >> Java: 11.0.4; OpenJDK 64-Bit Server VM 11.0.4+11
> >> Runtime: OpenJDK Runtime Environment 11.0.4+11
> >> System: Mac OS X version 10.14.6 running on x86_64; UTF-8; en_GB (nb)
> >>
> >> Chris Luff | Associate Principal Engineer | UK Development - Care
> Insight
> >> and Delivery Dev | chris.l...@cerner.com
> |
> >> +44
> >> (0)7970 735175 | Cerner Limited
> >>
> >> On 16 Oct 2019, at 11:41, Neil C Smith
> >> mailto:neilcsm...@apache.org>> wrote:
> >>
> >> Dear Community,
> >>
> >> I'd like to announce that the third beta build for Apache NetBeans
> >> 11.2 from the release112 branch is available for download. Apologies for
> >> the
> >> delay (again!) - a few key issues were fixed prior to this build,
> >> particularly around Java 13 and nb-javac distribution (thanks Jan). This
> >> will hopefully be our final beta for NB 11.2 and all being well the
> release
> >> vote will be based on the same code. Please help check both sources and
> >> binaries so we can pick up any critical/blocking issues before voting -
> >> thanks!
> >>
> >> As per the release schedule, NB 11.2 is a non-LTS release, and will not
> >> have
> >> a full NetCAT process.  However, feedback and testing from those on the
> >> dev@
> >> and netcat@ lists would still be appreciated, particularly around new
> >> features.  Please file issues in JIRA as necessary, with the affects and
> >> fix
> >> versions set to 11.2. Please take note of the Bug Priority Guidelines
> (link
> >> below), in particular so that we can address critical and blocking
> issues
> >> if
> >> they arise.
> >>
> >> For details of changes between beta2 and beta3 please see
> >>
> >>
> https://nam01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com
> >> %2Fapache%2Fnetbeans%2Fpull%2F1549data=02%7C01%7CChris.Luff%
> >> 40cerner.co
> >>
> >>
> m%7Ca4dd8a9ad67543382c4a08d752257598%7Cfbc493a80d244454a815f4ca58e8c09d%7C0%
> >>
> >>
> 7C0%7C637068193147605297sdata=cn2x6twTiRwsuRXxejWw4nU4Zh3NuSkQw0VYGeKhb
> >> Og%3Dreserved=0
> >>
> >> In particular, the mechanism for distributing nb-javac has changed again
> >> between beta2 and beta3, and testing that would be 

Re: Apache NetBeans 11.2-beta3 is Available for Testing!

2019-10-17 Thread Geertjan Wielenga
Where is that issue reported with steps to reproduce it?

Gj

On Thu, 17 Oct 2019 at 16:17,  wrote:

> Where can I get 11.2 for windows?
>
> I'm getting tired of 11.0 lagging when I make a change and the browser
> refreshes, then it locks up, then if finally works... but I have to keep
> going back to 8.2
>
> Does 11.2 FIX this connection to the browser and stop the lagging problem?
>
> Thank you
>
>
> Peter Borreggine
> Owner and Developer
> Angular/Bootstrap/NodeJS/Databases/HTML5/CSS3/Responsive Web Design/SEO
> WebParity.net
> A Service Connected Disabled Veteran Owned Business
> WA State License: 603-501-609
> 360-830-8926 C
>
> "Lead, Follow or Get Out of the Way."
> - Lee Iacocca, former head of Chrysler and Ford
>
> This email message is for the sole use of the intended recipient(s) and may
> contain confidential and privileged information. If you are not the
> intended
> recipient, please contact the sender and destroy all copies of the original
> message and its attachments. Any unauthorized review, use, disclosure, or
> distribution is prohibited.
>
> -Original Message-
> From: Luff,Chris 
> Sent: Thursday, October 17, 2019 1:16 AM
> To: dev@netbeans.apache.org
> Cc: NetCAT team 
> Subject: Re: Apache NetBeans 11.2-beta3 is Available for Testing!
>
> Looking good, no issues and starting up nice and fast.
>
> Product Version: Apache NetBeans IDE 11.2-beta3
> Java: 11.0.4; OpenJDK 64-Bit Server VM 11.0.4+11
> Runtime: OpenJDK Runtime Environment 11.0.4+11
> System: Mac OS X version 10.14.6 running on x86_64; UTF-8; en_GB (nb)
>
> Chris Luff | Associate Principal Engineer | UK Development - Care Insight
> and Delivery Dev | chris.l...@cerner.com |
> +44
> (0)7970 735175 | Cerner Limited
>
> On 16 Oct 2019, at 11:41, Neil C Smith
> mailto:neilcsm...@apache.org>> wrote:
>
> Dear Community,
>
> I'd like to announce that the third beta build for Apache NetBeans
> 11.2 from the release112 branch is available for download. Apologies for
> the
> delay (again!) - a few key issues were fixed prior to this build,
> particularly around Java 13 and nb-javac distribution (thanks Jan). This
> will hopefully be our final beta for NB 11.2 and all being well the release
> vote will be based on the same code. Please help check both sources and
> binaries so we can pick up any critical/blocking issues before voting -
> thanks!
>
> As per the release schedule, NB 11.2 is a non-LTS release, and will not
> have
> a full NetCAT process.  However, feedback and testing from those on the
> dev@
> and netcat@ lists would still be appreciated, particularly around new
> features.  Please file issues in JIRA as necessary, with the affects and
> fix
> versions set to 11.2. Please take note of the Bug Priority Guidelines (link
> below), in particular so that we can address critical and blocking issues
> if
> they arise.
>
> For details of changes between beta2 and beta3 please see
>
> https://nam01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com
> %2Fapache%2Fnetbeans%2Fpull%2F1549data=02%7C01%7CChris.Luff%
> 40cerner.co
>
> m%7Ca4dd8a9ad67543382c4a08d752257598%7Cfbc493a80d244454a815f4ca58e8c09d%7C0%
>
> 7C0%7C637068193147605297sdata=cn2x6twTiRwsuRXxejWw4nU4Zh3NuSkQw0VYGeKhb
> Og%3Dreserved=0
>
> In particular, the mechanism for distributing nb-javac has changed again
> between beta2 and beta3, and testing that would be appreciated, along with
> related features for Java 13 support.
>
>
> See the artefacts here:
>
> https://nam01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fbuilds.apa
>
> che.org%2Fview%2FM-R%2Fview%2FNetBeans%2Fjob%2Fnetbeans-TLP%2Fjob%2Fnetbeans
>
> %2Fjob%2Frelease112%2F26%2Fartifact%2Fdist%2Fdata=02%7C01%7CChris.Luff%
> 40cerner.com
> %7Ca4dd8a9ad67543382c4a08d752257598%7Cfbc493a80d244454a815f4ca58
>
> e8c09d%7C0%7C0%7C637068193147605297sdata=Dq%2B3DCKSy8SpEvN6buDIbU7e0V5u
> aYaRc6iQCaNLFNg%3Dreserved=0
>
> The binary you most likely need is:
>
> https://nam01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fbuilds.apa
>
> che.org%2Fview%2FM-R%2Fview%2FNetBeans%2Fjob%2Fnetbeans-TLP%2Fjob%2Fnetbeans
>
> %2Fjob%2Frelease112%2F26%2Fartifact%2Fdist%2Fnetbeans-11.2-beta3-bin.zip
> 
> ;data=02%7C01%7CChris.Luff%40cerner.com
> %7Ca4dd8a9ad67543382c4a08d752257598%7
>
> Cfbc493a80d244454a815f4ca58e8c09d%7C0%7C0%7C637068193147605297sdata=VWS
> yCbKn6qdxjQqnC4wqrabH0J3DOB43FkinV4QMByI%3Dreserved=0
>
> The SHA512 sums if you would like to check them are provided there as well
> as here:
>
> 6c9940bbd7edf1675dbd93cec156fd718af86117f1bc9f948a3bcb183796d80b05c49a427f29
> fb904e2b7334021e7d726fa9f2bc8608dd0dd2d7a61c3cc957ad
> ./netbeans-11.2-beta3-bin.zip
>
> 

RE: Apache NetBeans 11.2-beta3 is Available for Testing!

2019-10-17 Thread peter
Where can I get 11.2 for windows?

I'm getting tired of 11.0 lagging when I make a change and the browser
refreshes, then it locks up, then if finally works... but I have to keep
going back to 8.2 

Does 11.2 FIX this connection to the browser and stop the lagging problem?

Thank you


Peter Borreggine
Owner and Developer
Angular/Bootstrap/NodeJS/Databases/HTML5/CSS3/Responsive Web Design/SEO
WebParity.net
A Service Connected Disabled Veteran Owned Business
WA State License: 603-501-609
360-830-8926 C

"Lead, Follow or Get Out of the Way."
- Lee Iacocca, former head of Chrysler and Ford

This email message is for the sole use of the intended recipient(s) and may
contain confidential and privileged information. If you are not the intended
recipient, please contact the sender and destroy all copies of the original
message and its attachments. Any unauthorized review, use, disclosure, or
distribution is prohibited.

-Original Message-
From: Luff,Chris  
Sent: Thursday, October 17, 2019 1:16 AM
To: dev@netbeans.apache.org
Cc: NetCAT team 
Subject: Re: Apache NetBeans 11.2-beta3 is Available for Testing!

Looking good, no issues and starting up nice and fast.

Product Version: Apache NetBeans IDE 11.2-beta3
Java: 11.0.4; OpenJDK 64-Bit Server VM 11.0.4+11
Runtime: OpenJDK Runtime Environment 11.0.4+11
System: Mac OS X version 10.14.6 running on x86_64; UTF-8; en_GB (nb)

Chris Luff | Associate Principal Engineer | UK Development - Care Insight
and Delivery Dev | chris.l...@cerner.com | +44
(0)7970 735175 | Cerner Limited

On 16 Oct 2019, at 11:41, Neil C Smith
mailto:neilcsm...@apache.org>> wrote:

Dear Community,

I'd like to announce that the third beta build for Apache NetBeans
11.2 from the release112 branch is available for download. Apologies for the
delay (again!) - a few key issues were fixed prior to this build,
particularly around Java 13 and nb-javac distribution (thanks Jan). This
will hopefully be our final beta for NB 11.2 and all being well the release
vote will be based on the same code. Please help check both sources and
binaries so we can pick up any critical/blocking issues before voting -
thanks!

As per the release schedule, NB 11.2 is a non-LTS release, and will not have
a full NetCAT process.  However, feedback and testing from those on the dev@
and netcat@ lists would still be appreciated, particularly around new
features.  Please file issues in JIRA as necessary, with the affects and fix
versions set to 11.2. Please take note of the Bug Priority Guidelines (link
below), in particular so that we can address critical and blocking issues if
they arise.

For details of changes between beta2 and beta3 please see
https://nam01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com
%2Fapache%2Fnetbeans%2Fpull%2F1549data=02%7C01%7CChris.Luff%40cerner.co
m%7Ca4dd8a9ad67543382c4a08d752257598%7Cfbc493a80d244454a815f4ca58e8c09d%7C0%
7C0%7C637068193147605297sdata=cn2x6twTiRwsuRXxejWw4nU4Zh3NuSkQw0VYGeKhb
Og%3Dreserved=0

In particular, the mechanism for distributing nb-javac has changed again
between beta2 and beta3, and testing that would be appreciated, along with
related features for Java 13 support.


See the artefacts here:
https://nam01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fbuilds.apa
che.org%2Fview%2FM-R%2Fview%2FNetBeans%2Fjob%2Fnetbeans-TLP%2Fjob%2Fnetbeans
%2Fjob%2Frelease112%2F26%2Fartifact%2Fdist%2Fdata=02%7C01%7CChris.Luff%
40cerner.com%7Ca4dd8a9ad67543382c4a08d752257598%7Cfbc493a80d244454a815f4ca58
e8c09d%7C0%7C0%7C637068193147605297sdata=Dq%2B3DCKSy8SpEvN6buDIbU7e0V5u
aYaRc6iQCaNLFNg%3Dreserved=0

The binary you most likely need is:
https://nam01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fbuilds.apa
che.org%2Fview%2FM-R%2Fview%2FNetBeans%2Fjob%2Fnetbeans-TLP%2Fjob%2Fnetbeans
%2Fjob%2Frelease112%2F26%2Fartifact%2Fdist%2Fnetbeans-11.2-beta3-bin.zip
;data=02%7C01%7CChris.Luff%40cerner.com%7Ca4dd8a9ad67543382c4a08d752257598%7
Cfbc493a80d244454a815f4ca58e8c09d%7C0%7C0%7C637068193147605297sdata=VWS
yCbKn6qdxjQqnC4wqrabH0J3DOB43FkinV4QMByI%3Dreserved=0

The SHA512 sums if you would like to check them are provided there as well
as here:
6c9940bbd7edf1675dbd93cec156fd718af86117f1bc9f948a3bcb183796d80b05c49a427f29
fb904e2b7334021e7d726fa9f2bc8608dd0dd2d7a61c3cc957ad
./netbeans-11.2-beta3-bin.zip
cb4feaefad73d3f6ba5cf755e2e74e8ebb6b0c4517b82630f3a458d84cf337614336687ec7e6
e25ae92f992b6e4f17d0e6edcac2ecf195f75c255d5b4980fbb9
./netbeans-11.2-beta3-source.zip


New build infrastructure - known issues / changes:
As you may notice from the links, this is the first release using the new
build templates and Jenkins task (thanks Eric). One thing this does is
switch from hardcoded versions across the code base to filling this in from
a central configuration file based on git branch and hash.

* (FIXED) Local building from the source bundle is not correctly picking up
the git info file in the source bundle. 

Re: Apache NetBeans 11.2-beta3 is Available for Testing!

2019-10-17 Thread Glenn Holmer
On 10/17/19 12:59 AM, reema.tan...@oracle.com wrote:
> Latest build passed after correcting JDK config,
> 
> Beta3 based Linux and Windows installers:
> 
> https://builds.apache.org/view/M-R/view/NetBeans/job/netbeans-installers/

First time I've tried an installer in quite a while; it worked correctly
under JDK 13. Properly added a NetBeans icon to the KDE menu when run on
Debian "Buster".

However, I find that I still need to add

-J-Dawt.useSystemAAFontSettings=on

to make fonts look good in NetBeans (even under JDK 13). What would be
the correct incantation to start the installer that way as well?

-- 
Glenn Holmer (Linux registered user #16682)
"After the vintage season came the aftermath -- and Cenbe."


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

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



Re: Apache NetBeans 11.2-beta3 is Available for Testing!

2019-10-17 Thread Josh Juneau
Been using for a day now without any issues on OS X.

Product Version: Apache NetBeans IDE 11.2-beta3
Java: zulu8.40.0.25-ca-jdk8.0.222-macosx_x64
Runtime:  zulu8.40.0.25-ca-jdk8.0.222-macosx_x64
System:  Mac OS X Version 10.14.6

On Thu, Oct 17, 2019 at 3:15 AM Luff,Chris 
wrote:

> Looking good, no issues and starting up nice and fast.
>
> Product Version: Apache NetBeans IDE 11.2-beta3
> Java: 11.0.4; OpenJDK 64-Bit Server VM 11.0.4+11
> Runtime: OpenJDK Runtime Environment 11.0.4+11
> System: Mac OS X version 10.14.6 running on x86_64; UTF-8; en_GB (nb)
>
> Chris Luff | Associate Principal Engineer | UK Development - Care Insight
> and Delivery Dev | chris.l...@cerner.com |
> +44 (0)7970 735175 | Cerner Limited
>
> On 16 Oct 2019, at 11:41, Neil C Smith  neilcsm...@apache.org>> wrote:
>
> Dear Community,
>
> I'd like to announce that the third beta build for Apache NetBeans
> 11.2 from the release112 branch is available for download. Apologies
> for the delay (again!) - a few key issues were fixed prior to this
> build, particularly around Java 13 and nb-javac distribution (thanks
> Jan). This will hopefully be our final beta for NB 11.2 and all being
> well the release vote will be based on the same code. Please help
> check both sources and binaries so we can pick up any
> critical/blocking issues before voting - thanks!
>
> As per the release schedule, NB 11.2 is a non-LTS release, and will
> not have a full NetCAT process.  However, feedback and testing from
> those on the dev@ and netcat@ lists would still be appreciated,
> particularly around new features.  Please file issues in JIRA as
> necessary, with the affects and fix versions set to 11.2. Please take
> note of the Bug Priority Guidelines (link below), in particular so
> that we can address critical and blocking issues if they arise.
>
> For details of changes between beta2 and beta3 please see
>
> https://nam01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fapache%2Fnetbeans%2Fpull%2F1549data=02%7C01%7CChris.Luff%40cerner.com%7Ca4dd8a9ad67543382c4a08d752257598%7Cfbc493a80d244454a815f4ca58e8c09d%7C0%7C0%7C637068193147605297sdata=cn2x6twTiRwsuRXxejWw4nU4Zh3NuSkQw0VYGeKhbOg%3Dreserved=0
>
> In particular, the mechanism for distributing nb-javac has changed
> again between beta2 and beta3, and testing that would be appreciated,
> along with related features for Java 13 support.
>
>
> See the artefacts here:
>
> https://nam01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fbuilds.apache.org%2Fview%2FM-R%2Fview%2FNetBeans%2Fjob%2Fnetbeans-TLP%2Fjob%2Fnetbeans%2Fjob%2Frelease112%2F26%2Fartifact%2Fdist%2Fdata=02%7C01%7CChris.Luff%40cerner.com%7Ca4dd8a9ad67543382c4a08d752257598%7Cfbc493a80d244454a815f4ca58e8c09d%7C0%7C0%7C637068193147605297sdata=Dq%2B3DCKSy8SpEvN6buDIbU7e0V5uaYaRc6iQCaNLFNg%3Dreserved=0
>
> The binary you most likely need is:
>
> https://nam01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fbuilds.apache.org%2Fview%2FM-R%2Fview%2FNetBeans%2Fjob%2Fnetbeans-TLP%2Fjob%2Fnetbeans%2Fjob%2Frelease112%2F26%2Fartifact%2Fdist%2Fnetbeans-11.2-beta3-bin.zipdata=02%7C01%7CChris.Luff%40cerner.com%7Ca4dd8a9ad67543382c4a08d752257598%7Cfbc493a80d244454a815f4ca58e8c09d%7C0%7C0%7C637068193147605297sdata=VWSyCbKn6qdxjQqnC4wqrabH0J3DOB43FkinV4QMByI%3Dreserved=0
>
> The SHA512 sums if you would like to check them are provided there as
> well as here:
>
> 6c9940bbd7edf1675dbd93cec156fd718af86117f1bc9f948a3bcb183796d80b05c49a427f29fb904e2b7334021e7d726fa9f2bc8608dd0dd2d7a61c3cc957ad
> ./netbeans-11.2-beta3-bin.zip
>
> cb4feaefad73d3f6ba5cf755e2e74e8ebb6b0c4517b82630f3a458d84cf337614336687ec7e6e25ae92f992b6e4f17d0e6edcac2ecf195f75c255d5b4980fbb9
> ./netbeans-11.2-beta3-source.zip
>
>
> New build infrastructure - known issues / changes:
> As you may notice from the links, this is the first release using the
> new build templates and Jenkins task (thanks Eric). One thing this
> does is switch from hardcoded versions across the code base to filling
> this in from a central configuration file based on git branch and
> hash.
>
> * (FIXED) Local building from the source bundle is not correctly
> picking up the git info file in the source bundle. Run `cp
> nbbuild/gitinfo.properties nbbuild/build/` before running Ant (or
> otherwise manually create the nbbuild/build folder and copy
> gitinfo.properties into it). Will be fixed before full release as it's
> a blocking issue.
> * (FIXED) A git checkout of the release branch will also not correctly
> pick up the required git info - this will be looked at before release
> too.
> * (FIXED) File names are not currently marked with the beta1 suffix.
> On the other hand, the splash and window are. Win some, lose some!
> * The userdir will now be named differently for each beta and the final
> release.
> * (FIXED) Implementation versions across builds of the same sources
> still differ.
>
>
> Release schedule :
>
> 

Re: Apache NetBeans 11.2-beta3 is Available for Testing!

2019-10-17 Thread Luff,Chris
Looking good, no issues and starting up nice and fast.

Product Version: Apache NetBeans IDE 11.2-beta3
Java: 11.0.4; OpenJDK 64-Bit Server VM 11.0.4+11
Runtime: OpenJDK Runtime Environment 11.0.4+11
System: Mac OS X version 10.14.6 running on x86_64; UTF-8; en_GB (nb)

Chris Luff | Associate Principal Engineer | UK Development - Care Insight and 
Delivery Dev | chris.l...@cerner.com | +44 
(0)7970 735175 | Cerner Limited

On 16 Oct 2019, at 11:41, Neil C Smith 
mailto:neilcsm...@apache.org>> wrote:

Dear Community,

I'd like to announce that the third beta build for Apache NetBeans
11.2 from the release112 branch is available for download. Apologies
for the delay (again!) - a few key issues were fixed prior to this
build, particularly around Java 13 and nb-javac distribution (thanks
Jan). This will hopefully be our final beta for NB 11.2 and all being
well the release vote will be based on the same code. Please help
check both sources and binaries so we can pick up any
critical/blocking issues before voting - thanks!

As per the release schedule, NB 11.2 is a non-LTS release, and will
not have a full NetCAT process.  However, feedback and testing from
those on the dev@ and netcat@ lists would still be appreciated,
particularly around new features.  Please file issues in JIRA as
necessary, with the affects and fix versions set to 11.2. Please take
note of the Bug Priority Guidelines (link below), in particular so
that we can address critical and blocking issues if they arise.

For details of changes between beta2 and beta3 please see
https://nam01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fapache%2Fnetbeans%2Fpull%2F1549data=02%7C01%7CChris.Luff%40cerner.com%7Ca4dd8a9ad67543382c4a08d752257598%7Cfbc493a80d244454a815f4ca58e8c09d%7C0%7C0%7C637068193147605297sdata=cn2x6twTiRwsuRXxejWw4nU4Zh3NuSkQw0VYGeKhbOg%3Dreserved=0

In particular, the mechanism for distributing nb-javac has changed
again between beta2 and beta3, and testing that would be appreciated,
along with related features for Java 13 support.


See the artefacts here:
https://nam01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fbuilds.apache.org%2Fview%2FM-R%2Fview%2FNetBeans%2Fjob%2Fnetbeans-TLP%2Fjob%2Fnetbeans%2Fjob%2Frelease112%2F26%2Fartifact%2Fdist%2Fdata=02%7C01%7CChris.Luff%40cerner.com%7Ca4dd8a9ad67543382c4a08d752257598%7Cfbc493a80d244454a815f4ca58e8c09d%7C0%7C0%7C637068193147605297sdata=Dq%2B3DCKSy8SpEvN6buDIbU7e0V5uaYaRc6iQCaNLFNg%3Dreserved=0

The binary you most likely need is:
https://nam01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fbuilds.apache.org%2Fview%2FM-R%2Fview%2FNetBeans%2Fjob%2Fnetbeans-TLP%2Fjob%2Fnetbeans%2Fjob%2Frelease112%2F26%2Fartifact%2Fdist%2Fnetbeans-11.2-beta3-bin.zipdata=02%7C01%7CChris.Luff%40cerner.com%7Ca4dd8a9ad67543382c4a08d752257598%7Cfbc493a80d244454a815f4ca58e8c09d%7C0%7C0%7C637068193147605297sdata=VWSyCbKn6qdxjQqnC4wqrabH0J3DOB43FkinV4QMByI%3Dreserved=0

The SHA512 sums if you would like to check them are provided there as
well as here:
6c9940bbd7edf1675dbd93cec156fd718af86117f1bc9f948a3bcb183796d80b05c49a427f29fb904e2b7334021e7d726fa9f2bc8608dd0dd2d7a61c3cc957ad
./netbeans-11.2-beta3-bin.zip
cb4feaefad73d3f6ba5cf755e2e74e8ebb6b0c4517b82630f3a458d84cf337614336687ec7e6e25ae92f992b6e4f17d0e6edcac2ecf195f75c255d5b4980fbb9
./netbeans-11.2-beta3-source.zip


New build infrastructure - known issues / changes:
As you may notice from the links, this is the first release using the
new build templates and Jenkins task (thanks Eric). One thing this
does is switch from hardcoded versions across the code base to filling
this in from a central configuration file based on git branch and
hash.

* (FIXED) Local building from the source bundle is not correctly
picking up the git info file in the source bundle. Run `cp
nbbuild/gitinfo.properties nbbuild/build/` before running Ant (or
otherwise manually create the nbbuild/build folder and copy
gitinfo.properties into it). Will be fixed before full release as it's
a blocking issue.
* (FIXED) A git checkout of the release branch will also not correctly
pick up the required git info - this will be looked at before release
too.
* (FIXED) File names are not currently marked with the beta1 suffix.
On the other hand, the splash and window are. Win some, lose some!
* The userdir will now be named differently for each beta and the final release.
* (FIXED) Implementation versions across builds of the same sources
still differ.


Release schedule :
https://nam01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcwiki.apache.org%2Fconfluence%2Fdisplay%2FNETBEANS%2FRelease%2BScheduledata=02%7C01%7CChris.Luff%40cerner.com%7Ca4dd8a9ad67543382c4a08d752257598%7Cfbc493a80d244454a815f4ca58e8c09d%7C0%7C0%7C637068193147605297sdata=ofAv7t6UpTjGm32z3OBNEq8oWFWu0Rh9m2Kb%2F8yvCUA%3Dreserved=0
Bug Priority Guidelines :

Re: Apache NetBeans 11.2-beta3 is Available for Testing!

2019-10-17 Thread Geertjan Wielenga
Many thanks! Are you also planning a Mac installer?

Gj

On Thu, Oct 17, 2019 at 8:01 AM  wrote:

> Latest build passed after correcting JDK config,
>
> Beta3 based Linux and Windows installers:
>
> https://builds.apache.org/view/M-R/view/NetBeans/job/netbeans-installers/
>
> Thanks,
>
> Reema
>
> On 16/10/19 9:50 PM, Neil C Smith wrote:
> > On Wed, 16 Oct 2019 at 15:34, Geertjan Wielenga 
> wrote:
> >> No installers until the final release.
> > Would be nice if we could get into a state where we could better test
> > installers before release.  However, just tried to trigger the
> > netbeans-installer build and it failed.  I assume this is recent
> > Jenkins environment changes, but I'll leave it for Reema to look at.
> >
> > Best wishes,
> >
> > Neil
> >
> > -
> > To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org
> > For additional commands, e-mail: dev-h...@netbeans.apache.org
> >
> > For further information about the NetBeans mailing lists, visit:
> >
> https://urldefense.proofpoint.com/v2/url?u=https-3A__cwiki.apache.org_confluence_display_NETBEANS_Mailing-2Blists=DwIBaQ=RoP1YumCXCgaWHvlZYR8PZh8Bv7qIrMUB65eapI_JnE=I_-Y15BecdUmuYLJbvbi0hFUs7JgHZnV_jPFSP8DQF0=t9X8I1xHgCHLlVkTiakyBgpe4xzCps3PuIuqFXV9O9Y=CwV3lCuHBbjRInqYeVVrfdKJji6S_H3GSKIpwlUfoXk=
> >
> >
> >
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: dev-h...@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>
>
>
>


Re: Beta3 sneak preview

2019-10-17 Thread Geertjan Wielenga
On Thu, Oct 17, 2019 at 8:46 AM Dmitry Avtonomov <
dmitriy.avtono...@gmail.com> wrote:

> Start time is well over a minute for me.
>

If you're stating this as a problem, you'll need to provide a lot more info
-- e.g., is this at first startup only? Or every startup?

Gj




>
> *Product Version:* Apache NetBeans IDE 11.2-beta3
>
> *Java:* 11.0.4; OpenJDK 64-Bit Server VM 11.0.4+11
>
> *Runtime:* OpenJDK Runtime Environment 11.0.4+11
>
> *System:* Windows 10 version 10.0 running on amd64; Cp1252; en_US (nb)
>
>
> On Tue, Oct 15, 2019 at 12:26 PM Geertjan Wielenga 
> wrote:
>
> > Downloaded, unzipped, up and running with nb-javac installed in the
> process
> > of creating a new Java Maven app.
> >
> > Thanks, to me, looks solid.
> >
> > Gj
> >
> > On Tue, Oct 15, 2019 at 8:42 PM Neil C Smith 
> > wrote:
> >
> > > Hi,
> > >
> > > Second beta3 build just completed, but I've only done minor testing -
> > > need to finish for day.  I'll fully check it tomorrow morning, and
> > > announce also on netcat@ properly, but if you want to test anything
> > > that's changed you can find the files at -
> > >
> > >
> > >
> >
> https://builds.apache.org/view/M-R/view/NetBeans/job/netbeans-TLP/job/netbeans/job/release112/26/artifact/dist/
> > >
> > > There's a minor chance this won't be beta3 still, so don't share links
> > > elsewhere just yet!
> > >
> > > Best wishes,
> > >
> > > Neil
> > >
> > > -
> > > To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org
> > > For additional commands, e-mail: dev-h...@netbeans.apache.org
> > >
> > > For further information about the NetBeans mailing lists, visit:
> > > https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
> > >
> > >
> > >
> > >
> >
>


Re: Beta3 sneak preview

2019-10-17 Thread Dmitry Avtonomov
Start time is well over a minute for me.

*Product Version:* Apache NetBeans IDE 11.2-beta3

*Java:* 11.0.4; OpenJDK 64-Bit Server VM 11.0.4+11

*Runtime:* OpenJDK Runtime Environment 11.0.4+11

*System:* Windows 10 version 10.0 running on amd64; Cp1252; en_US (nb)


On Tue, Oct 15, 2019 at 12:26 PM Geertjan Wielenga 
wrote:

> Downloaded, unzipped, up and running with nb-javac installed in the process
> of creating a new Java Maven app.
>
> Thanks, to me, looks solid.
>
> Gj
>
> On Tue, Oct 15, 2019 at 8:42 PM Neil C Smith 
> wrote:
>
> > Hi,
> >
> > Second beta3 build just completed, but I've only done minor testing -
> > need to finish for day.  I'll fully check it tomorrow morning, and
> > announce also on netcat@ properly, but if you want to test anything
> > that's changed you can find the files at -
> >
> >
> >
> https://builds.apache.org/view/M-R/view/NetBeans/job/netbeans-TLP/job/netbeans/job/release112/26/artifact/dist/
> >
> > There's a minor chance this won't be beta3 still, so don't share links
> > elsewhere just yet!
> >
> > Best wishes,
> >
> > Neil
> >
> > -
> > To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org
> > For additional commands, e-mail: dev-h...@netbeans.apache.org
> >
> > For further information about the NetBeans mailing lists, visit:
> > https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
> >
> >
> >
> >
>


Re: Apache NetBeans 11.2-beta3 is Available for Testing!

2019-10-17 Thread reema . taneja

Latest build passed after correcting JDK config,

Beta3 based Linux and Windows installers:

https://builds.apache.org/view/M-R/view/NetBeans/job/netbeans-installers/

Thanks,

Reema

On 16/10/19 9:50 PM, Neil C Smith wrote:

On Wed, 16 Oct 2019 at 15:34, Geertjan Wielenga  wrote:

No installers until the final release.

Would be nice if we could get into a state where we could better test
installers before release.  However, just tried to trigger the
netbeans-installer build and it failed.  I assume this is recent
Jenkins environment changes, but I'll leave it for Reema to look at.

Best wishes,

Neil

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

For further information about the NetBeans mailing lists, visit:
https://urldefense.proofpoint.com/v2/url?u=https-3A__cwiki.apache.org_confluence_display_NETBEANS_Mailing-2Blists=DwIBaQ=RoP1YumCXCgaWHvlZYR8PZh8Bv7qIrMUB65eapI_JnE=I_-Y15BecdUmuYLJbvbi0hFUs7JgHZnV_jPFSP8DQF0=t9X8I1xHgCHLlVkTiakyBgpe4xzCps3PuIuqFXV9O9Y=CwV3lCuHBbjRInqYeVVrfdKJji6S_H3GSKIpwlUfoXk=





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

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