Migrating Bugzilla bugs to JIRA

2018-02-17 Thread Eirik Bakke
Is there an established process for creating new issues in JIRA that already exist in the old Bugzilla, once they have been confirmed to still exist in Apache NetBeans 9.0 Beta? (I didn't find mention of this at https://cwiki.apache.org/confluence/display/NETBEANS/Submitting+issues+in+JIRA ) A

Re: Apache HTML/Java UI instead of ... Oracle will remove JavaFX from Oracle JDK

2018-03-12 Thread Eirik Bakke
All of Minecraft (acquired by Microsoft in 2014 for 2.5 billion dollars) is written in Java, using LWJGL to access OpenGL. So even if Swing and AWT dies completely in 10 years

Bugs potentially relating to nb-javac

2018-03-27 Thread Eirik Bakke
I've now used NetBeans 9.0 Beta for the six weeks since it was released. I found several bugs that are potentially related to the nb-javac plugin: NETBEANS-455 "The bytes do not represent a valid class" error while invoking the "Apply Code Chan

Re: Help wanted with fixing NetBeans 9.0 blockers

2018-03-27 Thread Eirik Bakke
> Right now there are only 4 blockers so let's not allow this number to grow! :) If I were to nominate a few bugs for high priority (though maybe not blocking-level priority), here are some: * NETBEANS-403 Pressing Home/End scrolls to beginning

Re: Bugs potentially relating to nb-javac

2018-03-28 Thread Eirik Bakke
tacktrace, having a way to reproduce a problem usually >leads to much faster and efficient fix. > >This is particularly true for (nb-)javac, where the problem often is that >something didn't happen even though it should have, and the observable >exception is only a consequence o

Re: Exception reporting broken

2018-03-28 Thread Eirik Bakke
Could this be a case of someone importing java.sql.Date by accident when only java.util.Date is needed? In JDK8 this would not cause an immediate problem, but JDK9 might have moved the java.sql.* classes to a separate now-inaccessible module. On 3/28/18, 10:06 AM, "Antonio" wrote: >Mmmm java

Re: Netbeans encoding

2018-04-20 Thread Eirik Bakke
TB> That's not that uncommon, but the right solution is to *detect* that the output is UTF-8 when the IDE runs whatever it is you're running. That's hard to do in general, unfortunately. Web browsers do character set detection by a statistical analysis of character frequencies in input documents [

Re: dpi on Windows Java 9

2018-04-22 Thread Eirik Bakke
JDK now has a standard way of loading HiDPI icons on both MacOS, Linux, and Windows: An icon named "foo.png" can be paired with an icon named "f...@2x.png" of double resolution. Swing will then pick the best icon to use at any given point, even when a window is dragged from a HiDPI screen to a non-

Re: Time to branch for the release candidate?

2018-04-26 Thread Eirik Bakke
Here's a bug, with a pull request and some discussion, that's not quite a blocker (it existed in 8.2) but still arguably critical: https://issues.apache.org/jira/browse/NETBEANS-403 "Pressing Home/End scrolls to beginning/end of whole document if tooltip is open" There's an ongoing discussion o

Re: AW: (Git) Diff Window horizontal space rescue

2018-05-04 Thread Eirik Bakke
I agree with Emi to avoid adding options for everything. On the other hand, I think the Diff panel should remain a regular TopComponent--those can be undocked, full-screened, moved to different monitors, and so on. Making it into a Dialog is a step backwards, in my opinion. But the internal layout

Re: AW: (Git) Diff Window horizontal space rescue

2018-05-04 Thread Eirik Bakke
age --- On 4 May 2018 6:39 PM, Matthias Bläsing mailto:mblaes...@doppel-helix.eu>> wrote: Hi, Am Freitag, den 04.05.2018, 14:42 + schrieb Eirik Bakke: > On the other hand, I think the Diff panel should remain a regular > > TopComponent--those can be undocked, full-scr

Re: AW: (Git) Diff Window horizontal space rescue

2018-05-10 Thread Eirik Bakke
onents that keep eating vertical space and leave our users >see 10 lines for diffs. The classical 80x25 terminal has better >ergonomics... > >Tangentially, I also speculate users generally have a single undocked >topcomponent floating which means that title tab is redundant. > >--e

Re: Postgres JDBC driver

2018-05-29 Thread Eirik Bakke
> If Postgres is the last driver still bundled with NetBeans, are the above > steps even worth the effort? Other JDBC drivers which could be included, with Apache-compatible licenses: * Microsoft SQL Server: https://github.com/Microsoft/mssql-jdbc/tree/v6.5.2 * SQLite: https://github.com/xerial/s

Re: NetBeans celebrates 1.7 million active users

2018-05-31 Thread Eirik Bakke
Those are some great stats. Does/will the Apache version of NetBeans still incorporate the telemetry that allows these statistics to be collected? How does it work? Does this exclude users that opted out of statistics collection? (Is there even such an option somewhere?) It would be great to have

Re: How to implement a new language support?

2018-06-01 Thread Eirik Bakke
I have used both JavaCC and ANTLR in the past, and I highly recommend using ANTLR for new projects. You can use the following adapter class to hook ANTLR’s org.antlr.v4.runtime.CharStream interface up to NetBeans’ org.netbeans.spi.lexer.LexerInput interface: https://gist.github.com/eirikbakke/

Re: How to implement a new language support?

2018-06-01 Thread Eirik Bakke
Ah, sorry, here’s the latest version of the LexerInputCharStream file: https://gist.github.com/eirikbakke/fdda0e6b43ed1b2d54eb (This one avoids the Google Guava dependency.) — Eirik On 6/1/18, 2:03 PM, "Eirik Bakke" mailto:eba...@ultorg.com>> wrote: I have used both JavaCC

Re: Questions about contributing code and developing on top of Platform 9.0

2018-06-18 Thread Eirik Bakke
2) 10 minute turnaround time for fix-build-run-test cycle is too much. This is only for the initial build. After that, you just need to rebuild the module you¹re working on, which takes a few seconds. For instance, this morning I was working on a small improvement in the editor¹s line wrap featu

