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

skygo pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans-native-installers.git


    from f77603a  initial code for installers
     new 820863d  [INFRA-15006] Initial donation of NetBeans.
     new bca92aa  [NETBEANS-54] First batch of license header changes to Apache
     new 2238d77  [NETBEANS-161] Changed license header introducer to simple 
slash-star
     new 39a33e6  [NETBEANS-309] Add licenseinfo.xml for image data clarifying 
license status
     new c9f2e2d  [NETBEANS-1157] resolved problem with java version higher 9 
and the native windows launcher
     new f338cc4  clean up code and implementation of hints
     new f60b1b6  [NETBEANS-1671] Donation 3 - Include installer sources (#1052)
     new e89fd9f  [NETBEANS-2381] JDK 12 ver string support in nbi native win 
launcher (#1196)
     new 5d45551  Cleaner: Fixed spelling error in constant: MAX_ATTEPTS --> 
MAX_ATTEMPTS
     new 215bdda  Cleaner: Removed commented-out code and added explanatory 
comments.
     new 0b5c152  [NETBEANS-3094] NBI cleaner process must attempt to delete 
read-only files too.
     new d60ca4f  [NETBEANS-2523] Installer creates invalid Win Registry value
     new c19236b  Adding the fix that was applied to generate the Mac OS 
installer for Apache NetBeans 12.1
     new 8188a14   Open clean up code base to remove Windows 95 & 98 support..
     new e10fbb5  Revert PR4025 "Open clean up code base to remove Windows 95 & 
98 support.." due to compile time constant changes.
     new a204ab9  initial commit
     new 33fa472  Initial commit
     new 40d5d12  Merge pull request #2 from ebarboni/initcommit

The 19 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:
 src/main/cpp/build.properties                      |   68 +
 src/main/cpp/build.xml                             |  146 ++
 src/main/cpp/cleaner/unix/src/cleaner.sh           |   92 ++
 src/main/cpp/cleaner/windows/Makefile              |   79 +
 src/main/cpp/cleaner/windows/Makefile-vc           |   59 +
 .../cleaner/windows/nbproject/configurations.xml   |   97 ++
 .../cleaner/windows/nbproject/project.properties   |   20 +
 src/main/cpp/cleaner/windows/nbproject/project.xml |   31 +
 src/main/cpp/cleaner/windows/src/main.c            |  482 ++++++
 .../windows/vcproject/NBI Native Cleaner.ncb       |    1 +
 .../windows/vcproject/NBI Native Cleaner.sln       |   20 +
 .../windows/vcproject/NBI Native Cleaner.suo       |  Bin 0 -> 33280 bytes
 .../windows/vcproject/NBI Native Cleaner.vcproj    |  209 +++
 .../vcproject/NBI Native Cleaner.vcproj.user       |    1 +
 src/main/cpp/jnilib/.common/src/CommonUtils.c      |  384 +++++
 src/main/cpp/jnilib/.common/src/CommonUtils.h      |  122 ++
 .../cpp/jnilib/.unix/src/jni_UnixNativeUtils.c     |  108 ++
 .../cpp/jnilib/.unix/src/jni_UnixNativeUtils.h     |   83 +
 src/main/cpp/jnilib/linux/Makefile                 |  109 ++
 .../cpp/jnilib/linux/nbproject/configurations.xml  |  183 +++
 .../cpp/jnilib/linux/nbproject/project.properties  |   20 +
 src/main/cpp/jnilib/linux/nbproject/project.xml    |   31 +
 src/main/cpp/jnilib/macosx/Makefile                |  109 ++
 .../cpp/jnilib/macosx/nbproject/configurations.xml |  125 ++
 .../cpp/jnilib/macosx/nbproject/project.properties |   20 +
 src/main/cpp/jnilib/macosx/nbproject/project.xml   |   31 +
 src/main/cpp/jnilib/solaris-sparc/Makefile         |  109 ++
 .../solaris-sparc/nbproject/configurations.xml     |  283 ++++
 .../solaris-sparc/nbproject/project.properties     |   20 +
 .../cpp/jnilib/solaris-sparc/nbproject/project.xml |   31 +
 src/main/cpp/jnilib/solaris-x86/Makefile           |  109 ++
 .../solaris-x86/nbproject/configurations.xml       |  283 ++++
 .../solaris-x86/nbproject/project.properties       |   20 +
 .../cpp/jnilib/solaris-x86/nbproject/project.xml   |   31 +
 src/main/cpp/jnilib/windows/Makefile               |  109 ++
 src/main/cpp/jnilib/windows/Makefile-vc            |   76 +
 src/main/cpp/jnilib/windows/Makefile-vc-wo-crt     |   79 +
 .../jnilib/windows/nbproject/configurations.xml    |  179 +++
 .../jnilib/windows/nbproject/project.properties    |   20 +
 src/main/cpp/jnilib/windows/nbproject/project.xml  |   31 +
 src/main/cpp/jnilib/windows/src/WindowsUtils.c     |  146 ++
 src/main/cpp/jnilib/windows/src/WindowsUtils.h     |   48 +
 .../jnilib/windows/src/jni_WindowsNativeUtils.c    |  400 +++++
 .../jnilib/windows/src/jni_WindowsNativeUtils.h    |  109 ++
 .../cpp/jnilib/windows/src/jni_WindowsRegistry.c   |  632 ++++++++
 .../cpp/jnilib/windows/src/jni_WindowsRegistry.h   |  266 ++++
 .../jnilib/windows/vcproject/NBI JNI Library.ncb   |    1 +
 .../jnilib/windows/vcproject/NBI JNI Library.sln   |   20 +
 .../jnilib/windows/vcproject/NBI JNI Library.suo   |  Bin 0 -> 13824 bytes
 .../windows/vcproject/NBI JNI Library.vcproj       |  261 +++
 .../windows/vcproject/NBI JNI Library.vcproj.user  |    1 +
 src/main/cpp/jnilib/windows/vcproject/vc80.idb     |  Bin 0 -> 11264 bytes
 .../cpp/launcher/unix/i18n/launcher.properties     |   51 +
 src/main/cpp/launcher/unix/src/launcher.sh         | 1665 ++++++++++++++++++++
 src/main/cpp/launcher/windows/.dep.inc             |    5 +
 src/main/cpp/launcher/windows/Makefile             |  109 ++
 src/main/cpp/launcher/windows/Makefile-vc          |   92 ++
 src/main/cpp/launcher/windows/Makefile-vc-wo-crt   |   92 ++
 .../cpp/launcher/windows/i18n/launcher.properties  |   54 +
 .../launcher/windows/nbproject/configurations.xml  |  107 ++
 .../launcher/windows/nbproject/project.properties  |   20 +
 .../cpp/launcher/windows/nbproject/project.xml     |   46 +
 src/main/cpp/launcher/windows/resources/icon.ico   |  Bin 0 -> 99678 bytes
 .../windows/resources/nlw-alt.exe.manifest         |   31 +
 .../launcher/windows/resources/nlw.exe.manifest    |   31 +
 src/main/cpp/launcher/windows/resources/res.rc     |   39 +
 src/main/cpp/launcher/windows/src/Errors.h         |   52 +
 src/main/cpp/launcher/windows/src/ExtractUtils.c   |  761 +++++++++
 src/main/cpp/launcher/windows/src/ExtractUtils.h   |   50 +
 src/main/cpp/launcher/windows/src/FileUtils.c      |  593 +++++++
 src/main/cpp/launcher/windows/src/FileUtils.h      |   68 +
 src/main/cpp/launcher/windows/src/JavaUtils.c      |  796 ++++++++++
 src/main/cpp/launcher/windows/src/JavaUtils.h      |   64 +
 src/main/cpp/launcher/windows/src/Launcher.c       | 1009 ++++++++++++
 src/main/cpp/launcher/windows/src/Launcher.h       |   53 +
 src/main/cpp/launcher/windows/src/Main.c           |  672 ++++++++
 src/main/cpp/launcher/windows/src/Main.h           |   58 +
 src/main/cpp/launcher/windows/src/ProcessUtils.c   |  221 +++
 src/main/cpp/launcher/windows/src/ProcessUtils.h   |   48 +
 src/main/cpp/launcher/windows/src/RegistryUtils.c  |   60 +
 src/main/cpp/launcher/windows/src/RegistryUtils.h  |   44 +
 src/main/cpp/launcher/windows/src/StringUtils.c    |  794 ++++++++++
 src/main/cpp/launcher/windows/src/StringUtils.h    |  149 ++
 src/main/cpp/launcher/windows/src/SystemUtils.c    |  100 ++
 src/main/cpp/launcher/windows/src/SystemUtils.h    |   44 +
 src/main/cpp/launcher/windows/src/Types.h          |  155 ++
 .../windows/vcproject/NBI Native Launcher.ncb      |    1 +
 .../windows/vcproject/NBI Native Launcher.sln      |   17 +
 .../windows/vcproject/NBI Native Launcher.suo      |  Bin 0 -> 50176 bytes
 .../windows/vcproject/NBI Native Launcher.vcproj   |  304 ++++
 .../NBI Native Launcher.vcproj.SARD.dlm198383.user |   65 +
 .../vcproject/NBI Native Launcher.vcproj.user      |    1 +
 92 files changed, 14415 insertions(+)
 create mode 100644 src/main/cpp/build.properties
 create mode 100644 src/main/cpp/build.xml
 create mode 100644 src/main/cpp/cleaner/unix/src/cleaner.sh
 create mode 100644 src/main/cpp/cleaner/windows/Makefile
 create mode 100644 src/main/cpp/cleaner/windows/Makefile-vc
 create mode 100644 src/main/cpp/cleaner/windows/nbproject/configurations.xml
 create mode 100644 src/main/cpp/cleaner/windows/nbproject/project.properties
 create mode 100644 src/main/cpp/cleaner/windows/nbproject/project.xml
 create mode 100644 src/main/cpp/cleaner/windows/src/main.c
 create mode 100644 src/main/cpp/cleaner/windows/vcproject/NBI Native 
Cleaner.ncb
 create mode 100644 src/main/cpp/cleaner/windows/vcproject/NBI Native 
Cleaner.sln
 create mode 100644 src/main/cpp/cleaner/windows/vcproject/NBI Native 
Cleaner.suo
 create mode 100644 src/main/cpp/cleaner/windows/vcproject/NBI Native 
Cleaner.vcproj
 create mode 100644 src/main/cpp/cleaner/windows/vcproject/NBI Native 
Cleaner.vcproj.user
 create mode 100644 src/main/cpp/jnilib/.common/src/CommonUtils.c
 create mode 100644 src/main/cpp/jnilib/.common/src/CommonUtils.h
 create mode 100644 src/main/cpp/jnilib/.unix/src/jni_UnixNativeUtils.c
 create mode 100644 src/main/cpp/jnilib/.unix/src/jni_UnixNativeUtils.h
 create mode 100644 src/main/cpp/jnilib/linux/Makefile
 create mode 100644 src/main/cpp/jnilib/linux/nbproject/configurations.xml
 create mode 100644 src/main/cpp/jnilib/linux/nbproject/project.properties
 create mode 100644 src/main/cpp/jnilib/linux/nbproject/project.xml
 create mode 100644 src/main/cpp/jnilib/macosx/Makefile
 create mode 100644 src/main/cpp/jnilib/macosx/nbproject/configurations.xml
 create mode 100644 src/main/cpp/jnilib/macosx/nbproject/project.properties
 create mode 100644 src/main/cpp/jnilib/macosx/nbproject/project.xml
 create mode 100644 src/main/cpp/jnilib/solaris-sparc/Makefile
 create mode 100644 
src/main/cpp/jnilib/solaris-sparc/nbproject/configurations.xml
 create mode 100644 
src/main/cpp/jnilib/solaris-sparc/nbproject/project.properties
 create mode 100644 src/main/cpp/jnilib/solaris-sparc/nbproject/project.xml
 create mode 100644 src/main/cpp/jnilib/solaris-x86/Makefile
 create mode 100644 src/main/cpp/jnilib/solaris-x86/nbproject/configurations.xml
 create mode 100644 src/main/cpp/jnilib/solaris-x86/nbproject/project.properties
 create mode 100644 src/main/cpp/jnilib/solaris-x86/nbproject/project.xml
 create mode 100644 src/main/cpp/jnilib/windows/Makefile
 create mode 100644 src/main/cpp/jnilib/windows/Makefile-vc
 create mode 100644 src/main/cpp/jnilib/windows/Makefile-vc-wo-crt
 create mode 100644 src/main/cpp/jnilib/windows/nbproject/configurations.xml
 create mode 100644 src/main/cpp/jnilib/windows/nbproject/project.properties
 create mode 100644 src/main/cpp/jnilib/windows/nbproject/project.xml
 create mode 100644 src/main/cpp/jnilib/windows/src/WindowsUtils.c
 create mode 100644 src/main/cpp/jnilib/windows/src/WindowsUtils.h
 create mode 100644 src/main/cpp/jnilib/windows/src/jni_WindowsNativeUtils.c
 create mode 100644 src/main/cpp/jnilib/windows/src/jni_WindowsNativeUtils.h
 create mode 100644 src/main/cpp/jnilib/windows/src/jni_WindowsRegistry.c
 create mode 100644 src/main/cpp/jnilib/windows/src/jni_WindowsRegistry.h
 create mode 100644 src/main/cpp/jnilib/windows/vcproject/NBI JNI Library.ncb
 create mode 100644 src/main/cpp/jnilib/windows/vcproject/NBI JNI Library.sln
 create mode 100644 src/main/cpp/jnilib/windows/vcproject/NBI JNI Library.suo
 create mode 100644 src/main/cpp/jnilib/windows/vcproject/NBI JNI Library.vcproj
 create mode 100644 src/main/cpp/jnilib/windows/vcproject/NBI JNI 
Library.vcproj.user
 create mode 100644 src/main/cpp/jnilib/windows/vcproject/vc80.idb
 create mode 100644 src/main/cpp/launcher/unix/i18n/launcher.properties
 create mode 100644 src/main/cpp/launcher/unix/src/launcher.sh
 create mode 100644 src/main/cpp/launcher/windows/.dep.inc
 create mode 100644 src/main/cpp/launcher/windows/Makefile
 create mode 100644 src/main/cpp/launcher/windows/Makefile-vc
 create mode 100644 src/main/cpp/launcher/windows/Makefile-vc-wo-crt
 create mode 100644 src/main/cpp/launcher/windows/i18n/launcher.properties
 create mode 100644 src/main/cpp/launcher/windows/nbproject/configurations.xml
 create mode 100644 src/main/cpp/launcher/windows/nbproject/project.properties
 create mode 100644 src/main/cpp/launcher/windows/nbproject/project.xml
 create mode 100644 src/main/cpp/launcher/windows/resources/icon.ico
 create mode 100644 src/main/cpp/launcher/windows/resources/nlw-alt.exe.manifest
 create mode 100644 src/main/cpp/launcher/windows/resources/nlw.exe.manifest
 create mode 100644 src/main/cpp/launcher/windows/resources/res.rc
 create mode 100644 src/main/cpp/launcher/windows/src/Errors.h
 create mode 100644 src/main/cpp/launcher/windows/src/ExtractUtils.c
 create mode 100644 src/main/cpp/launcher/windows/src/ExtractUtils.h
 create mode 100644 src/main/cpp/launcher/windows/src/FileUtils.c
 create mode 100644 src/main/cpp/launcher/windows/src/FileUtils.h
 create mode 100644 src/main/cpp/launcher/windows/src/JavaUtils.c
 create mode 100644 src/main/cpp/launcher/windows/src/JavaUtils.h
 create mode 100644 src/main/cpp/launcher/windows/src/Launcher.c
 create mode 100644 src/main/cpp/launcher/windows/src/Launcher.h
 create mode 100644 src/main/cpp/launcher/windows/src/Main.c
 create mode 100644 src/main/cpp/launcher/windows/src/Main.h
 create mode 100644 src/main/cpp/launcher/windows/src/ProcessUtils.c
 create mode 100644 src/main/cpp/launcher/windows/src/ProcessUtils.h
 create mode 100644 src/main/cpp/launcher/windows/src/RegistryUtils.c
 create mode 100644 src/main/cpp/launcher/windows/src/RegistryUtils.h
 create mode 100644 src/main/cpp/launcher/windows/src/StringUtils.c
 create mode 100644 src/main/cpp/launcher/windows/src/StringUtils.h
 create mode 100644 src/main/cpp/launcher/windows/src/SystemUtils.c
 create mode 100644 src/main/cpp/launcher/windows/src/SystemUtils.h
 create mode 100644 src/main/cpp/launcher/windows/src/Types.h
 create mode 100644 src/main/cpp/launcher/windows/vcproject/NBI Native 
Launcher.ncb
 create mode 100644 src/main/cpp/launcher/windows/vcproject/NBI Native 
Launcher.sln
 create mode 100644 src/main/cpp/launcher/windows/vcproject/NBI Native 
Launcher.suo
 create mode 100644 src/main/cpp/launcher/windows/vcproject/NBI Native 
Launcher.vcproj
 create mode 100644 src/main/cpp/launcher/windows/vcproject/NBI Native 
Launcher.vcproj.SARD.dlm198383.user
 create mode 100644 src/main/cpp/launcher/windows/vcproject/NBI Native 
Launcher.vcproj.user


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