How to make a TopComponent undocked (from editor mode) be "always on top" ?

2023-12-29 Thread Jerome Lelasseux
If I undock a TopComponent from navigator or properties mode, the floating window will be "always on top". If I do the same for a TopCompoent in editor mode, it's not always on top. How can I get this editor window be "always on top" as wel ?  I searched for a property in the .wsmode files, but

Re: Form designer issue with Maven NB app

2023-12-04 Thread Jerome Lelasseux
Found the problem:  I changed some package base names while doing the Maven migration, and forgot to process the .form files accordingly.  Silly me Le dimanche 3 décembre 2023 à 21:15:09 UTC+1, Jerome Lelasseux a écrit : Hi, I migrated my NB app from Ant to Maven, when I run the

Form designer issue with Maven NB app

2023-12-03 Thread Jerome Lelasseux
Hi, I migrated my NB app from Ant to Maven, when I run the app everything is fine. But in the IDE when I switch to the "Design" view of a graphical component (JDialog, JPanel ...) I get 2 problems with the form editor: 1/ form editor shows text components with the string resource property key i

Re: Maven + NB platform app variants

2023-11-24 Thread Jerome Lelasseux
e too for the brave. :) /Patrik Den ons 22 nov. 2023 kl 21:25 skrev Jerome Lelasseux : Hello, I have 2 variants A and B of my NB platform app. B is just variant A + 2 additional modules and some branding. With Ant it was easy to setup. B only contained the 2 extra modules+branding and I jus

Maven + NB platform app variants

2023-11-22 Thread Jerome Lelasseux
Hello, I have 2 variants A and B of my NB platform app. B is just variant A + 2 additional modules and some branding. With Ant it was easy to setup. B only contained the 2 extra modules+branding and I just had to update cluster.path in B's platform.properties to also include variant A's cluster

Re: Why Maven build app always recompiles ?

2023-06-02 Thread Jerome Lelasseux
Thank you Martin that was my problem !   Switching OFF useIncrementalCompilation did the trick, it's really counter-intuitive... Le lundi 22 mai 2023 à 23:17:38 UTC+2, Martin Desruisseaux a écrit : Hello Jerome Le 22/05/2023 à 22:53, Jerome Lelasseux a écrit : On

Re: Distribution of a NB app with a native library ?

2023-06-02 Thread Jerome Lelasseux
Seems to be a common lib and available in most package managers. https://github.com/FluidSynth/fluidsynth/wiki/Download#distributions -mbien On 31.05.23 23:11, Jerome Lelasseux wrote: Please forgive me it's not a pure Netbeans question. The next version of my Net

Distribution of a NB app with a native library ?

2023-05-31 Thread Jerome Lelasseux
Please forgive me it's not a pure Netbeans question. The next version of my Netbeans platform music app uses a native library, the software synth Fluidsynth https://github.com/FluidSynth/fluidsynth/wiki/Download which is available on Win/Linux/Mac. Would you have recommandations on the best w

Re: Why Maven build app always recompiles ?

2023-05-22 Thread Jerome Lelasseux
Jerome Le lundi 22 mai 2023 à 11:48:50 UTC+2, Eric Barboni a écrit : Hi,   Maven will build all children, but should be faster on the compilation plugin part you should have something like that : Nothing to compile - all classes are up to date.   Best Regards Eric   De 

Re: Why Maven build app always recompiles ?

2023-05-22 Thread Jerome Lelasseux
l build all children, but should be faster on the compilation plugin part you should have something like that : Nothing to compile - all classes are up to date.   Best Regards Eric   De : Jerome Lelasseux Envoyé : vendredi 19 mai 2023 21:04 À : NetBeans Mailing List Objet : Why Maven bu

Ant > Maven migration script

2023-05-20 Thread Jerome Lelasseux
Below is a script that automates many of the Ant>Maven migration tasks for a NB platform app. I completed the migration of the build process, now I need to work on the installers/packaging. I discovered nbpackage, I'll have a look at it. Jerome GitHub - jjazzboss/NbMavenize: A script to migra

Re: Migrating NB platform app to maven

2023-05-20 Thread Jerome Lelasseux
2023 à 23:17:59 UTC+2, Jerome Lelasseux a écrit : What is the recommended way to bundle native libs in a module with Maven ? With Ant I just put the libs in /release/modules/xx and I was able to find them via InstalledFileLocator.getDefault().locate(). Jerome PS: I finally managed to run my

Why Maven build app always recompiles ?

2023-05-19 Thread Jerome Lelasseux
On my NB platform app, if I open a single module and build it, it recompiles only when source files are modified, as expected. But when I run Build on the parent project, maven always recompiles all modules. Is it normal ? Jerome App is here https://github.com/jjazzboss/JJazzLabTemp

