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

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


    from a46aa48  Merge pull request #3352 from jhorvath/oci-support
     add f40062a  Formalize ImageUtilities URL property.
     add c860c94  Replace UIDefaults icons with metadata ones.
     add d1ccb36  Explicitly mark physical files the client can see.
     add bf0aecf  Send image URI on the protocol.
     add b60a3e0  Allow to match and replace icons based on icon+node data.
     add 2fbce60  Licenses fixed.
     add 2b91be1  Merge pull request #3459 from sdedic/vscode/redefined-icons3
     add b4ac8e0  layout fixes in inspect and refactor dialogs.
     add 0c1a519  layout fixes to HintPanel and hint customizer panels.
     add 335fe27  Merge pull request #3472 from mbien/layout-fixes
     add a2baf75  [#3466]  do not show Convert Type to Var hint for method 
references
     add 8df36f8  Merge pull request #3471 from oyarzun/issue-3466
     new d77f069  Merge pull request #3473 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/analysis/RunAnalysisPanel.form         |  29 ++-
 .../modules/analysis/RunAnalysisPanel.java         |  20 ++-
 .../analysis/ui/AdjustConfigurationPanel.form      |   6 +-
 .../analysis/ui/AdjustConfigurationPanel.java      |   8 +-
 .../java/hints/spiimpl/options/HintsPanel.form     |  21 +--
 .../java/hints/spiimpl/options/HintsPanel.java     |  23 +--
 .../refactoring/InspectAndRefactorPanel.form       |  32 ++--
 .../refactoring/InspectAndRefactorPanel.java       |  36 ++--
 .../hints/WrongStringComparisonCustomizer.form     |   8 +-
 .../hints/WrongStringComparisonCustomizer.java     |  10 +-
 .../errors/FinalFieldsFromCtorCustomiser.form      |   8 +-
 .../errors/FinalFieldsFromCtorCustomiser.java      |  10 +-
 .../java/hints/errors/ImportClassCustomizer.form   |   4 +-
 .../java/hints/errors/ImportClassCustomizer.java   |   4 +-
 .../hints/errors/LocalVariableFixCustomizer.form   |   5 +-
 .../hints/errors/LocalVariableFixCustomizer.java   |   4 +-
 .../java/hints/errors/SurroundWithTryCatchLog.form |   4 +-
 .../java/hints/errors/SurroundWithTryCatchLog.java |   4 +-
 .../modules/java/hints/jdk/ConvertToVarHint.java   |   2 +
 .../java/hints/jdk/ConvertToVarHintTest.java       |  18 ++
 java/java.lsp.server/arch.xml                      |   1 +
 java/java.lsp.server/licenseinfo.xml               |   6 +-
 .../nbcode/{integration/build.xml => README.md}    |  13 +-
 java/java.lsp.server/nbcode/integration/build.xml  |  45 ++++-
 .../nbcode/integration/nbproject/project.xml       |  26 ++-
 .../nbcode/integration/UIDefaultsIconMetadata.java | 106 +++++++++++
 .../nbcode/integration/resources}/empty.png        | Bin
 .../resources/uidefaults/Tree.closedIcon.png       | Bin 0 -> 537 bytes
 .../resources/uidefaults/Tree.leafIcon.png         | Bin 0 -> 537 bytes
 .../resources/uidefaults/Tree.openIcon.png         | Bin 0 -> 461 bytes
 .../resources/uimanager-icons.properties           |  63 +++++++
 java/java.lsp.server/nbproject/project.xml         |   2 +-
 .../server/explorer/DefaultDecorationsImpl.java    |   4 +-
 .../modules/java/lsp/server/explorer/TreeItem.java |  22 ++-
 .../java/lsp/server/explorer/TreeNodeRegistry.java |  34 ++++
 .../lsp/server/explorer/TreeNodeRegistryImpl.java  |  26 ++-
 .../java/lsp/server/explorer/TreeViewProvider.java |  38 ++++
 .../java/lsp/server/explorer/api/TreeItemData.java |   2 +-
 java/java.lsp.server/vscode/package.json           |  73 +++++++-
 .../vscode/schemas/package.schema.json             |  42 +++++
 java/java.lsp.server/vscode/src/explorer.ts        | 195 +++++++++++++++++++--
 java/java.lsp.server/vscode/src/protocol.ts        |   4 +
 .../ui/customizers/SearchDependencyCustomizer.form |  21 +--
 .../ui/customizers/SearchDependencyCustomizer.java |  13 +-
 platform/openide.util.ui/apichanges.xml            |  14 ++
 platform/openide.util.ui/arch.xml                  |   7 +
 platform/openide.util.ui/manifest.mf               |   2 +-
 .../src/org/openide/util/ImageUtilities.java       |  65 +++++--
 48 files changed, 892 insertions(+), 188 deletions(-)
 copy java/java.lsp.server/nbcode/{integration/build.xml => README.md} (65%)
 create mode 100644 
java/java.lsp.server/nbcode/integration/src/org/netbeans/modules/nbcode/integration/UIDefaultsIconMetadata.java
 copy {ide/lsp.client/src/org/netbeans/modules/lsp/client/bindings/icons => 
java/java.lsp.server/nbcode/integration/src/org/netbeans/modules/nbcode/integration/resources}/empty.png
 (100%)
 create mode 100644 
java/java.lsp.server/nbcode/integration/src/org/netbeans/modules/nbcode/integration/resources/uidefaults/Tree.closedIcon.png
 create mode 100644 
java/java.lsp.server/nbcode/integration/src/org/netbeans/modules/nbcode/integration/resources/uidefaults/Tree.leafIcon.png
 create mode 100644 
java/java.lsp.server/nbcode/integration/src/org/netbeans/modules/nbcode/integration/resources/uidefaults/Tree.openIcon.png
 create mode 100644 
java/java.lsp.server/nbcode/integration/src/org/netbeans/modules/nbcode/integration/resources/uimanager-icons.properties
 create mode 100644 java/java.lsp.server/vscode/schemas/package.schema.json

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

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

Reply via email to