Re: Importing the NekoBean page to netbeans.apache.org

2018-07-05 Thread Eirik Bakke
The website at http://nekobean.net is quite amazing. If NetBeans ever wanted a *very distinctive* brand identity, here’s a sure candidate :-). — Eirik On 7/4/18, 1:55 PM, "Junichi Yamamoto" mailto:junichi0...@gmail.com>> wrote: Hi, We would like to import the NekoBean page[1] to netbeans.apa

Running NB tests (Error initializing QuantumRenderer at com.sum.javafx.tk.quantum.QuantumRenderer)

2018-07-12 Thread Eirik Bakke
Hi, NetBeans people. I have successfully managed to compile and run the Apache NetBeans from the sources at https://github.com/apache/incubator-netbeans using "ant" and "ant tryme". Now I'm trying to run the tests by running "ant test". Eventually, the command hangs after the stack trace pasted b

Re: JigSaw-ing NetBeans?

2018-07-14 Thread Eirik Bakke
One of the great things about the NetBeans module system is that adding a dependency on module X does _not_ permit you to use classes from X's own dependencies (transitive dependencies). Is this also the case with Jigsaw? -- Eirik On 7/14/18, 1:35 AM, "Laszlo Kishalmi" mailto:laszlo.kisha...@

Re: JigSaw-ing NetBeans?

2018-07-15 Thread Eirik Bakke
Ah, thanks for the explanation! -- Eirik On 7/14/18, 1:27 PM, "Jan Lahoda" wrote: >On Sat, Jul 14, 2018 at 1:00 PM, Eirik Bakke wrote: > >> One of the great things about the NetBeans module system is that adding >>a >> dependency on module X does _not_ perm

Does Travis and/or Jenkins run the NetBeans test suite?