Re: Migrating NB platform app to maven

2023-05-18 Thread Jerome Lelasseux
cript soon, it was a good way to start learning Maven Le mardi 16 mai 2023 à 18:52:55 UTC+2, Jerome Lelasseux a écrit : Thank you  Eric, indeed my migration script mixed up . and -, and I also spotted some wrong ArtefactId references... I'll fix it! Jerome Le mardi 16 mai

Re: Migrating NB platform app to maven

2023-05-16 Thread Jerome Lelasseux
interested in this script. Cheers Tom. Am 16.05.23 um 00:01 schrieb Jerome Lelasseux: > PS: I used a bash script to automate the migration process as much as > possible. When I'm done I'll be happy to share it -there is n

Re: Migrating NB platform app to maven

2023-05-15 Thread Jerome Lelasseux
nd artifact org.jjazz:org.jjazz.filedirectorymanager:jar:1.0-SNAPSHOT -> [Help 1] Le lundi 15 mai 2023 à 23:59:24 UTC+2, Neil C Smith a écrit : On Mon, 15 May 2023, 22:52 Jerome Lelasseux, wrote: Mark, > you should publish any local artifacts to your local maven repository.  Y

Re: Migrating NB platform app to maven

2023-05-15 Thread Jerome Lelasseux
.m2/repository/ directory structure to see what's cached.) -- Mark A. Flacy mfl...@verizon.net On Monday, May 15, 2023 3:26:03 PM CDT Jerome Lelasseux wrote: > I try to migrate my Ant-based NB platform app (~70 modules) to Maven, but > I'm new to Maven, so forgive the newbie question. &

Re: Migrating NB platform app to maven

2023-05-15 Thread Jerome Lelasseux
project.groupId}     org.jjazz.songstructure     ${project.version}                 ${project.groupId}     org.jjazz.utilities     ${project.version}                   UTF-8     Le lundi 15 mai 2023 à 22:40:56 UTC+2, Greenberg, Gary a écrit : You should provide your

Migrating NB platform app to maven

2023-05-15 Thread Jerome Lelasseux
I try to migrate my Ant-based NB platform app (~70 modules) to Maven, but I'm new to Maven, so forgive the newbie question. I created a new empty NB platform app with a sample module from the NB wizard, then I built from there. I used https://github.com/gephi/gephi  on GitHub as a kind of model

Re: Git branch display

2023-03-25 Thread Jerome Lelasseux
Not exactly what you ask, but the project tooltip shows the current branch, as shown below Jerome Le samedi 25 mars 2023 à 18:15:22 UTC+1, Admin @ Goodun a écrit : Is there a way of getting NetBeans to (always) display the git branch I currently am switched to? Mark (v17) --

How to programmatically access to the TopComponent tab ?

2023-03-17 Thread Jerome Lelasseux
Hi, I have several TopComponents opened in editor mode. I'd like to be able to drag an item from the content of TopComponent TC1 to TopComponent TC2. I can make it work (using the Swing DnD framework) if TC1 or TC2 is undocked. But if they are both docked, how to do it ? Setting my own Transfe

TopComponent position in mode

2023-01-26 Thread Jerome Lelasseux
Is there a way to programmatically add a (non-singleton) TopComponent at a specified index in a mode ? I know @TopComponent.Registration(...position)  but it only works for singleton component. And WindowManager.topComponentOpenAtTabPosition() is protected! ThanksJerome

Floating TopComponent without tab

2023-01-18 Thread Jerome Lelasseux
Hi, I use a TopComponent as a Midi editor window. There can be several Midi editor windows. I can float a Midi editor TopComponent using WindowManager.setTopComponentFloating(), but it is shown as a tab ("NewSong-User1") within an enclosing window, as shown in the picture below. I'd like t

Re: Netbeans API to install plugin from local .nbm file ?

2022-04-28 Thread Jerome Lelasseux
/OperationContainer.html  Now I need to test it... Le jeudi 28 avril 2022, 13:35:18 UTC+2, Jerome Lelasseux a écrit : Yes, but without using the Plugins dialog. Le jeudi 28 avril 2022, 01:00:39 UTC+2, Laszlo Kishalmi a écrit : You mean: Tools > Plugins > Downloaded > Ad

Re: Netbeans API to install plugin from local .nbm file ?

2022-04-28 Thread Jerome Lelasseux
Yes, but without using the Plugins dialog. Le jeudi 28 avril 2022, 01:00:39 UTC+2, Laszlo Kishalmi a écrit : You mean: Tools > Plugins > Downloaded > Add Plugins... ? On 4/27/22 14:26, Jerome Lelasseux wrote: Is there a Netbeans API to install a plugin from a l

