You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by lk...@apache.org on 2020/11/08 16:18:10 UTC

[netbeans] branch release122 updated (50cc574 -> f556f4b)

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

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


    from 50cc574  [NETBEANS-4535] Better way to detect sources and javadocs in Gradle Projects
     add bf64eee  [NETBEANS-4901] Remove the `--progressbar` option
     add 6e3b645  [NETBEANS-4970] Incorrect formatting for lambda functions
     add 2831a8f  Publisher is asf
     add e79e02a  [NETBEANS-4976] Revalidate the breadcrumbs component after changing its dimensions.
     add 2969adc  Ensure document state is consistent after unnamed is saved.
     add e0f3b4c  ioContainer in IOProvider.getIO(...) is allowed to be null.
     add 90d2af9  Include nb/updatecenters in the nbcode cluster
     add 5d01f4b  Avoid NPE by detecting missing Java support and returning empty capabilities
     add 5798672  Using setStatusBarMessage to intercept missing Java support and install it
     add 65083e0  Ignore events without any message
     add 4d48c73  Manually control restart of LanguageClient with a handler. Always use activateWithJDK to launch NetBeans backend.
     add 0cb71ad  Reinitialize the debug adapter port after each restart
     add b116893  Merge pull request #2517 from JaroslavTulach/jtulach/InstallNbjavac
     add 7b2d209  Setting the icon nad categories for VSCode extension.
     add e3f81ad  Renaming debug configuration to Java 8+.
     add 0f57b25  [NETBEANS-4940] Workaround for caret-on-TAB drawing issue
     add 8d15b91  Spell NetBeans with capital N and capital B
     add 40de309  Wait for DAP server init before run/debug.
     add 1f092be  DAP command 'stackTrace' throws exceptions on Windows.
     add a810acd  Postpone config update to next Macrotask.
     add 3a91c48  Increase the major version for php.editor
     add f556f4b  Prevent race conditions during CLI install  (#2523)

No new revisions were added by this update.

Summary of changes:
 ide/editor.lib/apichanges.xml                      |  15 ++
 ide/editor.lib/arch.xml                            |  10 +-
 .../src/org/netbeans/editor/BaseCaret.java         |  12 +-
 .../lsp/client/bindings/BreadcrumbsImpl.java       |   2 +
 java/java.lsp.server/build.xml                     |   4 +-
 java/java.lsp.server/licenseinfo.xml               |   1 +
 .../nbcode/integration/nbproject/build-impl.xml    |   2 +-
 .../nbcode/nbproject/build-impl.xml                |   2 +-
 .../nbcode/nbproject/genfiles.properties           |   4 +-
 .../nbcode/nbproject/platform.properties           |   9 +
 .../lsp/server/debugging/NbProtocolServer.java     |   2 +-
 .../modules/java/lsp/server/protocol/Server.java   |  65 +++---
 .../server/protocol/TextDocumentServiceImpl.java   |  28 +--
 .../java/lsp/server/protocol/ServerTest.java       |  74 +++++-
 .../vscode/images/Apache_NetBeans_Logo.png         | Bin 0 -> 9879 bytes
 java/java.lsp.server/vscode/package.json           |  47 ++--
 java/java.lsp.server/vscode/src/extension.ts       | 252 ++++++++++++++++-----
 .../org/netbeans/api/java/source/JavaSource.java   |   2 +-
 php/php.dbgp/manifest.mf                           |   3 +-
 php/php.dbgp/nbproject/project.xml                 |   3 +-
 php/php.editor/manifest.mf                         |   2 +-
 php/php.editor/nbproject/project.properties        |   2 +-
 php/php.editor/nbproject/project.xml               |   2 +
 .../modules/php/editor/indent/FormatVisitor.java   |   1 +
 .../data/testfiles/formatting/netbeans4970.php     |  30 +++
 .../formatting/netbeans4970.php.formatted          |  32 +++
 .../php/editor/indent/PHPFormatterTest.java        |   5 +
 php/php.kit/manifest.mf                            |   2 +-
 php/php.kit/nbproject/project.xml                  |   3 +-
 .../netbeans/modules/php/phpdoc/PhpDocScript.java  |   2 +-
 php/php.refactoring/manifest.mf                    |   2 +-
 php/php.refactoring/nbproject/project.xml          |   3 +-
 php/php.smarty/manifest.mf                         |   2 +-
 php/php.smarty/nbproject/project.xml               |   3 +-
 php/php.symfony/manifest.mf                        |   2 +-
 php/php.symfony/nbproject/project.xml              |   1 +
 php/php.zend/manifest.mf                           |   2 +-
 php/php.zend/nbproject/project.xml                 |   1 +
 php/php.zend2/manifest.mf                          |   2 +-
 php/php.zend2/nbproject/project.xml                |   1 +
 php/spellchecker.bindings.php/manifest.mf          |   2 +-
 .../nbproject/project.xml                          |   3 +-
 .../modules/autoupdate/cli/ModuleOptions.java      |  14 +-
 platform/o.n.bootstrap/external/binaries-list      |   3 +-
 ...nse.txt => platform-launchers-12.2-license.txt} |   2 +-
 platform/o.n.bootstrap/launcher/unix/nbexec        |   6 +-
 platform/o.n.bootstrap/launcher/windows/nbexec.cpp |   9 +-
 .../launcher/windows/platformlauncher.cpp          |   9 +-
 .../o.n.bootstrap/nbproject/project.properties     |   8 +-
 .../o.n.bootstrap/src/org/netbeans/CLIHandler.java |   1 +
 .../o.n.bootstrap/src/org/netbeans/MainImpl.java   |   2 +-
 .../src/org/openide/io/BridgingIOProvider.java     |  10 +-
 .../src/org/openide/io/BridgingIOProviderTest.java |  84 ++++++-
 53 files changed, 623 insertions(+), 167 deletions(-)
 create mode 100644 java/java.lsp.server/vscode/images/Apache_NetBeans_Logo.png
 create mode 100644 php/php.editor/test/unit/data/testfiles/formatting/netbeans4970.php
 create mode 100644 php/php.editor/test/unit/data/testfiles/formatting/netbeans4970.php.formatted
 rename platform/o.n.bootstrap/external/{platform-launchers-10.0-license.txt => platform-launchers-12.2-license.txt} (99%)
 mode change 100644 => 100755 platform/o.n.bootstrap/launcher/unix/nbexec


---------------------------------------------------------------------
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