2018-07-15 Thread Eirik Bakke
When I make a pull request on GitHub, there is a nice little checkmark saying "All checks have passed", with a link to a Travis CI build (e.g. https://travis-ci.org/apache/incubator-netbeans/builds/395547620?utm_source=github_status&utm_medium=notification ). Looking at the raw output of the Tr

Re: Does Travis and/or Jenkins run the NetBeans test suite?

2018-07-18 Thread Eirik Bakke
.com>> wrote: FYI: https://builds.apache.org/job/incubator-netbeans-linux/ and https://builds.apache.org/job/incubator-netbeans-windows run platform tests. -jt Dne neděle 15. července 2018 18:47:51 CEST, Eirik Bakke napsal(a): When I make a pull request on GitHub, there is a nice little checkmark sa

RE: Does Travis and/or Jenkins run the NetBeans test suite?

2018-07-25 Thread Eirik Bakke
ncubator-netbeans-linux/ > and > https://builds.apache.org/job/incubator-netbeans-windows > run platform tests. > Gj On Wed, Jul 18, 2018 at 1:43 PM, Eirik Bakke wrote: > Looking at the "last stable build" of incubator-netbeans-linux, this &

RE: Does Travis and/or Jenkins run the NetBeans test suite?

2018-07-25 Thread Eirik Bakke
king tests that fail randomly or were known to fail but hadn't been fixed, so the test suite didn't count them, or flagged an unexpected pass. Maybe that's being used? -Tim On Wed, Jul 25, 2018 at 12:54 PM Eirik Bakke wrote: > Partially--my follow-up questions are: >

Re: Maven artefacts [WAS: Re: [VOTE] Release Apache NetBeans 9.0 (incubating) [vote candidate 3]]

2018-07-29 Thread Eirik Bakke
Great to see NetBeans 9.0 released! I, too, would love to use it for my platform application (which currently uses pre-Apache RELEASE82 via maven). I know how to build NetBeans with ant--but how does one build/install the corresponding maven artifacts? -- Eirik On 7/9/18, 11:52 AM, "Luff,Chris

Re: NB 9 Platform Maven arifacts

2018-08-22 Thread Eirik Bakke
> I would rather add them to my internal repo and be able to find them than have to wait. Can we provide some instructions on how to do this. +1. I'd love to bump my platform application to NB9 so that it can start using the latest JDK--in particular because of improved HiDPI support on Windows.

RE: Failing builds

2018-08-22 Thread Eirik Bakke
If I understand correctly, there are now two separate build systems being used--Jenkins, and Travis. The latter is the one that gives a "green light" on Github's pull request page ("All checks have passed"), but it does not seem to run any tests. So GitHub pull requests will show a green light e

RE: NB 9 Platform Maven arifacts

2018-08-23 Thread Eirik Bakke
sight > and Delivery Dev | chris.l...@cerner.com<mailto:chris.l...@cerner.com> > | Cerner Limited<http://www.cerner.com/> > > On Aug 22, 2018, at 4:43 PM, Eirik Bakke > mailto:ebak k...@ultorg.com>> wrote: > > I would rather add them to my internal repo an

RE: NB 9 Platform Maven arifacts

2018-08-29 Thread Eirik Bakke
se RELEASE90mybuild. -- Eirik -----Original Message- From: Eirik Bakke Sent: Thursday, August 23, 2018 8:26 PM To: dev@netbeans.incubator.apache.org Subject: RE: NB 9 Platform Maven arifacts Ah--thank you! -- Eirik -Original Message- From: Geertjan Wielenga Sent: Thursday, A

No IDE console output from platform app on Windows/maven/Java 9?

2018-08-30 Thread Eirik Bakke
I have a maven-based NetBeans Platform app now using the 9.0-vc3 version of the platform libraries. During development, I'm running the application from the IDE, which works fine on Java 8. However, when I switch to Java 9 or Java 10, there is no console output from the platform application sho

RE: No IDE console output from platform app on Windows/maven/Java 9?

2018-09-05 Thread Eirik Bakke
I have added this as an issue against the nbm-maven-plugin, and added some more details about what I've tried so far: https://github.com/mojohaus/nbm-maven-plugin/issues/45 Still not sure how to solve this. -- Eirik -Original Message- From: Eirik Bakke Sent: Thursday, Augu

RE: Weird behavior since the nb-javac update

2018-09-06 Thread Eirik Bakke
Yep, I can see this behavior too after the javac update (didn't have a chance to try before updating). -Original Message- From: Thilina Ranathunga Sent: Thursday, September 6, 2018 7:12 AM To: dev@netbeans.incubator.apache.org Subject: Re: Weird behavior since the nb-javac update Broke

RE: Weird behavior since the nb-javac update

2018-09-06 Thread Eirik Bakke
I also get this exception every now and then now: java.lang.NoSuchMethodError: com.sun.tools.javac.code.Scope$NamedImportScope.(Lcom/sun/tools/javac/code/Symbol;Lcom/sun/tools/javac/code/Scope;)V at org.netbeans.api.java.source.SourceUtils.resolveImport(SourceUtils.java:427) at

RE: Blurry font with NetBeans 9.0

2018-09-07 Thread Eirik Bakke
Hi, Christian. I have NetBeans 9.0 running very well on a Windows 10 HiDPI screen at either 150% or 200% scaling. It's essential to use the latest Java--I use 10.0.2. You also need to right click the "bin\netbeans64.exe" file, or whichever shortcut you're using to open NetBeans, go to the "Comp

RE: Blurry font with NetBeans 9.0

2018-09-07 Thread Eirik Bakke
I have added https://issues.apache.org/jira/browse/NETBEANS-1227 to indicate that the NetBeans launcher should eventually declare itself as DPI-aware, like JDKs javaw.exe already does. -- Eirik -Original Message- From: Eirik Bakke Sent: Friday, September 7, 2018 9:48 AM To: dev

RE: AW: (Git) Diff Window horizontal space rescue

2018-09-07 Thread Eirik Bakke
On the topic of saving space, I have implemented a patch for https://issues.apache.org/jira/browse/NETBEANS-731 , which hides the menu bar in full screen mode (while letting the user still access it by moving the mouse to the top of the screen). This is standard behavior on MacOS, but not on oth

RE: Blurry font with NetBeans 9.0

2018-09-07 Thread Eirik Bakke
t may be useful to tell AWT as well. I have been running NetBeans for years on a high dpi screen. Zoom is not the solution. -Tim On Fri, Sep 7, 2018 at 10:21 AM Eirik Bakke wrote: > I have added https://issues.apache.org/jira/browse/NETBEANS-1227 to > indicate that the NetBeans launcher

RE: dpi on Windows Java 9

2018-09-11 Thread Eirik Bakke
I've submitted a pull request that adds scalable icons for the most important window system icons, that is those in o.n.swing.tabcontrol and openide.awt, starting with the Windows L&F (plus a couple of platform-independent icons): https://github.com/apache/incubator-netbeans/pull/859 LAF icons,

RE: Blurry font with NetBeans 9.0

2018-09-18 Thread Eirik Bakke
one physical pixel. There are a couple of system properties that may be useful to tell AWT as well. I have been running NetBeans for years on a high dpi screen. Zoom is not the solution. -Tim On Fri, Sep 7, 2018 at 10:21 AM Eirik Bakke wrote: > I have added https://issues.apache.org/jira/b

RE: Blurry font with NetBeans 9.0

2018-09-18 Thread Eirik Bakke
: Blurry font with NetBeans 9.0 Yes, so again I don’t have Problems with HiDPI anymore. No Blurry font, no to small or to big, but when I move my window to a non HiDPI monitor and with an other Resolution, it will gets really big. Von: Eirik Bakke Gesendet: Dienstag, 18. September 2018 15:09 A

RE: Blurry font with NetBeans 9.0

2018-09-18 Thread Eirik Bakke
false and uiScale=2 AND the Override high DPI scaling behaviour -> Application. Thx. Will try this. Von: Eirik Bakke Gesendet: Dienstag, 18. September 2018 15:31 An: dev@netbeans.incubator.apache.org Betreff: RE: Blurry font with NetBeans 9.0 Hmm, I haven't seen that problem before. E

RE: Pull Request review before NetBeans 10!

2018-09-30 Thread Eirik Bakke
Beware that the Windows launcher seems to have a bug, where the console is not suppressed when the EXE file is launched from a shortcut or from the Windows explorer. That was two weeks ago--I reported this as https://issues.apache.org/jira/browse/NETBEANS-1308 . For anyone who tries the latest

RE: Pull Request review before NetBeans 10!

2018-10-02 Thread Eirik Bakke
I just tried 10vc1 and can confirm that NETBEANS-1308 (Windows launcher fails to suppress console) is still present. -- Eirik -Original Message- From: Eirik Bakke Sent: Sunday, September 30, 2018 9:09 PM To: dev@netbeans.incubator.apache.org Subject: RE: Pull Request review before

RE: Some info for NetBeans 10 VC 1

2018-10-04 Thread Eirik Bakke
s in your setup. (Again, this will be the default setting in the future.) I see from your screenshot that your menu bar is blurry (but not the title bar), suggesting an incorrect HiDPI setting. -Original Message- From: Eirik Bakke Sent: Thursday, October 4, 2018 1:41 PM To: 'dev@netb

RE: Blurry font with NetBeans 9.0

2018-10-04 Thread Eirik Bakke
/WindowsSwingMultiMonitorTest.png for an illustration.) This one creates some quite annoying visual artifacts in the NetBeans Projects pane, but we probably have to wait for the underlying problem to be fixed in the JDK. -- Eirik -Original Message- From: Eirik Bakke Sent: Tuesday

RE: Some info for NetBeans 10 VC 1

2018-10-04 Thread Eirik Bakke
Regarding 1: This is likely a JDK bug. Could you run the application at https://gist.github.com/eirikbakke/b85b67dae62993e3cbee51e4c9e6c214 and provide the output? -- Eirik -Original Message- From: Christian Lenz Sent: Thursday, October 4, 2018 12:01 PM To: dev@netbeans.incubator.apac

RE: NetBeand Default HeapSize

2018-10-07 Thread Eirik Bakke
TL;DR: I would increase Xmx to 50% of system memory by default. > Right now NetBeans calculates it's default heap size on 20% of the system > memory, but cap it on 1Gb. It's worse than that--this is the _maximum_ heap size, not the default (at least on MacOS on Linux). I ran on the default for

RE: NetBeans Default Maximum HeapSize

2018-10-07 Thread Eirik Bakke
aszlo Kishalmi Sent: Sunday, October 7, 2018 2:37 PM To: dev@netbeans.incubator.apache.org Subject: Re: NetBeans Default Maximum HeapSize Fixed the subject to be more accurate. On 10/07/2018 11:31 AM, Eirik Bakke wrote: > TL;DR: I would increase Xmx to 50% of system memory by default. > &

RE: different FileChooser behavior with JDK 11.0.1 on Windows than with 11.0.0

2018-10-17 Thread Eirik Bakke
> [weird] behavior when I tried to open a new project > What does the NetBeans FileChooser different than the default Java one? The "Open Project" file chooser contains special logic to recognize NetBeans project folders as such, so that they can be displayed with a proper icon, and so that doub

RE: Hacktoberfest

2018-10-18 Thread Eirik Bakke
I suspect having two issue trackers active at the same time would become very messy. Some bugs will have JIRA issue numbers, others will have GitHub-generated issue numbers, some bugs will exist in just one system, some in both etc. And if people can file bugs without being aware of JIRA, there

RE: Some info for NetBeans 10 VC 1

2018-10-18 Thread Eirik Bakke
Eirik -Original Message- From: Christian Lenz Sent: Thursday, October 18, 2018 3:40 AM To: dev@netbeans.incubator.apache.org Subject: AW: Some info for NetBeans 10 VC 1 Hey Eirik, did you have a look into my Output, that I pasted below your gist? Cheers Chris Von: Eirik Bakke Ges

RE: Maven Artifacts for Release 9

2018-10-23 Thread Eirik Bakke
I don't think they're hosted yet; the TODO is at https://issues.apache.org/jira/browse/NETBEANS-467 . But see my comment at the end there for the command required to build them yourself. -- Eirik -Original Message- From: Mario Schroeder Sent: Tuesday, October 23, 2018 1:15 PM To: dev@

RE: High level status of Apache NetBeans

2018-10-24 Thread Eirik Bakke
Very informative interview! Thank you for being a great ambassador and catalyst for the community! -- Eirik -Original Message- From: Geertjan Wielenga Sent: Wednesday, October 24, 2018 6:14 PM To: dev Subject: High level status of Apache NetBeans FYI: Small interview with me at Oracl

RE: recommendation for language support

2018-10-30 Thread Eirik Bakke
I recommend ANTLR over JavaCC for new projects (I've used both). ANTLR is a very good-quality library. You can use the following adapter class to hook ANTLR’s org.antlr.v4.runtime.CharStream interface up to NetBeans’ org.netbeans.spi.lexer.LexerInput interface: https://gist.github.com/eirikbak

RE: NetBeans 10.0 vc2

2018-10-31 Thread Eirik Bakke
I think the Windows Defender thing pops up whenever someone runs an executable that no one (or very few Windows users) has ever run before. Since the launcher executable has recently been updated, this is the case here, but was not the case for the previous launcher (which had been used by many

RE: NetBeans 10.0 vc2

2018-10-31 Thread Eirik Bakke
c2 Well, that's strange. AFAIK I still used the old 9.0 launcher in 10.0vc2 The new launcher just has been merged into master today. So it will be part of vc3 On 10/31/18 1:52 PM, Eirik Bakke wrote: > I think the Windows Defender thing pops up whenever someone runs an > executable that

RE: NetBeans 10.0 vc2

2018-10-31 Thread Eirik Bakke
are not working well, I will try to create a Video. Von: Eirik Bakke Gesendet: Mittwoch, 31. Oktober 2018 22:01 An: dev@netbeans.incubator.apache.org Betreff: RE: NetBeans 10.0 vc2 > Well, that's strange. AFAIK I still used the old 9.0 launcher in > 10.0vc2 Oh, right. Hmm. Not sure

RE: Openjdk Quality Outreach

2018-11-02 Thread Eirik Bakke
It's already possible to submit OpenJDK bugs at https://bugreport.java.com/bugreport/ , it's just that we don't get direct access to the OpenJDK JIRA. If they opened it up completely, they would presumably get spammed with thousands of Minecraft-related complaints... The following bugs were all

RE: NetBeans 9+ frequently corrupting target .class files in large Maven projects

2018-11-24 Thread Eirik Bakke
Yes, corrupted class file bugs (Absent Code attribute, Duplicate method name etc.) was the one major problem for me going from NetBeans 8.2 to 9.0. > I'd try to make a fix, but this is one of those bugs that involves an > interaction between several far-flung components (maven project plugin, >

RE: Profiler crash for NB10

2018-11-26 Thread Eirik Bakke
I tested the new DLL--it works!! Here's what I did: 1) Start a Java profiling session via the "-agentpath" JVM argument and invoking "Attach to External Process". Shortly thereafter the JVM crashes with the "SUREFIRE-859: # EXCEPTION_ACCESS_VIOLATION (0xc005) at pc=0x5f131f25, pid=

RE: Profiler crash for NB10

2018-11-26 Thread Eirik Bakke
icense for redistribution? I have yet to check this but I'm happy about Eirik's report. So, just to confirm, does profiling still work with Java 8? --emi On Mon, Nov 26, 2018 at 5:42 PM Eirik Bakke wrote: > > I tested the new DLL--it works!! > > Here's what I did: &g

RE: Lexer and LexerInput woes w/ dynamically created LanguageHierarchy

2018-11-30 Thread Eirik Bakke
Just in case it's useful: A while back I wrote a very carefully implemented adapter from NetBeans' org.netbeans.spi.lexer.LexerInput class to ANTLR's org.antlr.v4.runtime.CharStream class: https://gist.github.com/eirikbakke/51cf4c9375880acd4741/c83dd7e64b91674c6c2bf9d8473c7249a6d66ceb The equiv

RE: Publish a fixed version of a plugin on the portal

2018-12-03 Thread Eirik Bakke
> And if we are lucky we can have the nb-darcula as an integral part of the > platform for the Next release (post 10.0). Does that mean moving the plugin into the official Apache NetBeans project? (The incubator-netbeans github repository?) That would be lovely. The next (post 10.0) NetBeans re

RE: How to get NetBeans 10 as maven dependencies

2018-12-28 Thread Eirik Bakke
Hi, Sergio. I have updated my comment in https://issues.apache.org/jira/browse/NETBEANS-467 to include some more instructions about the nb-repository-plugin. I actually had to build it myself from sources as well. Sorry to cause confusion! -- Eirik -Original Message- From: Sérgio Lopes

RE: Find Bugs Integration - which donation?

2019-01-07 Thread Eirik Bakke
> FindBugs is effectively dead, but SpotBugs has becomes its successor, and > supports up to Java 9 and is in active development. To clarify, it seems that SpotBugs is a fork of FindBugs, cloned November 2016, with some light branding changes. So it's really the same piece of software from an I

Re: Aw: Re: Please vote for a new NetBeans logo

2016-12-25 Thread Eirik Bakke
Not sure who's eligible to vote, but I would vote for number 3. -- Eirik (Platform developer) On 12/25/16, 2:00 PM, "Christian Lenz" wrote: >Please if someone can't vote, leave a comment for what you want to vote >and I will change the number. >Yes a feather and apache would be ok for me (in my

Re: Reproducible Builds

2017-04-08 Thread Eirik Bakke
That sounds quite useful. When setting up a custom build of the NetBeans Platform for use with a platform application, I love the idea of being able to verify that my build system's output matches the official binaries exactly before I start applying any patches myself. -- Eirik On 4/8/17, 9:07 A

Re: AW: Introductory Email

2017-06-16 Thread Eirik Bakke
Yes--I've used both ANTLR and JavaCC, and for new projects, ANTLR4 seems to be the best alternative these days. That may not always have been the case, but ANTLR is now very mature and generally a pleasure to work with. Note that to use ANTLR with the NetBeans language infrastructure, an adapter

Re: Do not use java.net.URL as keys in Maps

2017-10-30 Thread Eirik Bakke
Just to add another example of a NetBeans bug related to equals/hashCode on URL (fixed last year): https://netbeans.org/bugzilla/show_bug.cgi?id=267962 ("30s delay upon first connecting to a localhost database (due to URLClassLoader trying to DNS-resolve nbinst URL in URL.hashCode)") -- Eirik O

RE: [VOTE] PMC chair for Apache NetBeans

2019-03-01 Thread Eirik Bakke
+1 -- Eirik -Original Message- From: Glenn Holmer Sent: Friday, March 1, 2019 9:29 AM To: dev@netbeans.incubator.apache.org Subject: [VOTE] PMC chair for Apache NetBeans This voting thread is to confirm Geertjan Wielenga as the first PMC chair of NetBeans as we leave incubation and be

RE: [VOTE] Apache NetBeans graduation to Top Level Project

2019-03-11 Thread Eirik Bakke
+1 -- Eirik -Original Message- From: Jan Lahoda Sent: Monday, March 11, 2019 3:47 PM To: d...@netbeans.apache.org Subject: Re: [VOTE] Apache NetBeans graduation to Top Level Project +1! Jan On Mon, Mar 11, 2019 at 11:48 AM Geertjan Wielenga wrote: > Hi all, > > After a discussion

RE: Feedback: Release Management of Apache NetBeans (incubating) 11.0

2019-04-05 Thread Eirik Bakke
Hear, hear--thank you for the great work, Laszlo! Maybe the "Update titlebar version" issue ( https://issues.apache.org/jira/browse/NETBEANS-2111 for 11.0, with associated pull request as an example) should also be added to the release process list at https://issues.apache.org/jira/browse/NETBE

HiDPI/Retina improvements, confluence page

2019-04-05 Thread Eirik Bakke
There has been recurring discussions about making NetBeans look better on HiDPI (retina) screens. This is a large umbrella issue, touching all three major operating systems (Windows, Linux, and MacOS), with many subtasks involved. I have created a Confluence page which summarizes the current sta

NetBeans GUI icons, who drew them?

2019-04-05 Thread Eirik Bakke
There are over 3000 bitmap icon images in the NetBeans codebase. Probably at least several hundred of these are frequently seen by everyday NetBeans users. The page below shows all the unique "gif" or "png" files that existed in the NetBeans mercurial repo prior to the Apache transition: htps:/

RE: Editor tab control UI replacement

2019-04-11 Thread Eirik Bakke
I tried it on Windows 10--I must say I strongly prefer the previous tab appearance (which you also wrote, so no shame in that! :-) UIs are usually improved by removing unnecessary "bling", not adding more of it. The existing tab controls look simple and professional, and attract just about the