Netbeans API to install plugin from local .nbm file ?

2022-04-27 Thread Jerome Lelasseux
Is there a Netbeans API to install a plugin from a local .nbm file ?    I know that the feature is supported (eg autoupdate), but I can't find the appropriate API... The scenario is that a user bought and downloaded a plugin (.nbm file from a 3rd-party web site), and in my NB platform app he wo

Problem enabling JDK17 jdk.incubator.foreign on NB13

2022-04-04 Thread Jerome Lelasseux
I have a Netbeans module which uses jdk.incubator.foreign from JDK17. It does compile OK when I add "--add-modules=jdk.incubator.foreign" in the module properties/Compiling options, but the NB editor still marks import statements with errors: import jdk.incubator.foreign.CLinker;   is marked "p

TopComponent question

2022-01-28 Thread Jerome Lelasseux
Hi, In my NB platform application I use annotations to have a unique TopComponent always opened at startup and not closable by user: ... @TopComponent.Description(    preferredID = "MixConsoleTopComponent",     persistenceType = TopComponent.PERSISTENCE_ALWAYS     ) @TopComponent.Registrat

Re : Re: Happy holidays all

2021-12-24 Thread Jerome Lelasseux
And another thank you for all the Apache Netbeans team. Jerome Envoyé depuis Yahoo Mail pour iPhone Le vendredi, décembre 24, 2021, 6:47 PM, jose.rodrig...@cenpalab.cu a écrit : December 24, 2021 12:23 PM, "Geertjan Wielenga" wrote: > Hi all, > > Happy holidays all. :-) > > It’s been anoth

Re: The Options ruban remains white with DarkLaf

2021-11-19 Thread Jerome Lelasseux
embre 2021, 21:14:22 UTC+1, Neil C Smith a écrit : On Thu, 18 Nov 2021 at 19:56, Jerome Lelasseux wrote: > The FlatLaf module was already a dependency. You might need to make sure you have both FlatLaf modules as dependencies.  At some point I added the non-API one in to fix something

Re: The Options ruban remains white with DarkLaf

2021-11-18 Thread Jerome Lelasseux
Mon, 15 Nov 2021, 21:15 Jerome Lelasseux, wrote: Sorry I meant FlatLaf Dark. I use the following in ModuleInstall::validate() NbPreferences.root().node("laf").put("laf", "com.formdev.flatlaf.FlatDarkLaf"); UIManager.installLookAndFeel(new UIMan

Re: The Options ruban remains white with DarkLaf

2021-11-15 Thread Jerome Lelasseux
Options ribbon becomes orange. Le lundi 15 novembre 2021, 22:15:40 UTC+1, Jerome Lelasseux a écrit : Sorry I meant FlatLaf Dark. I use the following in ModuleInstall::validate() NbPreferences.root().node("laf").put("laf", "com.formdev.flatlaf.FlatDarkLaf")

Re: The Options ruban remains white with DarkLaf

2021-11-15 Thread Jerome Lelasseux
ass.getName())); I tried the 2 options mentionned in the PR (below), it had some effect but not on the Options white ribbon... -J-Dflatlaf.useWindowDecorations=false \ -J-Dflatlaf.menuBarEmbedded=false Le lundi 15 novembre 2021, 16:46:14 UTC+1, Neil C Smith a écrit : On Sun, 14 Nov 202

The Options ruban remains white with DarkLaf

