You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by ne...@apache.org on 2023/01/25 17:01:40 UTC

[netbeans] branch master updated (31028d282a7 -> d194c2f229a)

This is an automated email from the ASF dual-hosted git repository.

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


    from 31028d282a7 Merge pull request #5314 from neilcsmith-net/nb170-issues
     add 361fb569856 Update FlatLaf from 2.6 to 3.0; added macOS light and dark themes
     add 06e18b548bb FlatLaf: renamed macOS themes to Cupertino
     add d701a20f78e Merge pull request #5298 from DevCharly/flatlaf-3.0
     add e38c9e57613 Improving indexing for (massivelly)  erroneous sources.
     add cffa8f2ea69 Handling pattern switches in indexing.
     add 60e5f0223d1 Merge pull request #5172 from jlahoda/improve-indexing-with-errors
     add 3d4fb684021 UI: fixed conditional gradle version info label.
     add d78728dec84 Merge pull request #5343 from mbien/gradle-options-combo-fix
     add 55a2b6af0e5 Fixed detection of magic methods
     add 5acab1abe61 Merge pull request #5344 from KacerCZ/php-magic-method-fix
     add 6b9c7a3a30a Improved method checks in enum declaration
     add ec3ab743f84 Merge pull request #5341 from KacerCZ/php-enum-check-methods
     add 5ab04c08e67 added missing record enums to editor module.
     add 0899c996261 Merge pull request #5339 from mbien/record-enums1_delivery
     add 0be57b9c1d9 fixed NPE in NBJavacTrees#getElement when path is null.
     add 366e0deac10 Merge pull request #5346 from mbien/npe-5202
     new d194c2f229a Merge pull request #5349 from apache/delivery

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


Summary of changes:
 .../modules/gradle/options/SettingsPanel.form      |  53 +++---
 .../modules/gradle/options/SettingsPanel.java      |  35 ++--
 .../java/editor/javadoc/JavadocCompletionTask.java |  11 +-
 .../modules/java/editor/javadoc/TagRegistery.java  |  24 +--
 .../java/editor/overridden/GoToImplementation.java |   4 +-
 .../modules/java/editor/semantic/Bundle.properties |   1 +
 .../editor/semantic/UnusedTooltipResolver.java     |   4 +
 .../hints/jdk/mapreduce/PreconditionsChecker.java  |  12 +-
 .../java/source/indexing/VanillaCompileWorker.java |  43 +++++
 .../source/indexing/VanillaCompileWorkerTest.java  | 189 +++++++++++++++++++++
 .../lib/nbjavac/services/NBJavaCompiler.java       |  12 +-
 .../modules/php/editor/PredefinedSymbols.java      |   2 +
 .../php/editor/model/impl/MethodScopeImpl.java     |  30 ++--
 .../verification/IncorrectEnumHintError.java       |  40 ++++-
 .../IncorrectEnumHintError/testIncorrectEnums.php  |  46 +++++
 ...testIncorrectEnums.php.testIncorrectEnums.hints |  87 ++++++++++
 platform/libs.flatlaf/external/binaries-list       |   2 +-
 ...laf-2.6-license.txt => flatlaf-3.0-license.txt} |   4 +-
 platform/libs.flatlaf/manifest.mf                  |   2 +-
 platform/libs.flatlaf/nbproject/project.properties |   8 +-
 platform/libs.flatlaf/nbproject/project.xml        |   5 +-
 .../netbeans/swing/laf/flatlaf/FlatLaf.properties  |   4 +-
 .../org/netbeans/swing/laf/flatlaf/Installer.java  |   8 +-
 23 files changed, 532 insertions(+), 94 deletions(-)
 rename platform/libs.flatlaf/external/{flatlaf-2.6-license.txt => flatlaf-3.0-license.txt} (99%)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@netbeans.apache.org
For additional commands, e-mail: commits-help@netbeans.apache.org

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


[netbeans] 01/01: Merge pull request #5349 from apache/delivery

Posted by ne...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit d194c2f229aee31bb32ab6b169d66059105a4c33
Merge: 31028d282a7 366e0deac10
Author: Neil C Smith <ne...@apache.org>
AuthorDate: Wed Jan 25 17:01:31 2023 +0000

    Merge pull request #5349 from apache/delivery
    
    Sync delivery to master after 17-rc2

 .../modules/gradle/options/SettingsPanel.form      |  53 +++---
 .../modules/gradle/options/SettingsPanel.java      |  35 ++--
 .../java/editor/javadoc/JavadocCompletionTask.java |  11 +-
 .../modules/java/editor/javadoc/TagRegistery.java  |  24 +--
 .../java/editor/overridden/GoToImplementation.java |   4 +-
 .../modules/java/editor/semantic/Bundle.properties |   1 +
 .../editor/semantic/UnusedTooltipResolver.java     |   4 +
 .../hints/jdk/mapreduce/PreconditionsChecker.java  |  12 +-
 .../java/source/indexing/VanillaCompileWorker.java |  43 +++++
 .../source/indexing/VanillaCompileWorkerTest.java  | 189 +++++++++++++++++++++
 .../lib/nbjavac/services/NBJavaCompiler.java       |  12 +-
 .../modules/php/editor/PredefinedSymbols.java      |   2 +
 .../php/editor/model/impl/MethodScopeImpl.java     |  30 ++--
 .../verification/IncorrectEnumHintError.java       |  40 ++++-
 .../IncorrectEnumHintError/testIncorrectEnums.php  |  46 +++++
 ...testIncorrectEnums.php.testIncorrectEnums.hints |  87 ++++++++++
 platform/libs.flatlaf/external/binaries-list       |   2 +-
 ...laf-2.6-license.txt => flatlaf-3.0-license.txt} |   4 +-
 platform/libs.flatlaf/manifest.mf                  |   2 +-
 platform/libs.flatlaf/nbproject/project.properties |   8 +-
 platform/libs.flatlaf/nbproject/project.xml        |   5 +-
 .../netbeans/swing/laf/flatlaf/FlatLaf.properties  |   4 +-
 .../org/netbeans/swing/laf/flatlaf/Installer.java  |   8 +-
 23 files changed, 532 insertions(+), 94 deletions(-)

diff --cc platform/libs.flatlaf/manifest.mf
index db97f45a34c,2191e9c3047..503b3b06e90
--- a/platform/libs.flatlaf/manifest.mf
+++ b/platform/libs.flatlaf/manifest.mf
@@@ -2,6 -2,6 +2,6 @@@ Manifest-Version: 1.
  OpenIDE-Module-Localizing-Bundle: org/netbeans/libs/flatlaf/Bundle.properties
  OpenIDE-Module: org.netbeans.libs.flatlaf/1
  OpenIDE-Module-Install: org/netbeans/libs/flatlaf/Installer.class
 -OpenIDE-Module-Specification-Version: 1.13
 +OpenIDE-Module-Specification-Version: 1.14
  AutoUpdate-Show-In-Client: false
- OpenIDE-Module-Implementation-Version: 2.6
+ OpenIDE-Module-Implementation-Version: 3.0


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@netbeans.apache.org
For additional commands, e-mail: commits-help@netbeans.apache.org

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