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/06/21 17:35:06 UTC

[netbeans] branch master updated (cf2174f -> 354d7fa)

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

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


    from cf2174f  Display error message when JavaFX cluster cannot be enabled
     new 301398c  [NETBEANS-4294] Donation of original AutoSave module to Apache NetBeans
     new 1d2191d  [NETBEANS-4294] Fixed incorrect option section name in module description
     new a6f8529  [NETBEANS-4294] Fixed module versioning and added autosave module as editor.kit dependency as well nbbuild/cluster.properties build pipeline
     new ea888c2  [NETBEANS-4294] Included license information for form file
     new b987288  [NETBEANS-4294] Included license information
     new 85060b6  [NETBEANS-4294] . Refactored plugin to remove most of the listeners, wrong WeakReferecnes, opted to use Lifecicle saveall option and refactored the Options dialog as review discussion; . Removed all OmegaT related files; . Removed help files and translations;
     new cd9f252  [NETBEANS-4294] Included licenseinfo for binary image file
     new 95b9201  [NETBEANS-4294] Removed a generated file and menu item registration (user still can add it to the toolbar if wanted)
     new 392b3ec  [NETBEANS-4294] Included a 24x24 icon and removed unused import
     new 4d3f1cd  [NETBEANS-4294] . Removed the installer in favor to OnStart and OnStop option; . Adjusted icon definition string; . Removed unnecessary help properties still in place; . Changed the module to be eager;
     new 837b24b  [NETBEANS-4294] . Reduzed the library version to make possible to install in IDE older versions
     new 67506b0  [NETBEANS-4294] Fixed description text
     new 80ea293  [NETBEANS-4294] Changed this feature to be disabled by default and fixed the property name
     new 354d7fa  Merge pull request #2119 from mgraciano/autosave-module

The 4065 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:
 ide/editor.autosave/build.xml                      |  26 ++++
 ide/editor.autosave/licenseinfo.xml                |  29 ++++
 ide/editor.autosave/manifest.mf                    |   6 +
 ide/editor.autosave/nbproject/project.properties   |  21 +++
 ide/editor.autosave/nbproject/project.xml          | 123 ++++++++++++++++
 .../editor/autosave/AutoSaveController.java        | 160 +++++++++++++++++++++
 .../autosave/AutoSaveOptionsPanelController.java   | 103 +++++++++++++
 .../modules/editor/autosave/AutoSavePanel.form     | 110 ++++++++++++++
 .../modules/editor/autosave/AutoSavePanel.java     | 124 ++++++++++++++++
 .../modules/editor/autosave/Bundle.properties      |  33 +++++
 .../editor/autosave/ToggleAutoSaveAction.java      |  69 +++++++++
 .../netbeans/modules/editor/autosave/auto_save.png | Bin 0 -> 994 bytes
 .../modules/editor/autosave/auto_save24.png        | Bin 0 -> 10729 bytes
 .../modules/editor/autosave/Bundle_ja.properties   |  31 ++++
 .../editor/autosave/Bundle_pt_BR.properties        |  31 ++++
 ide/editor.kit/nbproject/project.xml               |   7 +
 nbbuild/cluster.properties                         |   1 +
 17 files changed, 874 insertions(+)
 create mode 100644 ide/editor.autosave/build.xml
 create mode 100644 ide/editor.autosave/licenseinfo.xml
 create mode 100644 ide/editor.autosave/manifest.mf
 create mode 100644 ide/editor.autosave/nbproject/project.properties
 create mode 100644 ide/editor.autosave/nbproject/project.xml
 create mode 100644 ide/editor.autosave/src/org/netbeans/modules/editor/autosave/AutoSaveController.java
 create mode 100644 ide/editor.autosave/src/org/netbeans/modules/editor/autosave/AutoSaveOptionsPanelController.java
 create mode 100644 ide/editor.autosave/src/org/netbeans/modules/editor/autosave/AutoSavePanel.form
 create mode 100644 ide/editor.autosave/src/org/netbeans/modules/editor/autosave/AutoSavePanel.java
 create mode 100644 ide/editor.autosave/src/org/netbeans/modules/editor/autosave/Bundle.properties
 create mode 100644 ide/editor.autosave/src/org/netbeans/modules/editor/autosave/ToggleAutoSaveAction.java
 create mode 100644 ide/editor.autosave/src/org/netbeans/modules/editor/autosave/auto_save.png
 create mode 100644 ide/editor.autosave/src/org/netbeans/modules/editor/autosave/auto_save24.png
 create mode 100644 ide/editor.autosave/translatedfiles/src/org/netbeans/modules/editor/autosave/Bundle_ja.properties
 create mode 100644 ide/editor.autosave/translatedfiles/src/org/netbeans/modules/editor/autosave/Bundle_pt_BR.properties


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