2021-11-14 Thread Jerome Lelasseux
Hi, I made a new release of my Netbeans platform application (NB 12.5, JDK11.0.13, DarkLaf) and I noticed that the Options ruban is now white (see image attached). It was dark when I built the previous release using NB12.3 (and it's also dark in the Options dialog of NB12.5 when using DarkLaf).

Re: NetBeans Platform "Golden Path"

2021-07-08 Thread Jerome Lelasseux
Chris, I devevelop an Ant-based Netbeans platform application (https://github.com/jjazzboss/JJazzLab-X) and had to follow this path too. I use only 2 external libraries that are packed in wrapper modules. I let Netbeans build the launchers and I have a shell script that prepare the packages f

Re: removing the "new project" support for Ant projects

2021-04-20 Thread Jerome Lelasseux
I have an ant-based NB platform application, moving to Maven is on my to-do list, but I know nothing about Maven. Some time ago I tried to find relevant help but I just found generic "move to maven" infos, so I gave up. > That said, perhaps we could get a write up on someone going through the

Re: [netbeans-platform] How to integrate UTF-8 .properties files efficiently?

2021-01-01 Thread Jerome Lelasseux
o for running, ride a bike, etc. On 12/26/20 8:52 AM, Jerome Lelasseux wrote: Well I've managed to alter my Ant build process to add UTF8>ISO5589-1  transcoding, but at the end of th day it's really not efficient... I came back to the source of the problem and checked N

Re: [netbeans-platform] How to integrate UTF-8 .properties files efficiently?

2020-12-26 Thread Jerome Lelasseux
;s easy to make it support UTF-8 as well, so I made the fix. Now I have trouble using this updated Netbeans code in my RCP application. I've tried many things but no success. What are the main steps to achieve this ? Jerome Le mercredi 23 décembre 2020 à 11:26:45 UTC+1, Jer

Re: [netbeans-platform] How to integrate UTF-8 .properties files efficiently?

2020-12-23 Thread Jerome Lelasseux
> Well since unfortunately the encoding of a property file is set as ISO-8859-1 > in it spec, I'd use a generator step in the build which would translate the > UTF-8 characters into \u of the final Bundle.properties. OK I've managed to use the -post-compile extension point to transcode the

Re: [netbeans-platform] programmatically call "Show Only Editor" on startup

2020-12-22 Thread Jerome Lelasseux
What error do you get ? Le mardi 22 décembre 2020 à 22:32:23 UTC+1, Ralf Eichinger a écrit : I tried @Override   public void componentOpened() {     Action action = FileUtil.getConfigObject("Actions/Window/org-netbeans-core-windows-actions-ShowEditorOnlyAction.instance", Action.clas

Re: [netbeans-platform] How to integrate UTF-8 .properties files efficiently?

2020-12-21 Thread Jerome Lelasseux
nce unfortunately the encoding of a property file is set as ISO-8859-1 in it spec, I'd use a generator step in the build which would translate the UTF-8 characters into \u of the final Bundle.properties. On 12/21/20 6:56 AM, Jerome Lelasseux wrote: I use the crowdin.com platform (fr

[netbeans-platform] How to integrate UTF-8 .properties files efficiently?

2020-12-21 Thread Jerome Lelasseux
I use the crowdin.com platform (free for open-source!) to get the translations done for my Netbeans RCP application. It gets synchronized automatically to GitHub nicely. The problem is that I pull UFT-8 encoded Bundle*.properties, and the RCP platform expects ISO-8859-1 encoding, so special ch

Re: Netbeans menus File, Edit... do not get localized

2020-12-21 Thread Jerome Lelasseux
ditions. Go to https://github.com/apache/netbeans-l10n and see how this can be done, using the german translations (locale_de) as a template. Boris On Fri, 18 Dec 2020 at 23:45, Jerome Lelasseux wrote: When I run my RCP application with run.args.extra=--locale fr:FR I get my own UI menu ite

Re: [netbeans-platform] programmatically call "Show Only Editor" on startup

2020-12-21 Thread Jerome Lelasseux
http://wiki.netbeans.org/DevFaqInvokeActionProgrammatically To find the action id behind a menu item, you can open layer.xml/ from your project (if you don't have a layer.xml yet, just create on). Then browse to Menu/View/Show Only Editor, then righ-click "Go to declaration": To run something upo

Netbeans menus File, Edit... do not get localized

2020-12-18 Thread Jerome Lelasseux
When I run my RCP application with run.args.extra=--locale fr:FR I get my own UI menu items localized but not Netbeans ones remain in english, like bar menu headers "File" or "Edit", the action "Exit", etc. What do I miss ? I use Netbeans 12.0

Localization issue with MenuBar(DataFolder) + declarative action registrations

2020-12-16 Thread Jerome Lelasseux
Hi I use the menuBar(DataFolder) constructor to automatically build a MenuBar from actions registered in the layer.xml: menuBar = new MenuBar(DataFolder.findFolder(FileUtil.getConfigFile("MyMenuBar"))); And below is an example of the ImportMix action in the "MixFile" submenu: @ActionID(categor

Re: NetBeans RCP

2020-07-10 Thread Jerome Lelasseux
Kristian, It might help you to see other Netbeans RCP app examples, like https://github.com/praxis-live/praxis-live  from Neil C Smith, or my JJazzLab repo https://github.com/jjazzboss/JJazzLab-X Jerome Le vendredi 10 juillet 2020 à 12:26:52 UTC+2, Kristian Rink a écrit : Thank

Re: How to use the new FlatLaf look & feel in a Netbeans application ?

2020-06-25 Thread Jerome Lelasseux
Understood, thanks for the links! Le jeudi 25 juin 2020 à 10:08:55 UTC+2, Neil C Smith a écrit : On Thu, 25 Jun 2020 at 00:40, Laszlo Kishalmi wrote: > NbPreferences.root().node( "laf" ).put( "laf", > "com.formdev.flatlaf.FlatDarkLaf" ); Somewhere really early, probably at an > @On

Re: How to use the new FlatLaf look & feel in a Netbeans application ?

2020-06-25 Thread Jerome Lelasseux
: NbPreferences.root().node( "laf" ).put( "laf", "com.formdev.flatlaf.FlatDarkLaf" ); Somewhere really early, probably at an @OnStart marked runnable. On 6/24/20 3:07 PM, Jerome Lelasseux wrote: Hi, I use NB 11.3 which includes the new FlatLaf dark look &am

How to use the new FlatLaf look & feel in a Netbeans application ?

2020-06-24 Thread Jerome Lelasseux
Hi, I use NB 11.3 which includes the new FlatLaf dark look & feel. I can use it for the IDE, but how to use it in my Netbeans platform app ? Jerome

How to block a global shortcut action on a TopComponent ?

2020-06-23 Thread Jerome Lelasseux
In my NB application I have always enabled actions for which a global shortcut is defined using annotations such as @ActionReference(path = "Shortcuts", name = "SPACE"). It works fine. I'd like these global shortcuts to NOT work when a specific TopComponent is active. Is there a way to do it in

Re: Command line parameter with JUnit

2020-06-20 Thread Jerome Lelasseux
samedi 20 juin 2020 à 19:17:16 UTC+2, Emilian Bold a écrit : Maybe just plain -D --emi On Sat, Jun 20, 2020 at 7:48 PM Jerome Lelasseux wrote: > > I need to change the logging level of some files during unit tests (NB 11.3). > > According to this wiki page >

Command line parameter with JUnit

2020-06-20 Thread Jerome Lelasseux
I need to change the logging level of some files during unit tests (NB 11.3). According to this wiki page http://wiki.netbeans.org/DevRunningTestsPlatformApp   it's possible to add command line parameters for unit tests using the "test.run.args" property. But when I add  "test.run.args=-J-DMyLo

No logging in NB output window

2020-05-17 Thread Jerome Lelasseux
Hi, I remember that with Netbeans8/JDK 8, when I ran my java program from Netbeans the logging output was shown in the Netbeans output window. And when an exception occured the stack trace was shown with hyperlinks to code source, which was super convenient. Today I use Netbeans 11.3 with AdoptO

Re: Generate missing switch cases for an enum

2020-03-19 Thread Jerome Lelasseux
the cursor inside the "switch" (or after it), there is a lightbulb on the left, and when I press Alt-Enter (or click on the lightbulb), and choose "Add missing case clauses", the missing cases are generated for me. Jan --emi On Thu, Mar 19, 2020 at 6:18 PM Jerome Lelasseu

Re: Generate missing switch cases for an enum

2020-03-19 Thread Jerome Lelasseux
I just realized the annoucement below was specific for C/C++... I use java. Le jeudi 19 mars 2020 à 17:14:25 UTC+1, Jerome Lelasseux a écrit : Hi, Since 8.1 Netbeans seems able to generate missing switch clauses:http://wiki.netbeans.org/NewAndNoteworthyNB81

Generate missing switch cases for an enum

2020-03-19 Thread Jerome Lelasseux
Hi, Since 8.1 Netbeans seems able to generate missing switch clauses:http://wiki.netbeans.org/NewAndNoteworthyNB81#Generate_missing_switch_clauses How to access it ? I tried ctrl-space in various places, alt-insert, without success.

Re: Autoupdate problem

2020-03-04 Thread Jerome Lelasseux
last local update. This page was useful: http://wiki.netbeans.org/FaqPluginManagerCustomization Jerome Le mercredi 4 mars 2020 à 13:53:26 UTC+1, Peter Hull a écrit : Hi Jerome, Did you ever fix this issue? Peter On Thu, 13 Feb 2020 at 22:32, Jerome Lelasseux wrote: > > I see the

Re: Autoupdate problem

2020-02-13 Thread Jerome Lelasseux
by the NB "Packages as NBM" command. Le mercredi 12 février 2020 à 20:21:15 UTC+1, Peter Hull a écrit : On Wed, 12 Feb 2020 at 17:27, Jerome Lelasseux wrote: > Maybe you viewed the xml file using the builtin Firefox viewer which hides > the XML declaration part... We

Re: Autoupdate problem

2020-02-12 Thread Jerome Lelasseux
I could, I would help, I just don't know -- and have no way to reproduce. > Maybe someone else with a NetBeans Platform app with a Plugin Manager etc, > other than the IDE itself, can advise. > > Gj > > On Tue, Feb 11, 2020 at 11:26 PM Jerome Lelasseux > wrote: >> &

Autoupdate problem

2020-02-11 Thread Jerome Lelasseux
Hello, I have set up an autoupdate center for my NB application (Windows JDK11.1). After a fresh install of an (old) app, the new modules are detected, user is notified and the app is automatically updated. If I generate yet another change (change code of one module, increase module spec in mani

Internationalization with Netbeans

2020-02-04 Thread Jerome Lelasseux
Hi, I need to internationalize my Netbeans platform app and I've never done this before, I have a few questions. I tried the Netbeans internationalization (NB11.1) wizard which looks very convenient, except that the wizard ignores the // NOI18N comment, so I have to manually uncheck all the s

Re: A Package for Generating Robust RCP Installers Using Maven

2019-11-21 Thread Jerome Lelasseux
Thank you ! I wish I had this 2 month ago, I already had to make my own installer generation process... Le jeudi 21 novembre 2019 à 03:40:07 UTC+1, William Reynolds a écrit : For my application, I've had need of some reliable, reusable NBI installer scripts, so I've implemented som

Re: Netbeans app. package on Mac OSX "Application incomplete or damaged"

2019-10-24 Thread Jerome Lelasseux
or PkgInfo file.  Malcolm On 17/10/2019, at 10:17 AM, Jerome Lelasseux wrote: Hello, I work on Win 10 Netbeans 11, AdoptOpenJDK11. I created a Mac distribution package for my Netbeans platform application : 1/ I run the built-in "buid-mac" target in build.xml, it creates the dist/jjaz

Netbeans app. package on Mac OSX "Application incomplete or damaged"

2019-10-16 Thread Jerome Lelasseux
Hello, I work on Win 10 Netbeans 11, AdoptOpenJDK11. I created a Mac distribution package for my Netbeans platform application : 1/ I run the built-in "buid-mac" target in build.xml, it creates the dist/jjazzlab.app directory 2/ I add 2 directories in jjazzlab.app/Contents/Resources/jjazzlab: "jd

Re: JJazzLab : a music application based on the Netbeans Platform

2019-10-06 Thread Jerome Lelasseux
st be connected to a Midi sound device Le dimanche 6 octobre 2019 à 13:47:54 UTC+2, Lucio Crusca a écrit : Il 04/10/19 23:48, Jerome Lelasseux ha scritto: > > It's here: https://www.jjazzlab.com    (NOT www.jazzlab.com !) > > If you're a musician and practice yo

Re: JJazzLab : a music application based on the Netbeans Platform

2019-10-05 Thread Jerome Lelasseux
Fixed. Le samedi 5 octobre 2019 à 18:38:32 UTC+2, Neil C Smith a écrit : On Sat, 5 Oct 2019, 17:09 Geertjan Wielenga, wrote: Yes, I simply renamed the clusters file in etc to jazzlab.sh.clusters to fix this. Yes, the cluster file is looked up based on the executable name, so rena

Re: JJazzLab : a music application based on the Netbeans Platform

2019-10-05 Thread Jerome Lelasseux
dback using other 32 bit Linux on a old netbook be helpful too? Emma On Sat, 5 Oct 2019, 08:37 Jerome Lelasseux, wrote: Thanks. I did some googling and checked the GlobalSign website, I only found a free SSL certificate (for website), not for code signing. I also found Certum which does &quo

Re: JJazzLab : a music application based on the Netbeans Platform

2019-10-05 Thread Jerome Lelasseux
with a 32-bit JRE? Are you particularly seeking Windows users or would feedback using other 32 bit Linux on a old netbook be helpful too? Emma On Sat, 5 Oct 2019, 08:37 Jerome Lelasseux, wrote: Thanks. I did some googling and checked the GlobalSign website, I only found a free SSL certificate (f

Re : Re: JJazzLab : a music application based on the Netbeans Platform

2019-10-05 Thread Jerome Lelasseux
lpful too? Emma On Sat, 5 Oct 2019, 08:37 Jerome Lelasseux, wrote: Thanks. I did some googling and checked the GlobalSign website, I only found a free SSL certificate (for website), not for code signing. I also found Certum which does "cheap" code signing for open source projects,

Re: JJazzLab : a music application based on the Netbeans Platform

2019-10-05 Thread Jerome Lelasseux
ficate. Le samedi 5 octobre 2019 à 01:03:00 UTC+2, Emilian Bold a écrit : Don't know what the proper channel is (Twitter?) but GlobalSign gives away free EV code signing certificates for open-source software/developers. --emi On Sat, Oct 5, 2019 at 12:57 AM Jerome Lelasseux wrot

JJazzLab : a music application based on the Netbeans Platform

2019-10-04 Thread Jerome Lelasseux
Dear Netbeans family, After many many (too many) evenings and week-ends spent learning and coding, I'm proud to make the 1st release of my free music application based on the Netbeans Platform. It's here: https://www.jjazzlab.com    (NOT www.jazzlab.com !) If you're a musician and practice your

Re : Re: Java 8 still on Java.com

2019-09-30 Thread Jerome Lelasseux
If you search the mail archive I asked the same question just a few weeks ago...   Following advises here I ended up :- creating an Ant target which depends on the built-in target that generate the standard NB zip installer, - and calls a bash script which prepare the distribution packages: copy

Re : Re: Error Illegal reflective access by org.netbeans.ProxyURLStreamHandlerFactory

2019-09-20 Thread Jerome Lelasseux
Just to understand, what is the potential impact of this warning on the application ? Envoyé depuis Yahoo Mail pour iPhone Le vendredi, septembre 20, 2019, 4:35 PM, Neil C Smith a écrit : On Fri, 20 Sep 2019 at 15:26, Jerome Lelasseux wrote: > When I start the launcher of my platform

Error Illegal reflective access by org.netbeans.ProxyURLStreamHandlerFactory

2019-09-20 Thread Jerome Lelasseux
Hello, When I start the launcher of my platform app from the command line I notice the error below, although my program runs fine. $ ./JJazzLab64.exeWARNING: An illegal reflective access operation has occurred WARNING: Illegal reflective access by org.netbeans.ProxyURLStreamHandlerFactory (file:/

Re: Releasing a Netbeans platform application to the general public

2019-09-19 Thread Jerome Lelasseux
I finally managed to create my Ant task which generates an InnoSetup installer. @Neil C Smith: PraxisLive code was a GREAT help, thanks ! Le mardi 17 septembre 2019 à 17:53:54 UTC+2, Neil C Smith a écrit : On Sun, 15 Sep 2019 at 22:06, Jerome Lelasseux wrote: > 1/ bundle a

Re: How to generate Javadoc for a module suite ?

2019-09-19 Thread Jerome Lelasseux
d.xml.                                                                 --- Le mardi 17 septembre 2019 à 22:33:28 UTC+2, Jerome Lelasseux a écrit : Using the IDE I can generate a javadoc project by project (module by module). But how to do it on a module suite?  Any help welcome. I tried adding an Ant target for this (reusing part o

Re: Releasing a Netbeans platform application to the general public

2019-09-17 Thread Jerome Lelasseux
Midi based application. Le mardi 17 septembre 2019 à 17:53:54 UTC+2, Neil C Smith a écrit : On Sun, 15 Sep 2019 at 22:06, Jerome Lelasseux wrote: > 1/ bundle a JRE and it must be OpenJDK > or > 2/ have the installer check if a JRE is there, and if not, ask user to > ins

How to generate Javadoc for a module suite ?

2019-09-17 Thread Jerome Lelasseux
Using the IDE I can generate a javadoc project by project (module by module). But how to do it on a module suite?  Any help welcome. I tried adding an Ant target for this (reusing part of the PraxisLive build.xml) to do this but it does not work :  I don't know how to get the -classpath paramet

Re : Re: Releasing a Netbeans platform application to the general public

2019-09-17 Thread Jerome Lelasseux
I agree... I think it was working like you said when I started my project many (many) years ago, but since then context has changed a lot, Windows does not embed anymore java by default, etc Envoyé depuis Yahoo Mail pour iPhone Le mardi, septembre 17, 2019, 12:05 PM, Judi Rastall a écrit  :

Re: Releasing a Netbeans platform application to the general public

2019-09-15 Thread Jerome Lelasseux
t be something to consider. Emilio From: Jerome Lelasseux Sent: Sunday, September 15, 2019 14:36 To: Emilian Bold Cc: NetBeans Mailing Subject: Re: Releasing a Netbeans platform application to the general public I see. I thought most Windows users had a JRE installed... Bundling a JRE adds 40MB to

Re: Releasing a Netbeans platform application to the general public

2019-09-15 Thread Jerome Lelasseux
gned installers would be nice if you don't want Windows to scare away your users. --emi dum., 15 sept. 2019, 18:22 Jerome Lelasseux a scris: Hello, I develop in my spare time a Netbeans platform music application targeted at individual musicians (professional or amateur). The application is

Re: Releasing a Netbeans platform application to the general public

2019-09-15 Thread Jerome Lelasseux
even think that’s available for download anymore, is it?  If that’s all you’ve tested with, i think you’d have to include it with your installation. Just my opinion, of course.tom On Sep 15, 2019, at 11:22 AM, Jerome Lelasseux wrote: Hello, I develop in my spare time a Netbeans platform music

Releasing a Netbeans platform application to the general public

2019-09-15 Thread Jerome Lelasseux
Hello, I develop in my spare time a Netbeans platform music application targeted at individual musicians (professional or amateur). The application is based on NB11/Java7. I test it on Win10(x64) and on a Linux Mint distribution, though I expect most of the users will be on Windows. At the begin

Re: Netbeans migration 8.2 => 11, annotation processor uncaught exceptions

2019-07-18 Thread Jerome Lelasseux
ml#enabledOn-- It sounds like you need to add that attribute to the ActionRegistration annotation, everywhere where you're using it. Gj On Thu, Jul 18, 2019 at 8:27 PM Jerome Lelasseux wrote: So I tried recompiling my RCP application with Netbeans 11 (Win10, Oracle JDK 8). I get

Re: Netbeans migration 8.2 => 11, annotation processor uncaught exceptions

2019-07-18 Thread Jerome Lelasseux
need to add that attribute to the ActionRegistration annotation, everywhere where you're using it. Gj On Thu, Jul 18, 2019 at 8:27 PM Jerome Lelasseux wrote: So I tried recompiling my RCP application with Netbeans 11 (Win10, Oracle JDK 8). I get these annotation exceptions for all

Netbeans migration 8.2 => 11, annotation processor uncaught exceptions

2019-07-18 Thread Jerome Lelasseux
es and readded them in Netbeans 11 to make sure I have the appropriate versions but it did not solve the problem... Any idea ? Le jeudi 18 juillet 2019 à 15:45:12 UTC+2, Geertjan Wielenga a écrit : Stop using 8.2 and use the latest Apache NetBeans instead, see netbeans.apa

Re : Re: Netbeans 8.2 became too slow

2019-07-18 Thread Jerome Lelasseux
Ok i will try. Envoyé depuis Yahoo Mail pour iPhone Le jeudi, juillet 18, 2019, 3:45 PM, Geertjan Wielenga a écrit : Stop using 8.2 and use the latest Apache NetBeans instead, see netbeans.apache.org. Gj On Thu, Jul 18, 2019 at 3:37 PM Jerome Lelasseux wrote: Hello, Sometimes Netbeans

Netbeans 8.2 became too slow

2019-07-18 Thread Jerome Lelasseux
Hello, Sometimes Netbeans takes forever at startup (more than 5 min of splash screen, usually it's about 10-20sec) and I don't understand why. During general use (compilation etc) it also became much slower than it used to be. I have not done changes to my PC which could explain this, other apps

Netbeans API website down ?

2019-05-22 Thread Jerome Lelasseux
Am I the only one to see Netbeans API websites down ? Below are the first results when I google "netbeans API", which I've been doing for years without any problem... http://bits.netbeans.org/10.0/javadoc/    => "You don't have permission to access /10.0/javadoc/on this server."  (same if I rep

How to remove the "Customize" menu item from toolbars popupmenu ?

2019-05-07 Thread Jerome Lelasseux
In my RCP app the Customize action from the toolbars popup menu confuses users and I'd like to remove it. Problem is that the popupmenu is not built from the layer file, it is hardcoded (module Core Windows / ToolbarConfiguration.java / method fillToolbarsMenu() method)... Is there a workaroun

Re: New @ActionState annotation doc ?

2019-05-07 Thread Jerome Lelasseux
o point in googling when you know the sources are available directly on GitHub, i.e., here in this case, lots of info in there: https://github.com/apache/netbeans/blob/master/platform/openide.awt/src/org/openide/awt/awt/ActionState.java Gj On Tue, May 7, 2019 at 9:25 AM Jerome Lelasseux wrote:

New @ActionState annotation doc ?

2019-05-07 Thread Jerome Lelasseux
Hello, I switched from 8.2 to 11 and I get warning messages about my now deprecated BooleanStateActions. The API doc recommends to use the new @ActionState annotation instead, but the ActionState javadoc is missing, and I could not find help on Google... Jerome

Re: My Netbeans RCP app fails when launched via the Netbeans-generated installer

2019-04-16 Thread Jerome Lelasseux
s.org - org.netbeans.autoupdate.issues - MarkMail | | | | [Bug 257807] New: Cannot run zipped distribution build on top of platfor... | | | Le lundi 15 avril 2019 à 22:44:38 UTC+2, Jerome Lelasseux a écrit : Hello, My Netbeans RCP application compiles and works fine when started

My Netbeans RCP app fails when launched via the Netbeans-generated installer

2019-04-15 Thread Jerome Lelasseux
o "verify-class-linkage" issue when I build the app. The only external library I use in the application is XStream which was added using a Module library wrapper. I have really no idea what to try to solve this... Thanks for your help. Jerome Lelasseux