A modded EditSaber for making beat saber maps.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

93 lines
3.8 KiB

  1. ZipUtility and 7z-cpp Modifications placed under MIT
  2. The MIT License (MIT)
  3. (ZipUtility)
  4. Copyright (c) Jan Kaniewski (Getnamo) and Contributors (https://github.com/getnamo/ZipUtility-ue4/graphs/contributors)
  5. (7z-cpp)
  6. Copyright (c) Jan Kaniewski (Getnamo), Keith J. Jones (keithjjones), and Contributors (https://github.com/getnamo/7zip-cpp/graphs/contributors)
  7. Permission is hereby granted, free of charge, to any person obtaining a copy
  8. of this software and associated documentation files (the "Software"), to deal
  9. in the Software without restriction, including without limitation the rights
  10. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  11. copies of the Software, and to permit persons to whom the Software is
  12. furnished to do so, subject to the following conditions:
  13. The above copyright notice and this permission notice shall be included in all
  14. copies or substantial portions of the Software.
  15. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  18. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  20. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  21. SOFTWARE.
  22. =============================================================================================
  23. SevenZip++ (C++ wrapper) by Chadwick McNab is placed in the public domain. [https://bitbucket.org/cmcnab/sevenzip/wiki/Home]
  24. =============================================================================================
  25. LZMA SDK (LZMA 7-zip headers) is placed in the public domain. [www.7-zip.org/sdk.html]
  26. =============================================================================================
  27. This software uses code of 7z.dll licensed under the LGPL + unrar restriction version 2.1 and its source can be downloaded at www.7-zip.org
  28. 7-Zip
  29. ~~~~~
  30. License for use and distribution
  31. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  32. 7-Zip Copyright (C) 1999-2015 Igor Pavlov.
  33. Licenses for files are:
  34. 1) 7z.dll: GNU LGPL + unRAR restriction
  35. 2) All other files: GNU LGPL
  36. The GNU LGPL + unRAR restriction means that you must follow both
  37. GNU LGPL rules and unRAR restriction rules.
  38. Note:
  39. You can use 7-Zip on any computer, including a computer in a commercial
  40. organization. You don't need to register or pay for 7-Zip.
  41. GNU LGPL information
  42. --------------------
  43. This library is free software; you can redistribute it and/or
  44. modify it under the terms of the GNU Lesser General Public
  45. License as published by the Free Software Foundation; either
  46. version 2.1 of the License, or (at your option) any later version.
  47. This library is distributed in the hope that it will be useful,
  48. but WITHOUT ANY WARRANTY; without even the implied warranty of
  49. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  50. Lesser General Public License for more details.
  51. You can receive a copy of the GNU Lesser General Public License from
  52. http://www.gnu.org/
  53. unRAR restriction
  54. -----------------
  55. The decompression engine for RAR archives was developed using source
  56. code of unRAR program.
  57. All copyrights to original unRAR code are owned by Alexander Roshal.
  58. The license for original unRAR code has the following restriction:
  59. The unRAR sources cannot be used to re-create the RAR compression algorithm,
  60. which is proprietary. Distribution of modified unRAR sources in separate form
  61. or as a part of other software is permitted, provided that it is clearly
  62. stated in the documentation and source comments that the code may
  63. not be used to develop a RAR (WinRAR) compatible archiver.
  64. --
  65. Igor Pavlov