├── .github ├── DISCUSSION_TEMPLATE │ └── ideas.yml └── ISSUE_TEMPLATE │ ├── bug-report.yaml │ └── config.yml ├── .gitignore ├── .readthedocs.yml ├── CODE_OF_CONDUCT.md ├── ThirdPartyNotices.txt ├── media ├── empty.md └── update schema.gif ├── readme.md └── version.json /.github/DISCUSSION_TEMPLATE/ideas.yml: -------------------------------------------------------------------------------- 1 | labels: ["template: idea"] 2 | body: 3 | - type: textarea 4 | attributes: 5 | label: Is your feature request related to a problem? Please describe 6 | description: A clear and concise description of what the problem is. Ex. I'm always frustrated when 7 | validations: 8 | required: false 9 | - type: textarea 10 | attributes: 11 | label: Describe the solution you'd like 12 | description: A clear and concise description of what you want to happen. 13 | validations: 14 | required: true 15 | - type: textarea 16 | attributes: 17 | label: Goals 18 | description: Short list of what the feature request aims to address? 19 | value: | 20 | 1. 21 | 2. 22 | validations: 23 | required: false 24 | - type: textarea 25 | attributes: 26 | label: Background 27 | description: A clear and concise description of any alternative solutions or features you've considered. 28 | validations: 29 | required: false 30 | - type: textarea 31 | attributes: 32 | label: Additional context 33 | description: Add any other context or screenshots about the feature request here. 34 | validations: 35 | required: false 36 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yaml: -------------------------------------------------------------------------------- 1 | name: Bug Report 2 | description: Found something you weren't expecting? Report it here! 3 | labels: ["template: issue"] 4 | body: 5 | - type: markdown 6 | attributes: 7 | value: | 8 | **NOTE:** If you wish to suggest an enhancement idea or have a question, please visit our [discussion forum](https://github.com/TabularEditor/TabularEditor3/discussions) 9 | - type: markdown 10 | attributes: 11 | value: | 12 | ## Please fill out the following form to create a bug report. 13 | - type: textarea 14 | id: description 15 | attributes: 16 | label: Description 17 | description: | 18 | Please provide a clear and concise description of your issue here: 19 | validations: 20 | required: true 21 | - type: input 22 | id: te2-ver 23 | attributes: 24 | label: Tabular Editor 3 Version 25 | description: Please provide the version of Tabular Editor 3 (3.X.Y) 26 | validations: 27 | required: true 28 | - type: textarea 29 | id: screenshots 30 | attributes: 31 | label: Screenshots 32 | description: Please provide one or more screenshots or GIFs that show the issue. 33 | - type: markdown 34 | attributes: 35 | value: | 36 | It's very helpful to us if you can describe the steps to reproduce your issue. For Example: 37 | 1. Go to '...' 38 | 2. Click on '....' 39 | 3. Scroll down to '....' 40 | 4. See error 41 | - type: textarea 42 | id: steps_to_reproduce 43 | attributes: 44 | label: Steps to Reproduce 45 | description: Please describe how to reproduce your issue. 46 | - type: textarea 47 | id: expected_behavior 48 | attributes: 49 | label: Expected behavior 50 | description: A clear and concise description of what you expected to happen. 51 | - type: textarea 52 | id: crash_report 53 | attributes: 54 | label: Crash Report 55 | description: Please copy the text of any crash report you received. 56 | - type: input 57 | id: os-ver 58 | attributes: 59 | label: Windows Version 60 | description: The version of Windows Tabular Editor is running on e.g. 10/11 61 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: Feature Request or enhancement? 4 | url: https://github.com/TabularEditor/TabularEditor3/discussions/categories/3-ideas 5 | about: Please direct these to our Forum dedicated to new feature suggestions 6 | - name: Have a question? 7 | url: https://github.com/TabularEditor/TabularEditor3/discussions/categories/2-te-q-a 8 | about: Please direct these to our discussion forum and lets chat there. 9 | - name: Tabular Editor 3 Documentation 10 | url: https://docs.tabulareditor.com/te3/ 11 | about: Please check our documentation for guides and walkthroughs. 12 | - name: Tabular Editor 2 13 | url: https://github.com/TabularEditor/TabularEditor/issues 14 | about: Is your issue concerned with Tabular Editor 2? Please refer to the dedicated page here. 15 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # This .gitignore file was automatically created by Microsoft(R) Visual Studio. 3 | ################################################################################ 4 | 5 | /.vs 6 | -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | 3 | sphinx: 4 | builder: html 5 | configuration: docs/conf.py 6 | fail_on_warning: false 7 | 8 | # Optionally set the version of Python and requirements required to build your docs 9 | python: 10 | version: 3.7 11 | install: 12 | - requirements: docs/requirements.txt 13 | 14 | formats: 15 | - epub 16 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Citizen Code of Conduct 2 | 3 | ## 1. Purpose 4 | 5 | A primary goal of the Tabular Editor 3 Support Community is to be inclusive to the largest number of contributors, with the most varied and diverse backgrounds possible. As such, we are committed to providing a friendly, safe and welcoming environment for all, regardless of gender, sexual orientation, ability, ethnicity, socioeconomic status, and religion (or lack thereof). 6 | 7 | This code of conduct outlines our expectations for all those who participate in our community, as well as the consequences for unacceptable behavior. 8 | 9 | We invite all those who participate in the Tabular Editor 3 Support Community to help us create safe and positive experiences for everyone. 10 | 11 | ## 2. Open Data Family Citizenship 12 | 13 | A supplemental goal of this Code of Conduct is to increase open citizenship by encouraging participants to recognize and strengthen the relationships between our actions and their effects on our community. 14 | 15 | Communities mirror the societies in which they exist and positive action is essential to counteract the many forms of inequality and abuses of power that exist in society. 16 | 17 | If you see someone who is making an extra effort to ensure our community is welcoming, friendly, and encourages all participants to contribute to the fullest extent, we want to know. 18 | 19 | ## 3. Expected Behavior 20 | 21 | The following behaviors are expected and requested of all community members: 22 | 23 | * Participate in an authentic and active way. In doing so, you contribute to the health and longevity of this community. 24 | * Exercise consideration and respect in your speech and actions. 25 | * Attempt collaboration before conflict. 26 | * Refrain from demeaning, discriminatory, or harassing behavior and speech. 27 | * Be mindful of your surroundings and of your fellow participants. Alert community leaders if you notice a dangerous situation, someone in distress, or violations of this Code of Conduct, even if they seem inconsequential. 28 | 29 | ## 4. Unacceptable Behavior 30 | 31 | The following behaviors are considered harassment and are unacceptable within our community: 32 | 33 | * Violence, threats of violence or violent language directed against another person. 34 | * Sexist, racist, homophobic, transphobic, ableist or otherwise discriminatory jokes and language. 35 | * Posting or displaying sexually explicit or violent material. 36 | * Posting or threatening to post other people's personally identifying information ("doxing"). 37 | * Personal insults, particularly those related to gender, sexual orientation, race, religion, or disability. 38 | * Inappropriate photography or recording. 39 | * Inappropriate physical contact. You should have someone's consent before touching them. 40 | * Unwelcome sexual attention. This includes, sexualized comments or jokes; inappropriate touching, groping, and unwelcomed sexual advances. 41 | * Deliberate intimidation, stalking or following (online or in person). 42 | * Advocating for, or encouraging, any of the above behavior. 43 | * Sustained disruption of community events, including talks and presentations. 44 | 45 | ## 6. Consequences of Unacceptable Behavior 46 | 47 | Unacceptable behavior from any community member, including sponsors and those with decision-making authority, will not be tolerated. 48 | 49 | Anyone asked to stop unacceptable behavior is expected to comply immediately. 50 | 51 | If a community member engages in unacceptable behavior, the community organizers may take any action they deem appropriate, up to and including a temporary ban or permanent expulsion from the community without warning (and without refund in the case of a paid event). 52 | 53 | ## 7. Reporting Guidelines 54 | 55 | If you are subject to or witness unacceptable behavior, or have any other concerns, please notify a community organizer as soon as possible. You can always contact Tabular Editor Aps at support@tabulareditor.com. 56 | 57 | 58 | 59 | Additionally, community organizers are available to help community members engage with local law enforcement or to otherwise help those experiencing unacceptable behavior feel safe. In the context of in-person events, organizers will also provide escorts as desired by the person experiencing distress. 60 | 61 | ## 8. Addressing Grievances 62 | 63 | If you feel you have been falsely or unfairly accused of violating this Code of Conduct, you should notify Tabular Editor Aps with a concise description of your grievance. Your grievance will be handled in accordance with our existing governing policies. 64 | 65 | 66 | 67 | ## 9. Scope 68 | 69 | We expect all community participants (contributors, paid or otherwise; sponsors; and other guests) to abide by this Code of Conduct in all community venues--online and in-person--as well as in all one-on-one communications pertaining to community business. 70 | 71 | This code of conduct and its related procedures also applies to unacceptable behavior occurring outside the scope of community activities when such behavior has the potential to adversely affect the safety and well-being of community members. 72 | 73 | ## 10. Contact info 74 | 75 | support@tabulareditor.com 76 | 77 | ## 11. License and attribution 78 | 79 | The Citizen Code of Conduct is distributed by [Stumptown Syndicate](http://stumptownsyndicate.org) under a [Creative Commons Attribution-ShareAlike license](http://creativecommons.org/licenses/by-sa/3.0/). 80 | 81 | Portions of text derived from the [Django Code of Conduct](https://www.djangoproject.com/conduct/) and the [Geek Feminism Anti-Harassment Policy](http://geekfeminism.wikia.com/wiki/Conference_anti-harassment/Policy). 82 | 83 | _Revision 2.3. Posted 6 March 2017._ 84 | 85 | _Revision 2.2. Posted 4 February 2016._ 86 | 87 | _Revision 2.1. Posted 23 June 2014._ 88 | 89 | _Revision 2.0, adopted by the [Stumptown Syndicate](http://stumptownsyndicate.org) board on 10 January 2013. Posted 17 March 2013._ 90 | -------------------------------------------------------------------------------- /ThirdPartyNotices.txt: -------------------------------------------------------------------------------- 1 | THIRD PARTY NOTICES FOR TABULAR EDITOR 3 2 | ======================================== 3 | 4 | This product incorporates third party components from the projects 5 | listed below. The original copyright notices and the licenses under 6 | which Tabular Editor ApS received such third party components are set 7 | forth below for informational purposes. Tabular Editor ApS licenses 8 | these third party components to you under the Tabular Editor 3 software 9 | licensing terms; however, any third party components received under 10 | open source licenses that require such components to remain under their 11 | original license are provided to you by Tabular Editor ApS under their 12 | original license. Tabular Editor ApS reserves all other rights not 13 | expressly granted herein, whether by implication, estoppel or 14 | otherwise. 15 | 16 | For third party components licensed under open source licenses with 17 | source code availability obligations, you may obtain the source code 18 | from us, if and as required under the relevant open source licenses, 19 | by sending an e-mail to licensing@tabulareditor.com. Please write 20 | "Third party open source code" in the subject line. We may also make 21 | a copy of the source code available at: 22 | 23 | https://github.com/TabularEditor/TabularEditor3. 24 | 25 | ----------------------------------------------------------------- 26 | 27 | License for Lexilla, Scintilla, and SciTE 28 | 29 | Copyright 1998-2021 by Neil Hodgson 30 | 31 | All Rights Reserved 32 | 33 | Permission to use, copy, modify, and distribute this software and its 34 | documentation for any purpose and without fee is hereby granted, 35 | provided that the above copyright notice appear in all copies and that 36 | both that copyright notice and this permission notice appear in 37 | supporting documentation. 38 | 39 | NEIL HODGSON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS 40 | SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 41 | AND FITNESS, IN NO EVENT SHALL NEIL HODGSON BE LIABLE FOR ANY 42 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 43 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, 44 | WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 45 | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE 46 | OR PERFORMANCE OF THIS SOFTWARE. 47 | 48 | ----------------------------------------------------------------- 49 | 50 | License for Scintilla.NET 51 | 52 | The MIT License (MIT) 53 | 54 | Copyright (c) 2017, Jacob Slusser, https://github.com/jacobslusser 55 | 56 | Permission is hereby granted, free of charge, to any person obtaining a copy 57 | of this software and associated documentation files (the "Software"), to deal 58 | in the Software without restriction, including without limitation the rights 59 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 60 | copies of the Software, and to permit persons to whom the Software is 61 | furnished to do so, subject to the following conditions: 62 | 63 | The above copyright notice and this permission notice shall be included in all 64 | copies or substantial portions of the Software. 65 | 66 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 67 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 68 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 69 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 70 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 71 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 72 | SOFTWARE. 73 | 74 | ----------------------------------------------------------------- 75 | 76 | License for ANTLR 77 | 78 | [The "BSD 3-clause license"] 79 | Copyright (c) 2012-2017 The ANTLR Project. All rights reserved. 80 | 81 | Redistribution and use in source and binary forms, with or without 82 | modification, are permitted provided that the following conditions 83 | are met: 84 | 85 | 1. Redistributions of source code must retain the above copyright 86 | notice, this list of conditions and the following disclaimer. 87 | 2. Redistributions in binary form must reproduce the above copyright 88 | notice, this list of conditions and the following disclaimer in the 89 | documentation and/or other materials provided with the distribution. 90 | 3. Neither the name of the copyright holder nor the names of its contributors 91 | may be used to endorse or promote products derived from this software 92 | without specific prior written permission. 93 | 94 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 95 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 96 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 97 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 98 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 99 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 100 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 101 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 102 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 103 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 104 | 105 | ===== 106 | 107 | MIT License for codepointat.js from https://git.io/codepointat 108 | MIT License for fromcodepoint.js from https://git.io/vDW1m 109 | 110 | Copyright Mathias Bynens 111 | 112 | Permission is hereby granted, free of charge, to any person obtaining 113 | a copy of this software and associated documentation files (the 114 | "Software"), to deal in the Software without restriction, including 115 | without limitation the rights to use, copy, modify, merge, publish, 116 | distribute, sublicense, and/or sell copies of the Software, and to 117 | permit persons to whom the Software is furnished to do so, subject to 118 | the following conditions: 119 | 120 | The above copyright notice and this permission notice shall be 121 | included in all copies or substantial portions of the Software. 122 | 123 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 124 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 125 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 126 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 127 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 128 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 129 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 130 | 131 | ----------------------------------------------------------------- 132 | 133 | License for Newtonsoft.Json 134 | 135 | The MIT License (MIT) 136 | 137 | Copyright (c) 2007 James Newton-King 138 | 139 | Permission is hereby granted, free of charge, to any person obtaining 140 | a copy of this software and associated documentation files (the "Software"), 141 | to deal in the Software without restriction, including without limitation 142 | the rights to use, copy, modify, merge, publish, distribute, sublicense, 143 | and/or sell copies of the Software, and to permit persons to whom the 144 | Software is furnished to do so, subject to the following conditions: 145 | 146 | The above copyright notice and this permission notice shall be included 147 | in all copies or substantial portions of the Software. 148 | 149 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 150 | OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 151 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 152 | THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 153 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 154 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 155 | IN THE SOFTWARE. 156 | 157 | ----------------------------------------------------------------- 158 | 159 | License for Dynamic-LINQ.net 160 | 161 | Apache License 162 | Version 2.0, January 2004 163 | http://www.apache.org/licenses/ 164 | 165 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 166 | 167 | 1. Definitions. 168 | 169 | "License" shall mean the terms and conditions for use, reproduction, 170 | and distribution as defined by Sections 1 through 9 of this document. 171 | 172 | "Licensor" shall mean the copyright owner or entity authorized by 173 | the copyright owner that is granting the License. 174 | 175 | "Legal Entity" shall mean the union of the acting entity and all 176 | other entities that control, are controlled by, or are under common 177 | control with that entity. For the purposes of this definition, 178 | "control" means (i) the power, direct or indirect, to cause the 179 | direction or management of such entity, whether by contract or 180 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 181 | outstanding shares, or (iii) beneficial ownership of such entity. 182 | 183 | "You" (or "Your") shall mean an individual or Legal Entity 184 | exercising permissions granted by this License. 185 | 186 | "Source" form shall mean the preferred form for making modifications, 187 | including but not limited to software source code, documentation 188 | source, and configuration files. 189 | 190 | "Object" form shall mean any form resulting from mechanical 191 | transformation or translation of a Source form, including but 192 | not limited to compiled object code, generated documentation, 193 | and conversions to other media types. 194 | 195 | "Work" shall mean the work of authorship, whether in Source or 196 | Object form, made available under the License, as indicated by a 197 | copyright notice that is included in or attached to the work 198 | (an example is provided in the Appendix below). 199 | 200 | "Derivative Works" shall mean any work, whether in Source or Object 201 | form, that is based on (or derived from) the Work and for which the 202 | editorial revisions, annotations, elaborations, or other modifications 203 | represent, as a whole, an original work of authorship. For the purposes 204 | of this License, Derivative Works shall not include works that remain 205 | separable from, or merely link (or bind by name) to the interfaces of, 206 | the Work and Derivative Works thereof. 207 | 208 | "Contribution" shall mean any work of authorship, including 209 | the original version of the Work and any modifications or additions 210 | to that Work or Derivative Works thereof, that is intentionally 211 | submitted to Licensor for inclusion in the Work by the copyright owner 212 | or by an individual or Legal Entity authorized to submit on behalf of 213 | the copyright owner. For the purposes of this definition, "submitted" 214 | means any form of electronic, verbal, or written communication sent 215 | to the Licensor or its representatives, including but not limited to 216 | communication on electronic mailing lists, source code control systems, 217 | and issue tracking systems that are managed by, or on behalf of, the 218 | Licensor for the purpose of discussing and improving the Work, but 219 | excluding communication that is conspicuously marked or otherwise 220 | designated in writing by the copyright owner as "Not a Contribution." 221 | 222 | "Contributor" shall mean Licensor and any individual or Legal Entity 223 | on behalf of whom a Contribution has been received by Licensor and 224 | subsequently incorporated within the Work. 225 | 226 | 2. Grant of Copyright License. Subject to the terms and conditions of 227 | this License, each Contributor hereby grants to You a perpetual, 228 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 229 | copyright license to reproduce, prepare Derivative Works of, 230 | publicly display, publicly perform, sublicense, and distribute the 231 | Work and such Derivative Works in Source or Object form. 232 | 233 | 3. Grant of Patent License. Subject to the terms and conditions of 234 | this License, each Contributor hereby grants to You a perpetual, 235 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 236 | (except as stated in this section) patent license to make, have made, 237 | use, offer to sell, sell, import, and otherwise transfer the Work, 238 | where such license applies only to those patent claims licensable 239 | by such Contributor that are necessarily infringed by their 240 | Contribution(s) alone or by combination of their Contribution(s) 241 | with the Work to which such Contribution(s) was submitted. If You 242 | institute patent litigation against any entity (including a 243 | cross-claim or counterclaim in a lawsuit) alleging that the Work 244 | or a Contribution incorporated within the Work constitutes direct 245 | or contributory patent infringement, then any patent licenses 246 | granted to You under this License for that Work shall terminate 247 | as of the date such litigation is filed. 248 | 249 | 4. Redistribution. You may reproduce and distribute copies of the 250 | Work or Derivative Works thereof in any medium, with or without 251 | modifications, and in Source or Object form, provided that You 252 | meet the following conditions: 253 | 254 | (a) You must give any other recipients of the Work or 255 | Derivative Works a copy of this License; and 256 | 257 | (b) You must cause any modified files to carry prominent notices 258 | stating that You changed the files; and 259 | 260 | (c) You must retain, in the Source form of any Derivative Works 261 | that You distribute, all copyright, patent, trademark, and 262 | attribution notices from the Source form of the Work, 263 | excluding those notices that do not pertain to any part of 264 | the Derivative Works; and 265 | 266 | (d) If the Work includes a "NOTICE" text file as part of its 267 | distribution, then any Derivative Works that You distribute must 268 | include a readable copy of the attribution notices contained 269 | within such NOTICE file, excluding those notices that do not 270 | pertain to any part of the Derivative Works, in at least one 271 | of the following places: within a NOTICE text file distributed 272 | as part of the Derivative Works; within the Source form or 273 | documentation, if provided along with the Derivative Works; or, 274 | within a display generated by the Derivative Works, if and 275 | wherever such third-party notices normally appear. The contents 276 | of the NOTICE file are for informational purposes only and 277 | do not modify the License. You may add Your own attribution 278 | notices within Derivative Works that You distribute, alongside 279 | or as an addendum to the NOTICE text from the Work, provided 280 | that such additional attribution notices cannot be construed 281 | as modifying the License. 282 | 283 | You may add Your own copyright statement to Your modifications and 284 | may provide additional or different license terms and conditions 285 | for use, reproduction, or distribution of Your modifications, or 286 | for any such Derivative Works as a whole, provided Your use, 287 | reproduction, and distribution of the Work otherwise complies with 288 | the conditions stated in this License. 289 | 290 | 5. Submission of Contributions. Unless You explicitly state otherwise, 291 | any Contribution intentionally submitted for inclusion in the Work 292 | by You to the Licensor shall be under the terms and conditions of 293 | this License, without any additional terms or conditions. 294 | Notwithstanding the above, nothing herein shall supersede or modify 295 | the terms of any separate license agreement you may have executed 296 | with Licensor regarding such Contributions. 297 | 298 | 6. Trademarks. This License does not grant permission to use the trade 299 | names, trademarks, service marks, or product names of the Licensor, 300 | except as required for reasonable and customary use in describing the 301 | origin of the Work and reproducing the content of the NOTICE file. 302 | 303 | 7. Disclaimer of Warranty. Unless required by applicable law or 304 | agreed to in writing, Licensor provides the Work (and each 305 | Contributor provides its Contributions) on an "AS IS" BASIS, 306 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 307 | implied, including, without limitation, any warranties or conditions 308 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 309 | PARTICULAR PURPOSE. You are solely responsible for determining the 310 | appropriateness of using or redistributing the Work and assume any 311 | risks associated with Your exercise of permissions under this License. 312 | 313 | 8. Limitation of Liability. In no event and under no legal theory, 314 | whether in tort (including negligence), contract, or otherwise, 315 | unless required by applicable law (such as deliberate and grossly 316 | negligent acts) or agreed to in writing, shall any Contributor be 317 | liable to You for damages, including any direct, indirect, special, 318 | incidental, or consequential damages of any character arising as a 319 | result of this License or out of the use or inability to use the 320 | Work (including but not limited to damages for loss of goodwill, 321 | work stoppage, computer failure or malfunction, or any and all 322 | other commercial damages or losses), even if such Contributor 323 | has been advised of the possibility of such damages. 324 | 325 | 9. Accepting Warranty or Additional Liability. While redistributing 326 | the Work or Derivative Works thereof, You may choose to offer, 327 | and charge a fee for, acceptance of support, warranty, indemnity, 328 | or other liability obligations and/or rights consistent with this 329 | License. However, in accepting such obligations, You may act only 330 | on Your own behalf and on Your sole responsibility, not on behalf 331 | of any other Contributor, and only if You agree to indemnify, 332 | defend, and hold each Contributor harmless for any liability 333 | incurred by, or claims asserted against, such Contributor by reason 334 | of your accepting any such warranty or additional liability. 335 | 336 | END OF TERMS AND CONDITIONS 337 | 338 | APPENDIX: How to apply the Apache License to your work. 339 | 340 | To apply the Apache License to your work, attach the following 341 | boilerplate notice, with the fields enclosed by brackets "[]" 342 | replaced with your own identifying information. (Don't include 343 | the brackets!) The text should be enclosed in the appropriate 344 | comment syntax for the file format. We also recommend that a 345 | file or class name and description of purpose be included on the 346 | same "printed page" as the copyright notice for easier 347 | identification within third-party archives. 348 | 349 | Copyright [2016] [Stef Heyenrath] 350 | 351 | Licensed under the Apache License, Version 2.0 (the "License"); 352 | you may not use this file except in compliance with the License. 353 | You may obtain a copy of the License at 354 | 355 | http://www.apache.org/licenses/LICENSE-2.0 356 | 357 | Unless required by applicable law or agreed to in writing, software 358 | distributed under the License is distributed on an "AS IS" BASIS, 359 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 360 | See the License for the specific language governing permissions and 361 | limitations under the License. 362 | 363 | ----------------------------------------------------------------- 364 | 365 | License for VertiPaq-Analyzer 366 | 367 | MIT License 368 | 369 | Copyright (c) 2019 SQLBI 370 | 371 | Permission is hereby granted, free of charge, to any person obtaining a copy 372 | of this software and associated documentation files (the "Software"), to deal 373 | in the Software without restriction, including without limitation the rights 374 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 375 | copies of the Software, and to permit persons to whom the Software is 376 | furnished to do so, subject to the following conditions: 377 | 378 | The above copyright notice and this permission notice shall be included in all 379 | copies or substantial portions of the Software. 380 | 381 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 382 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 383 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 384 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 385 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 386 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 387 | SOFTWARE. 388 | 389 | ----------------------------------------------------------------- 390 | 391 | License for TOMWrapper (Tabular Editor Open Source version) 392 | 393 | MIT License 394 | 395 | Copyright (c) 2016 otykier 396 | 397 | Permission is hereby granted, free of charge, to any person obtaining a copy 398 | of this software and associated documentation files (the "Software"), to deal 399 | in the Software without restriction, including without limitation the rights 400 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 401 | copies of the Software, and to permit persons to whom the Software is 402 | furnished to do so, subject to the following conditions: 403 | 404 | The above copyright notice and this permission notice shall be included in all 405 | copies or substantial portions of the Software. 406 | 407 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 408 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 409 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 410 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 411 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 412 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 413 | SOFTWARE. 414 | 415 | ----------------------------------------------------------------- 416 | 417 | License for Microsoft.ApplicationInsights client libraries 418 | 419 | MIT License 420 | 421 | Permission is hereby granted, free of charge, to any person obtaining a copy 422 | of Microsoft.ApplicationInsights (the "Software"), to deal in the Software 423 | without restriction, including without limitation the rights to use, copy, 424 | modify, merge, publish, distribute, sublicense, and/or sell copies of the 425 | Software, and to permit persons to whom the Software is furnished to do so, 426 | subject to the following conditions: 427 | 428 | The above copyright notice and this permission notice (including the next 429 | paragraph) shall be included in all copies or substantial portions of the 430 | Software. 431 | 432 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 433 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 434 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 435 | MICROSOFT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 436 | AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 437 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 438 | 439 | ----------------------------------------------------------------- 440 | 441 | License for MICROSOFT ANALYSIS MANAGEMENT OBJECTS (AMO) 442 | 443 | MICROSOFT SOFTWARE LICENSE TERMS 444 | 445 | MICROSOFT ANALYSIS MANAGEMENT OBJECTS (AMO) 446 | 447 | IF YOU LIVE IN (OR ARE A BUSINESS WITH A PRINCIPAL PLACE OF BUSINESS IN) 448 | THE UNITED STATES, PLEASE READ THE “BINDING ARBITRATION AND CLASS ACTION 449 | WAIVER” SECTION BELOW. IT AFFECTS HOW DISPUTES ARE RESOLVED. 450 | 451 | These license terms are an agreement between you and Microsoft Corporation 452 | (or one of its affiliates). They apply to the software named above and any 453 | Microsoft services or software updates (except to the extent such services 454 | or updates are accompanied by new or additional terms, in which case those 455 | different terms apply prospectively and do not alter your or Microsoft’s 456 | rights relating to pre-updated software or services). IF YOU COMPLY WITH 457 | THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW. BY USING THE SOFTWARE, YOU 458 | ACCEPT THESE TERMS. 459 | 460 | 1. INSTALLATION AND USE RIGHTS. 461 | 462 | a) General. You may install and use any number of copies of the software. 463 | 464 | b) ThirdPartySoftware. The software may include third party applications 465 | that Microsoft, not thet hird party, licenses to you under this 466 | agreement. Any included notices for third party applications are for 467 | your information only. 468 | 469 | c) Competitive Benchmarking. If you are a direct competitor, and you 470 | access or use the software for purposes of competitive benchmarking, 471 | analysis, or intelligence gathering, you waive as against Microsoft, 472 | its subsidiaries, and its affiliated companies (including prospectively) 473 | any competitive use, access, and benchmarking test restrictions in the 474 | terms governing your software to the extent your terms of use are, or 475 | purport to be, more restrictive than Microsoft’s terms. If you do not 476 | waive any such purported restrictions in the terms governing your 477 | software, you are not allowed to access or use this software, and will 478 | not do so. 479 | 480 | 2. DISTRIBUTABLE CODE. The software may contain code you are permitted to 481 | distribute (i.e. make available for third parties) in applications you 482 | develop, as described in this Section. 483 | 484 | a) Distribution Rights. The code and test files described below are 485 | distributable if included with the software. 486 | 487 | i. REDIST.TXT Files. You may copy and distribute the object code form 488 | of code listed on the REDIST list in the software, if any, or listed 489 | at Redist.txt; 490 | ii. Image Library. You may copy and distribute images, graphics, and 491 | animations in the Image Library as described in the software 492 | documentation; and 493 | iii. Third Party Distribution. You may permit distributors of your 494 | applications to copy and distribute any of this distributable code 495 | you elect to distribute with your applications. 496 | 497 | b) Distribution Requirements. For any code you distribute, you must: 498 | 499 | i. add significant primary functionality to it in your applications; 500 | ii. require distributors and external end users to agree to terms that 501 | protect it and Microsoft at least as much as this agreement; and 502 | iii. indemnify, defend, and hold harmless Microsoft from any claims, 503 | including attorneys’ fees, related to the distribution or use of 504 | your applications, except to the extent that any claim is based 505 | solely on the unmodified distributable code. 506 | 507 | c) Distribution Restrictions. You may not: 508 | 509 | i. use Microsoft’s trademarks or trade dress in your application in any 510 | way that suggests your application comes from or is endorsed by Microsoft; 511 | or 512 | ii. modify or distribute the source code of any distributable code so that 513 | any part of it becomes subject to any license that requires that the 514 | distributable code, any other part of the software, or any of Microsoft’s 515 | other intellectual property be disclosed or distributed in source code 516 | form, or that others have the right to modify it. 517 | 518 | 3. DATA COLLECTION. The software may collect information about you and your use of 519 | the software and send that to Microsoft. Microsoft may use this information to 520 | provide services and improve Microsoft’s products and services. Your opt-out 521 | rights, if any, are described in the product documentation. Some features in the 522 | software may enable collection of data from users of your applications that access 523 | or use the software. If you use these features to enable data collection in your 524 | applications, you must comply with applicable law, including getting any required 525 | user consent, and maintain a prominent privacy policy that accurately informs 526 | users about how you use, collect, and share their data. You can learn more about 527 | Microsoft’s data collection and use in the product documentation and the Microsoft 528 | Privacy Statement at https://go.microsoft.com/fwlink/?LinkId=521839. You agree to 529 | comply with all applicable provisions of the Microsoft Privacy Statement. 530 | 531 | 4. SCOPE OF LICENSE. The software is licensed, not sold. Microsoft reserves all other 532 | rights. Unless applicable law gives you more rights despite this limitation, you 533 | will not (and have no right to): 534 | 535 | a) work around any technical limitations in the software that only allow you to 536 | use it in certain ways; 537 | b) reverse engineer, decompile or disassemble the software; 538 | c) remove, minimize, block, or modify any notices of Microsoft or its suppliers in 539 | the software; 540 | d) use the software in any way that is against the law or to create or propagate 541 | malware; or 542 | e) share, publish, distribute, or lend the software (except for any distributable 543 | code, subject to the terms above), provide the software as a stand-alone hosted 544 | solution for others to use, or transfer the software or this agreement to any 545 | third party. 546 | 547 | 5. EXPORT RESTRICTIONS. You must comply with all domestic and international export 548 | laws and regulations that apply to the software, which include restrictions on 549 | destinations, end users, and end use. For further information on export restrictions, 550 | visit http://aka.ms/exporting. 551 | 552 | 6. SUPPORT SERVICES. Microsoft is not obligated under this agreement to provide any 553 | support services for the software. Any support provided is “as is”, “with all faults”, 554 | and without warranty of any kind. 555 | 556 | 7. UPDATES. The software may periodically check for updates, and download and install 557 | them for you. You may obtain updates only from Microsoft or authorized sources. 558 | Microsoft may need to update your system to provide you with updates. You agree to 559 | receive these automatic updates without any additional notice. Updates may not 560 | include or support all existing software features, services, or peripheral devices. 561 | 562 | 8. BINDING ARBITRATION AND CLASS ACTION WAIVER. This Section applies if you live in 563 | (or, if a business, your principal place of business is in) the United States. If 564 | you and Microsoft have a dispute, you and Microsoft agree to try for 60 days to 565 | resolve it informally. If you and Microsoft can’t, you and Microsoft agree to binding 566 | individual arbitration before the American Arbitration Association under the Federal 567 | Arbitration Act (“FAA”), and not to sue in court in front of a judge or jury. Instead, 568 | a neutral arbitrator will decide. Class action lawsuits, class-wide arbitrations, 569 | private attorney- general actions, and any other proceeding where someone acts in a 570 | representative capacity are not allowed; nor is combining individual proceedings 571 | without the consent of all parties. The complete Arbitration Agreement contains more 572 | terms and is at http://aka.ms/arb-agreement-1. You and Microsoft agree to these terms. 573 | 574 | 9. ENTIRE AGREEMENT. This agreement, and any other terms Microsoft may provide for 575 | supplements, updates, or third-party applications, is the entire agreement for the 576 | software. 577 | 578 | 10. APPLICABLE LAW AND PLACE TO RESOLVE DISPUTES. If you acquired the software in the 579 | United States or Canada, the laws of the state or province where you live (or, if a 580 | business, where your principal place of business is located) govern the interpretation 581 | of this agreement, claims for its breach, and all other claims (including consumer 582 | protection, unfair competition, and tort claims), regardless of conflict of laws 583 | principles, except that the FAA governs everything related to arbitration. If you 584 | acquired the software in any other country, its laws apply, except that the FAA 585 | governs everything related to arbitration. If U.S. federal jurisdiction exists, you 586 | and Microsoft consent to exclusive jurisdiction and venue in the federal court in 587 | King County, Washington for all disputes heard in court (excluding arbitration). If 588 | not, you and Microsoft consent to exclusive jurisdiction and venue in the Superior 589 | Court of King County, Washington for all disputes heard in court (excluding 590 | arbitration). 591 | 592 | 11. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. 593 | You may have other rights, including consumer rights, under the laws of your state, 594 | province, or country. Separate and apart from your relationship with Microsoft, you 595 | may also have rights with respect to the party from which you acquired the software. 596 | This agreement does not change those other rights if the laws of your state, province, 597 | or country do not permit it to do so. For example, if you acquired the software in one 598 | of the below regions, or mandatory country law applies, then the following provisions 599 | apply to you: 600 | 601 | a) Australia. You have statutory guarantees under the Australian Consumer Law and 602 | nothing in this agreement is intended to affect those rights. 603 | b) Canada. If you acquired this software in Canada, you may stop receiving updates by 604 | turning off the automatic update feature, disconnecting your device from the 605 | Internet (if and when you re-connect to the Internet, however, the software will 606 | resume checking for and installing updates), or uninstalling the software. The 607 | product documentation, if any, may also specify how to turn off updates for your 608 | specific device or software. 609 | c) Germany and Austria. 610 | 611 | i. Warranty. The properly licensed software will perform substantially as 612 | described in any Microsoft materials that accompany the software. However, 613 | Microsoft gives no contractual guarantee in relation to the licensed software. 614 | ii. Limitation of Liability. In case of intentional conduct, gross negligence, 615 | claims based on the Product Liability Act, as well as, in case of death or 616 | personal or physical injury, Microsoft is liable according to the statutory 617 | law. 618 | 619 | Subject to the foregoing clause ii., Microsoft will only be liable for slight 620 | negligence if Microsoft is in breach of such material contractual obligations, 621 | the fulfillment of which facilitate the due performance of this agreement, the 622 | breach of which would endanger the purpose of this agreement and the compliance 623 | with which a party may constantly trust in (so-called "cardinal obligations"). 624 | In other cases of slight negligence, Microsoft will not be liable for slight 625 | negligence. 626 | 627 | 12. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED “AS IS.” YOU BEAR THE RISK OF USING 628 | IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES, OR CONDITIONS. TO THE EXTENT 629 | PERMITTED UNDER APPLICABLE LAWS, MICROSOFT EXCLUDES ALL IMPLIED WARRANTIES, INCLUDING 630 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. 631 | 632 | 13. LIMITATION ON AND EXCLUSION OF DAMAGES. IF YOU HAVE ANY BASIS FOR RECOVERING DAMAGES 633 | DESPITE THE PRECEDING DISCLAIMER OF WARRANTY, YOU CAN RECOVER FROM MICROSOFT AND ITS 634 | SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, 635 | INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. 636 | 637 | This limitation applies to (a) anything related to the software, services, content 638 | including code) on third party Internet sites, or third party applications; and (b) 639 | claims for breach of contract, warranty, guarantee, or condition; strict liability, 640 | negligence, or other tort; or any other claim; in each case to the extent permitted 641 | by applicable law. 642 | 643 | It also applies even if Microsoft knew or should have known about the possibility of 644 | the damages. The above limitation or exclusion may not apply to you because your state, 645 | province, or country may not allow the exclusion or limitation of incidental, 646 | consequential, or other damages. 647 | 648 | Please note: As this software is distributed in Canada, some of the clauses in this 649 | agreement are provided below in French. 650 | 651 | Remarque: Ce logiciel étant distribué au Canada, certaines des clauses dans ce contrat 652 | sont fournies ci-dessous en français. 653 | 654 | EXONÉRATION DE GARANTIE. Le logiciel visé par une licence est offert « tel quel ». Toute 655 | utilisation de ce logiciel est à votre seule risque et péril. Microsoft n’accorde aucune 656 | autre garantie expresse. Vous pouvez bénéficier de droits additionnels en vertu du droit 657 | local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles 658 | sont permises par le droit locale, les garanties implicites de qualité marchande, 659 | d’adéquation à un usage particulier et d’absence de contrefaçon sont exclues. 660 | 661 | LIMITATION DES DOMMAGES-INTÉRÊTS ET EXCLUSION DE RESPONSABILITÉ POUR LES DOMMAGES. Vous 662 | ouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages 663 | directs uniquement à hauteur de 5,00 $ US. Vous ne pouvez prétendre à aucune indemnisation 664 | pour les autres dommages, y compris les dommages spéciaux, indirects ou accessoires et 665 | pertes de bénéfices. 666 | 667 | Cette limitation concerne: 668 | 669 | • tout ce qui est relié au logiciel, aux services ou au contenu (y compris le code) 670 | figurant sur des sites Internet tiers ou dans des programmes tiers; et 671 | • les réclamations au titre de violation de contrat ou de garantie, ou au titre de 672 | responsabilité stricte, de négligence ou d’une autre faute dans la limite autorisée 673 | par la loi en vigueur. 674 | 675 | Elle s’applique également, même si Microsoft connaissait ou devrait connaître 676 | l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou la limitation 677 | de responsabilité pour les dommages indirects, accessoires ou de quelque nature que ce 678 | soit, il se peut que la limitation ou l’exclusion ci-dessus ne s’appliquera pas à votre 679 | égard. 680 | 681 | EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir 682 | d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les 683 | droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas. 684 | 685 | ----------------------------------------------------------------- 686 | 687 | License for DevExpress WinForms Controls 688 | 689 | End-User License Agreement 690 | 691 | DEVELOPER EXPRESS INC 692 | DEVEXPRESS WinForms Controls 693 | Copyright (C) 2000-2021 Developer Express Inc. 694 | 695 | Last revised January, 2021 696 | 697 | END-USER LICENSE AGREEMENT 698 | FOR ALL SOFTWARE DEVELOPMENT PRODUCT(S) INCLUDED IN THIS DISTRIBUTION 699 | 700 | IMPORTANT - PLEASE READ THIS END-USER LICENSE AGREEMENT (“AGREEMENT”) CAREFULLY BEFORE DOWNLOADING OR USING THE SOFTWARE DEVELOPMENT PRODUCT(S) INCLUDED IN THIS DISTRIBUTION/INSTALLATION. 701 | 702 | This Developer Express Inc ("DEVEXPRESS") AGREEMENT constitutes a legally binding agreement between you or the business and/or entity which you represent ("You" or "LICENSEE") and DEVEXPRESS for all DEVEXPRESS products, frameworks, widgets, source code, demos, intermediate files, media, printed materials, and documentation ("SOFTWARE DEVELOPMENT PRODUCT(S)") included in this distribution/installation. 703 | 704 | By purchasing, installing, copying, or otherwise using the SOFTWARE DEVELOPMENT PRODUCT(S), you acknowledge that you have read this AGREEMENT and you agree to be bound by its terms and conditions. If you are representing a business and/or entity, you acknowledge that you have the legal authority to bind the business and/or entity you are representing to all the terms and conditions of this AGREEMENT. 705 | 706 | If you do not agree to any of the terms and conditions of this AGREEMENT or if you do not have the legal authority to bind the business and/or entity you are representing to any of the terms and conditions of this AGREEMENT, DO NOT INSTALL, COPY, USE, EVALUATE, OR REPLICATE IN ANY MANNER, ANY PART, FILE OR PORTION OF THE SOFTWARE DEVELOPMENT PRODUCT(S). 707 | 708 | All SOFTWARE DEVELOPMENT PRODUCT(S) is licensed, not sold. 709 | 710 | 1. GRANT OF LICENSE. 711 | 712 | Subject to all the terms and conditions of this AGREEMENT, DEVEXPRESS grants LICENSEE a non-exclusive, non-transferable license to install and use the SOFTWARE DEVELOPMENT PRODUCT(S) included in this distribution as authorized in sections 1.1 through 1.5 below: 713 | 714 | 1.1 INDIVIDUAL USE LICENSE. 715 | 716 | If you are an individual, you may install, copy, and use the SOFTWARE DEVELOPMENT PRODUCT(S) by purchasing a 12 month subscription from DEVEXPRESS or its authorized resellers, in accordance with Section 9 of this AGREEMENT. 717 | 718 | 1.2 BUSINESS AND GOVERNMENT USE LICENSE. 719 | 720 | DEVEXPRESS licenses the SOFTWARE DEVELOPMENT PRODUCT(S) on a per-developer basis. If you represent a business and/or entity, you or your employees may install, copy, and use the SOFTWARE DEVELOPMENT PRODUCT(S) by purchasing a 12 month subscription from DEVEXPRESS or its authorized resellers for each developer using the SOFTWARE DEVELOPMENT PRODUCT(S), in accordance with Section 9 of this AGREEMENT. The number of licensed developers using the SOFTWARE DEVELOPMENT PRODUCT(S) must equal or be less than the number of seats purchased from DEVEXPRESS or its authorized resellers. 721 | 722 | 1.3 COMPLIMENTARY USE LICENSE. 723 | 724 | If the SOFTWARE DEVELOPMENT PRODUCT(S) you have obtained is marked as "COMPLIMENTARY" or "FREE", you may install and use the SOFTWARE DEVELOPMENT PRODUCT(S). 725 | 726 | DEVEXPRESS reserves the right to discontinue at its discretion and without advance notice, the availability of COMPLIMENTARY or FREE versions of the SOFTWARE DEVELOPMENT PRODUCT(S) or its constituent parts at any time. 727 | 728 | 1.4 THIRTY (30) DAY EVALUATION (TRIAL) USE LICENSE. 729 | 730 | If the SOFTWARE DEVELOPMENT PRODUCT(S) you have obtained is marked as a "TRIAL" or "EVALUATION," you may install one copy of the SOFTWARE DEVELOPMENT PRODUCT(S) for evaluation purposes only, for a period of 30 calendar days from the date of installation ("EVALUATION PERIOD"). Upon expiration of the EVALUATION PERIOD, the SOFTWARE DEVELOPMENT PRODUCT(S) must be uninstalled and all copies destroyed. 731 | 732 | You MAY NOT CREATE applications or begin software projects using the SOFTWARE DEVELOPMENT PRODUCT(S) under the terms of the THIRTY (30) DAY EVALUATION (TRIAL) USE LICENSE. 733 | 734 | You MAY NOT REDISTRIBUTE files in the SOFTWARE DEVELOPMENT PRODUCT(S) distribution if using an evaluation or trial version of the SOFTWARE DEVELOPMENT PRODUCT(S). 735 | 736 | 1.5 PRE-RELEASE SOFTWARE. 737 | 738 | SOFTWARE DEVELOPMENT PRODUCT(S) marked as PRE-RELEASE (including but not limited to the designation of Alpha, Beta, Community Technology Preview "CTP", or Release Candidate "RC") may contain deficiencies and as such, should not be considered for use or integrated in any mission critical application. 739 | 740 | DEVEXPRESS may, at its sole discretion, discontinue availability of the PRE-RELEASE software, limit or modify PRE-RELEASE software functionality, or eliminate SUPPORT SERVICES for the PRE-RELEASE software at any time. For a complete list of PRE-RELEASE software, refer to the following webpage: https://www.devexpress.com/pre-release 741 | 742 | 2. LIMITATIONS ON REVERSE ENGINEERING, DECOMPILATION, AND DISASSEMBLY. 743 | 744 | You may not reverse engineer, decompile, create derivative works or disassemble the SOFTWARE DEVELOPMENT PRODUCT(S). If the SOFTWARE DEVELOPMENT PRODUCT(S) is purchased by you with the intent to reverse engineer, decompile, create derivative works, or the exploitation and unauthorized transfer of any DEVEXPRESS intellectual property and trade secrets, to include any exposed methods or source code where provided, no licensed right of use shall exist and any PRODUCT(s) created as a result shall be judged illegal by definition. Any sale or resale of intellectual property or created derivatives so obtained will be prosecuted to the fullest extent of all local, federal and international law. 745 | 746 | 3. SEPARATION OF COMPONENTS. 747 | 748 | The SOFTWARE DEVELOPMENT PRODUCT(S) is licensed as a single PRODUCT(S). The SOFTWARE DEVELOPMENT PRODUCT(S) and its constituent parts and any provided redistributables may not be reverse engineered, decompiled, disassembled or separated for use on more than one computer, nor placed for distribution, sale, or resale as individual creations by LICENSEE. The provision of source code, if included with the SOFTWARE DEVELOPMENT PRODUCT(S), does not constitute transfer of any legal rights to such code, and resale or distribution of all or any portion of all source code and intellectual property will be prosecuted to the fullest extent of all applicable local, federal and international laws. All DEVEXPRESS libraries, source code, redistributables and other files remain DEVEXPRESS's exclusive property. You may not distribute any files, except those that DEVEXPRESS has expressly designated as REDISTRIBUTABLE(S). 749 | 750 | 4. RENTAL. 751 | 752 | You may not rent, lease, or lend the SOFTWARE DEVELOPMENT PRODUCT(S). 753 | 754 | 5. TRANSFER. 755 | 756 | You may NOT permanently or temporarily transfer ANY of your rights under this AGREEMENT to any individual or business or government entity without prior written approval from DEVEXPRESS. Regardless of any modifications which you make and regardless of how you might compile, link, and/or package your programs, under no circumstances may the libraries, Redistributables, and/or files included in the SOFTWARE DEVELOPMENT PRODUCT(S) (including any portions thereof) be used for developing programs by anyone other than you. Only you as the LICENSEE have the right to use the libraries, redistributables, or other files of the SOFTWARE DEVELOPMENT PRODUCT(S) (or any portions thereof) for developing programs created with the SOFTWARE DEVELOPMENT PRODUCT(S). You may not share copies of the Redistributables with other co-developers. You may not reproduce or distribute any DEVEXPRESS documentation without the permission of DEVEXPRESS. 757 | 758 | 6. REDISTRIBUTION. 759 | 760 | The SOFTWARE DEVELOPMENT PRODUCT(s) may include certain files ("REDISTRIBUTABLE(s)") intended for distribution by you to the users of software applications which you create. Redistributables include, for example, those files identified in printed or on-line documentation as redistributable files or those files preselected for deployment by an install utility provided with the SOFTWARE DEVELOPMENT PRODUCT(S) (if any). In all circumstances, the REDISTRIBUTABLES for the SOFTWARE DEVELOPMENT PRODUCT(S) are only those files specifically designated as such by DEVEXPRESS. 761 | 762 | AT NO TIME MAY LICENSEE CREATE ANY TOOL, REDISTRIBUTABLE, OR PRODUCT THAT DIRECTLY OR INDIRECTLY COMPETES WITH ANY DEVEXPRESS PRODUCT(S), INCLUDING BUT NOT LIMITED TO THE SOFTWARE DEVELOPMENT PRODUCT(S), BY UTILIZING ALL OR ANY PORTION OF THE DEVEXPRESS SOFTWARE DEVELOPMENT PRODUCT(S). 763 | 764 | Distribution by the LICENSEE of any design-time tools (EXE's or DLL's), executables, and source code distributed to LICENSEE by DEVEXPRESS as part of this SOFTWARE DEVELOPMENT PRODUCT(S) and not explicitly identified as a redistributable file is strictly prohibited. The LICENSEE shall not develop software applications that provide an application programming interface to the SOFTWARE DEVELOPMENT PRODUCT(S) or the SOFTWARE DEVELOPMENT PRODUCT(S) as modified. 765 | 766 | The LICENSEE may NOT distribute the SOFTWARE DEVELOPMENT PRODUCT(S), in any format, to others for development or application compilation purposes. 767 | 768 | If you have purchased a 12 month subscription as described in Section 9 of this AGREEMENT, or have obtained a COMPLIMENTARY USE LICENSE as described in Section 1.3 of this AGREEMENT, you may reproduce and distribute copies of the REDISTRIBUTABLES, provided that such copies are made from the original copy of the REDISTRIBUTABLES included with the SOFTWARE DEVELOPMENT PRODUCT(S) or modified versions of the REDISTRIBUTABLES which are provided to you by DEVEXPRESS or those which you create. Copies of REDISTRIBUTABLES may only be distributed with and for the sole purpose of executing application programs permitted under this AGREEMENT that you have created using the SOFTWARE DEVELOPMENT PRODUCT(S). 769 | 770 | The complete list of REDISTRIBUTABLES under this AGREEMENT is as follows: 771 | 772 | DevExpress.BonusSkins.v20.2.dll 773 | DevExpress.Charts.v20.2.Core.dll 774 | DevExpress.CodeParser.v20.2.dll 775 | DevExpress.Data.v20.2.dll 776 | DevExpress.Data.Desktop.v20.2.dll 777 | DevExpress.DataAccess.v20.2.dll 778 | DevExpress.DataAccess.v20.2.UI.dll 779 | DevExpress.DataVisualization.v20.2.Core.dll 780 | DevExpress.Diagram.v20.2.Core.dll 781 | DevExpress.Dialogs.v20.2.Core.dll 782 | DevExpress.Images.v20.2.dll 783 | DevExpress.Map.v20.2.Core.dll 784 | DevExpress.Mvvm.v20.2.DataModel.dll 785 | DevExpress.Mvvm.v20.2.DataModel.EF6.dll 786 | DevExpress.Mvvm.v20.2.DataModel.EFCore.dll 787 | DevExpress.Mvvm.v20.2.DataModel.WCF.dll 788 | DevExpress.Mvvm.v20.2.dll 789 | DevExpress.Mvvm.v20.2.ViewModel.dll 790 | DevExpress.Office.v20.2.Core.dll 791 | DevExpress.Pdf.v20.2.Core.dll 792 | DevExpress.Pdf.v20.2.Drawing.dll 793 | DevExpress.Pdf.v20.2.SkiaRenderer.dll 794 | DevExpress.PivotGrid.v20.2.Core.dll 795 | DevExpress.Printing.v20.2.Core.dll 796 | DevExpress.RichEdit.v20.2.Core.dll 797 | DevExpress.RichEdit.v20.2.Export.dll 798 | DevExpress.Snap.v20.2.Core.dll 799 | DevExpress.Snap.v20.2.dll 800 | DevExpress.Snap.v20.2.Extensions.dll 801 | DevExpress.Sparkline.v20.2.Core.dll 802 | DevExpress.SpellChecker.v20.2.Core.dll 803 | DevExpress.Spreadsheet.v20.2.Core.dll 804 | DevExpress.TreeMap.v20.2.Core.dll 805 | DevExpress.Utils.v20.2.dll 806 | DevExpress.Utils.v20.2.UI.dll 807 | DevExpress.Xpo.v20.2.dll 808 | DevExpress.Xpo.v20.2.Extensions.dll 809 | DevExpress.XtraBars.v20.2.dll 810 | DevExpress.XtraCharts.v20.2.dll 811 | DevExpress.XtraCharts.v20.2.Extensions.dll 812 | DevExpress.XtraCharts.v20.2.UI.dll 813 | DevExpress.XtraCharts.v20.2.Wizard.dll 814 | DevExpress.XtraDiagram.v20.2.dll 815 | DevExpress.XtraDialogs.v20.2.dll 816 | DevExpress.XtraEditors.v20.2.dll 817 | DevExpress.XtraGantt.v20.2.dll 818 | DevExpress.XtraGauges.v20.2.Core.dll 819 | DevExpress.XtraGauges.v20.2.Presets.dll 820 | DevExpress.XtraGauges.v20.2.Win.dll 821 | DevExpress.XtraGrid.v20.2.dll 822 | DevExpress.XtraLayout.v20.2.dll 823 | DevExpress.XtraMap.v20.2.dll 824 | DevExpress.XtraNavBar.v20.2.dll 825 | DevExpress.XtraPdfViewer.v20.2.dll 826 | DevExpress.XtraPivotGrid.v20.2.dll 827 | DevExpress.XtraPrinting.v20.2.dll 828 | DevExpress.XtraReports.v20.2.dll 829 | DevExpress.XtraReports.v20.2.CodeCompletion.dll 830 | DevExpress.XtraReports.v20.2.Extensions.dll 831 | DevExpress.XtraReports.v20.2.Service.dll 832 | DevExpress.XtraRichEdit.v20.2.dll 833 | DevExpress.XtraScheduler.v20.2.Core.dll 834 | DevExpress.XtraScheduler.v20.2.dll 835 | DevExpress.XtraScheduler.v20.2.Extensions.dll 836 | DevExpress.XtraScheduler.v20.2.GoogleCalendar.dll 837 | DevExpress.XtraScheduler.v20.2.Reporting.dll 838 | DevExpress.XtraScheduler.v20.2.Reporting.Extensions.dll 839 | DevExpress.XtraSpellChecker.v20.2.dll 840 | DevExpress.XtraSpreadsheet.v20.2.dll 841 | DevExpress.XtraTreeList.v20.2.dll 842 | DevExpress.XtraTreeMap.v20.2.dll 843 | DevExpress.XtraTreeMap.v20.2.UI.dll 844 | DevExpress.XtraVerticalGrid.v20.2.dll 845 | DevExpress.XtraWizard.v20.2.dll 846 | 847 | Where applicable and/or available, localized language resources may be provided in the form of REDISTRIBUTABLE assemblies corresponding to the REDISTRIBUTABLE naming schemes listed in this AGREEMENT: 848 | 849 | DevExpress.*.v20.2.resources.dll 850 | 851 | LICENSEE MAY NOT REDISTRIBUTE any files in the SOFTWARE DEVELOPMENT PRODUCT(S) distribution if using an evaluation, trial, Not for Resale, or demo version of the SOFTWARE DEVELOPMENT PRODUCT(S). 852 | 853 | 7. COPYRIGHT. 854 | 855 | All title and copyrights in and to the SOFTWARE DEVELOPMENT PRODUCT(S) (including but not limited to any DEVEXPRESS trademarks, copywritten images, demos, source code, intermediate files, packages, photographs, redistributables, animations, video, audio, music, text, and "applets" incorporated into the SOFTWARE DEVELOPMENT PRODUCT(S) the accompanying printed materials, and any copies of the SOFTWARE DEVELOPMENT PRODUCT(S)) are owned by DEVEXPRESS or its subsidiaries. 856 | 857 | The SOFTWARE DEVELOPMENT PRODUCT(S) is protected by copyright laws and international treaty provisions and therefore, you must treat the SOFTWARE DEVELOPMENT PRODUCT(S) like any other copyrighted material except that you may install and use the SOFTWARE DEVELOPMENT PRODUCT(S) as described in this AGREEMENT. 858 | 859 | 8. OPEN SOURCE LIBRARIES. 860 | 861 | The SOFTWARE DEVELOPMENT PRODUCT(S) found in this installation package may include or require certain third-party, open source components or libraries (“THE OPEN SOURCE LIBRARIES”). 862 | 863 | Where applicable, DEVEXPRESS may include a “NOTICE” file to provide a list of THE OPEN SOURCE LIBRARIES required for certain portions of the documentation, sample source code, and other demo projects. 864 | 865 | THE OPEN SOURCE LIBRARIES included in the SOFTWARE DEVELOPMENT PRODUCT(S) are done so pursuant to each individual open source library license and subject to the disclaimers and limitations on liability set forth in each open source library license. 866 | 867 | The SOFTWARE DEVELOPMENT PRODUCT(S) may include external installation references for THE OPEN SOURCE LIBRARIES on their respective package management locations. These external locations may include, but are not limited to, NuGet or npm. Prior to installing THE OPEN SOURCE LIBRARIES, You are responsible for reviewing and agreeing to each associated license agreement accompanying a library, and any other sub-dependency required by that library. 868 | 869 | Whether included as part of the SOFTWARE DEVELOPMENT PRODUCT(S) installation package, or referenced as an external dependency or requirement, THE OPEN SOURCE LIBRARIES are provided "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL DEVEXPRESS, THE AUTHORS, OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE OPEN SOURCE LIBRARIES OR THE USE OF OTHER DEALINGS IN THE OPEN SOURCE LIBRARIES. 870 | 871 | THE OPEN SOURCE LIBRARIES listed in this section are included in this SOFTWARE DEVELOPMENT PRODUCT(S) installation package. 872 | 873 | Bouncy Castle (Open Source - The Bouncy Castle License) 874 | Copyright (C) 2000-2020 The Legion of the Bouncy Castle Inc. 875 | Portions of the Bouncy Castle Library used to support X.509, CMS (RFC 3852), and Time Stamp Protocol (RFC 3161). 876 | https://github.com/bcgit/bc-csharp/blob/master/crypto/License.html 877 | 878 | Reporting.Import (Open Source – MIT License) 879 | Copyright (c) 2018 Developer Express Inc. 880 | https://github.com/DevExpress/Reporting.Import/blob/master/LICENSE 881 | 882 | System.Data.SQLite and System.Data.SQLite.EF6 (Open Source – Microsoft Public License) 883 | https://system.data.sqlite.org/index.html/doc/trunk/www/copyright.wiki 884 | 885 | 9. TWELVE (12) MONTH SUBSCRIPTION AND UPDATES. 886 | 887 | DEVEXPRESS licenses the SOFTWARE DEVELOPMENT PRODUCT(S) on a subscription basis. A subscription lasts for a 12 month period from the date of purchase. LICENSEE will be eligible to receive all major and minor updates for the SOFTWARE DEVELOPMENT PRODUCT(S) during this 12 month period. Upon expiration of a subscription (12 months, plus 1 day after original purchase date), LICENSEE can optionally renew the SOFTWARE DEVELOPMENT PRODUCT(S) subscription for an additional 12 month period (and each subsequent year thereafter) in order to continue receiving major and minor updates of the SOFTWARE DEVELOPMENT PRODUCT(S) from DEVEXPRESS. 888 | 889 | If the SOFTWARE DEVELOPMENT PRODUCT(S) is labeled as an update, you must be properly licensed to obtain the updated SOFTWARE DEVELOPMENT PRODUCT(S). A SOFTWARE DEVELOPMENT PRODUCT(S) labeled as an update replaces and/or supplements the SOFTWARE DEVELOPMENT PRODUCT(S) that formed the basis for your eligibility for the update, and together constitutes a single PRODUCT(S). You may only use the updated PRODUCT(S) in accordance with all the terms of this AGREEMENT. 890 | 891 | Pricing for the 12 month SOFTWARE DEVELOPMENT PRODUCT(S) subscription and any subsequent renewal of the subscription are listed on devexpress.com and subject to change with or without notice. 892 | 893 | REDISTRIBUTABLES referenced in this AGREEMENT are dependent upon the type of 12 month subscription purchased from DEVEXPRESS. 894 | 895 | DEVEXPRESS reserves the right to discontinue the SOFTWARE DEVELOPMENT PRODUCT(S) or its constituents, at any time. 896 | 897 | 10. DOWNLOAD of SOFTWARE DEVELOPMENT PRODUCT(S). 898 | 899 | The SOFTWARE DEVELOPMENT PRODUCT(S) will be made available for download from DevExpress.com exclusively. 900 | 901 | 11. EXPORT RESTRICTIONS. 902 | 903 | DEVEXPRESS expressly complies with all export restrictions imposed by the government of the United States of America. You, as LICENSEE, must agree not to export or re-export the SOFTWARE DEVELOPMENT PRODUCT(S) within any created application to any country, person, entity or end user subject to U.S.A. export restrictions. Restricted countries currently include, but are not necessarily limited to Cuba, Iran, North Korea, Sudan, Syria, and Venezuela. You warrant and represent that neither the U.S.A. Bureau of Export Administration nor any other federal agency has suspended, revoked or denied your export privileges. 904 | 905 | 12. DISCLAIMER OF WARRANTY. 906 | 907 | DEVEXPRESS expressly disclaims any warranty for the SOFTWARE DEVELOPMENT PRODUCT(S). THE SOFTWARE DEVELOPMENT PRODUCT(S) AND ANY RELATED DOCUMENTATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. DEVEXPRESS DOES NOT WARRANT, GUARANTEE, OR MAKE ANY REPRESENTATIONS REGARDING THE USE, OR THE RESULTS OF THE USE, OF THE SOFTWARE DEVELOPMENT PRODUCT(S) IN TERMS OF CORRECTNESS, ACCURACY, RELIABILITY, OR OTHERWISE. THE ENTIRE RISK ARISING OUT OF USE OR PERFORMANCE OF THE SOFTWARE DEVELOPMENT PRODUCT(S) REMAINS WITH YOU. No oral or written information or advice given by DEVEXPRESS or its employees shall create a warranty or in any way increase the scope of this warranty. 908 | 909 | 13. LIMITATIONS ON LIABILITY. 910 | 911 | To the maximum extent permitted by applicable law, in no event shall DEVEXPRESS be liable for any special, incidental, indirect, or consequential damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or any other pecuniary loss) arising out of the use of or inability to use the SOFTWARE DEVELOPMENT PRODUCT(S) or the provision of or failure to provide SUPPORT SERVICES, even if DEVEXPRESS has been advised of the possibility of such damages. 912 | 913 | LICENSEE understands that the SOFTWARE DEVELOPMENT PRODUCT(S) may produce inaccurate results because of a failure or fault within the SOFTWARE DEVELOPMENT PRODUCT(S) or failure by LICENSEE to properly use and or deploy the SOFTWARE DEVELOPMENT PRODUCT(S). LICENSEE assumes full and sole responsibility for any use of the SOFTWARE DEVELOPMENT PRODUCT(S), and bears the entire risk for failures or faults within the SOFTWARE DEVELOPMENT PRODUCT(S). You agree that regardless of the cause of failure or fault or the form of any claim, YOUR SOLE REMEDY AND DEVEXPRESS'S SOLE OBLIGATION SHALL BE GOVERNED BY THIS AGREEMENT AND IN NO EVENT SHALL DEVEXPRESS'S LIABILITY EXCEED THE PRICE PAID TO DEVEXPRESS FOR THE SOFTWARE DEVELOPMENT PRODUCT(S). This Limited Warranty is void if failure of the SOFTWARE DEVELOPMENT PRODUCT(S) has resulted from accident, abuse, alteration, unauthorized use or misapplication of the SOFTWARE DEVELOPMENT PRODUCT(S). 914 | 915 | 14. INDEMNIFICATION. 916 | 917 | You hereby agree to indemnify DEVEXPRESS and its officers, directors, employees, agents, and representatives from each and every demand, claim, loss, liability, or damage of any kind, including actual attorney's fees, whether in tort or contract, that it or any of them may incur by reason of, or arising out of, any claim which is made by any third party with respect to any breach or violation of this AGREEMENT by you or any claims based on the Applications and the SOFTWARE DEVELOPMENT PRODUCT(S) included herein, including without limitation any claims asserted by your end user customers. 918 | 919 | 15. U.S. GOVERNMENT RESTRICTED RIGHTS. 920 | 921 | For SOFTWARE DEVELOPMENT PRODUCT(S) purchased, installed, copied or otherwise used on behalf of any United States Government agency or department (“US GOVT”), US GOVT agrees that the SOFTWARE DEVELOPMENT PRODUCT(S) are acquired with restricted rights according to the following: 922 | 923 | For the Department of Defense: The SOFTWARE DEVELOPMENT PRODUCT(S) is "Commercial Computer Software" as defined in Clause 252.227-7013(c)(1) of the DFARS. 924 | 925 | For all agencies or departments: US GOVT rights in the SOFTWARE DEVELOPMENT PRODUCT(S) is defined in Clause 52.227-19(c)(2) of the FAR. 926 | 927 | The manufacturer of the SOFTWARE DEVELOPMENT PRODUCT(S) is: Developer Express, Inc., 505 N. Brand Blvd Suite 1450 Glendale, CA 91203. 928 | 929 | 16. SUPPORT SERVICES. 930 | 931 | DEVEXPRESS may provide you with support services related to the SOFTWARE DEVELOPMENT PRODUCT(S) ("SUPPORT SERVICES"). Use of SUPPORT SERVICES is governed by DEVEXPRESS policies and programs described in the user manual, in "on line" documentation and/or other DEVEXPRESS provided materials. DEVEXPRESS may restrict or otherwise discontinue SUPPORT SERVICES provided to you if your use of SUPPORT SERVICES is deemed by DEVEXPRESS, in its sole and reasonable discretion, to be excessive and beyond the scope of fair use. 932 | 933 | Any supplemental SOFTWARE DEVELOPMENT PRODUCT(S) provided to you as part of the SUPPORT SERVICES shall be considered part of the SOFTWARE DEVELOPMENT PRODUCT(S) and subject to the terms and conditions of this AGREEMENT. With respect to technical information you provide to DEVEXPRESS as part of the SUPPORT SERVICES, DEVEXPRESS may use such information for its business purposes, including for SOFTWARE DEVELOPMENT PRODUCT(S) support and development. 934 | 935 | 17. TERMINATION. 936 | 937 | Without prejudice to any other rights or remedies, DEVEXPRESS will terminate this AGREEMENT upon your failure to comply with all the terms and conditions of this AGREEMENT. In such events, LICENSEE must destroy all copies of the SOFTWARE DEVELOPMENT PRODUCT(S) and all of its component parts including any related documentation, and must remove ANY and ALL use of DEVEXPRESS intellectual property from any applications distributed by LICENSEE, whether in native, altered or compiled states. 938 | 939 | 18. TAX. 940 | 941 | DEVEXPRESS may be required by local, state, or national government laws, to collect sales or use tax from you. If DEVEXPRESS is not legally required to collect any applicable taxes at the time of purchase, you should confirm that your local, state, or national government does not impose any sales or use tax on electronically delivered software. You are entirely liable for any such sales or use tax. 942 | 943 | 19. PERSONAL DATA. 944 | 945 | All Information DEVEXPRESS collects from you is stored and maintained on servers utilizing reasonable and appropriate data security safeguards. DEVEXPRESS does not lend, lease, sell, or market information it obtains from its customers or those who provide us personally identifiable information. DEVEXPRESS does not disclose purchase information or licensing information to third parties. 946 | 947 | DEVEXPRESS collects personally identifiable information whenever you purchase/license a DEVEXPRESS product or service. Information includes Name, Address, Phone Number, Email address, Payment Information, Product Purchases, Licenses Owned, Employee/Contact Details, etc. The information we collect allows DEVEXPRESS to communicate with you regarding upcoming product updates, new product releases, company news and other important business matters. 948 | 949 | DEVEXPRESS does not wish to receive, act to procure, nor desire to solicit, confidential or proprietary materials and information from you through the use of the SOFTWARE DEVELOPMENT PRODUCT(S) or SUPPORT SERVICES. Any and all materials, attachments, or information submitted by you as part of error submissions, or divulged during chats, online discussions, Support Center submissions, or made available to DEVEXPRESS in any manner will be deemed NOT to be confidential by DEVEXPRESS. You acknowledge that submissions to DEVEXPRESS will not be considered confidential or proprietary and that DEVEXPRESS will be under no obligation to keep such information confidential. 950 | 951 | Your election to use the SOFTWARE DEVELOPMENT PRODUCT(S) indicates your acceptance of the terms of this AGREEMENT. You are responsible for maintaining confidentiality of your username, password and other sensitive information. You are responsible for all activities that occur in your user account and in case of any unauthorized activity on your account, you agree to inform DEVEXPRESS immediately by any method listed on the DEVEXPRESS website’s Contacts page. DEVEXPRESS is not responsible for any loss or damage to you or to any third party incurred as a result of any unauthorized access and/or use of your user account, or otherwise. 952 | 953 | DEVEXPRESS may disclose or report Confidential Information in limited circumstances where it believes in good faith that disclosure is required under the law. For example, DEVEXPRESS may be required to disclose Confidential Information to cooperate with regulators or law enforcement authorities, to comply with a legal process such as a court order, subpoena, search warrant, or a law enforcement request. Additionally, if the ownership of all or substantially all of our business changes or we otherwise transfer assets relating to our business or the SOFTWARE DEVELOPMENT PRODUCT(S) to a third party, such as by merger, acquisition, bankruptcy proceeding or otherwise, we may transfer or sell your personal information to the new owner. In such a case, unless permitted otherwise by applicable law, your information would remain subject to the promises made in the applicable privacy policy unless you agree differently. 954 | 955 | DEVEXPRESS's use of personal data is governed by the terms set forth in our comprehensive Privacy Policy: 956 | https://www.devexpress.com/aboutus/privacy-policy.xml 957 | 958 | 19.1 CUSTOMER EXPERIENCE PROGRAM. 959 | 960 | When you optionally join the Customer Experience Program, your computer or device automatically transmits information to DEVEXPRESS about the usage of the SOFTWARE DEVELOPMENT PRODUCT(S). This information is used to address issues within DEVEXPRESS products and improve quality/usability. 961 | 962 | Opt in/Opt out 963 | 964 | The Customer Experience Program is strictly optional and you can opt in or opt out of the program at any time by executing the DEVEXPRESS installer and making the appropriate selection within the installation program. 965 | 966 | Privacy 967 | 968 | The Customer Experience Program does not transmit personally identifiable information such as your name, address or phone number. 969 | 970 | What we collect 971 | 972 | The Customer Experience Program only collects information related to DEVEXPRESS controls and libraries. This information includes usage of DEVEXPRESS controls at design time within Visual Studio and usage of DEVEXPRESS demos. DEVEXPRESS CodeRush collects project type and file type information when you edit code in Visual Studio. No information is collected from applications/demos you create. 973 | 974 | 19.2 DEMO FEEDBACK 975 | 976 | The Demo Feedback feature presented within the included demo applications of the SOFTWARE DEVELOPMENT PRODUCT(S), allows you to send feedback to DEVEXPRESS and, optionally, include any additional information to describe the specific compliment or concern you may have with regards to the demo application. Although Demo Feedback doesn’t intentionally collect personally identifiable information, it is possible that such information might be captured in the feedback text you provide. DEVEXPRESS does not wish to receive such information nor will it use this information to identify you. 977 | 978 | Except as otherwise described in this statement, Demo Feedback does not transmit personal information to DEVEXPRESS. 979 | 980 | 20. MISCELLANEOUS. 981 | 982 | Where applicable, as part of the SOFTWARE DEVELOPMENT PRODUCT(S) installation, DEVEXPRESS may include and/or require the use of certain redistributable libraries made available in binary form by Microsoft under the terms and conditions of the following license agreements: Entity Framework 6 Runtime License (https://msdn.microsoft.com/en-us/library/dn467385(v=vs.113).aspx). 983 | 984 | No right of use or license is granted for the Map providers available in the SOFTWARE DEVELOPMENT PRODUCT. LICENSEE must obtain and follow the appropriate licensing terms and right of use set forth by each map provider. 985 | 986 | When using OpenStreetMap data, you must read and understand the OpenStreetMap terms of use. Read the OpenStreetMap Legal FAQ. https://wiki.osmfoundation.org/wiki/Licence/Licence_and_Legal_FAQ 987 | 988 | If using OpenStreetMap Tiles, you must read and understand the OpenStreetMap Tile Usage Policy. Read the OpenStreetMap Tile Policy. https://operations.osmfoundation.org/policies/tiles/ 989 | 990 | When using Bing Maps, you must read and understand Microsoft's terms of use. Read the Bing Maps Licensing and Pricing Information. http://www.microsoft.com/maps/product/licensing.aspx 991 | 992 | Wherever applicable, the SOFTWARE DEVELOPMENT PRODUCT(S) may implement certain specification published by MBTiles, and made available under the Creative Commons Attribution 3.0 Unported (CC-BY) license. https://github.com/mapbox/mbtiles-spec/blob/master/LICENSE 993 | 994 | This AGREEMENT shall be construed, interpreted and governed by the laws of the State of Nevada, U.S.A. This AGREEMENT gives you specific legal rights; you may have others that vary from state to state and from country to country. 995 | 996 | This AGREEMENT may only be modified in writing signed by you and an authorized officer of Developer Express Inc. If any provision of this AGREEMENT is found void or unenforceable, the remainder will remain valid and enforceable according to its terms. If any remedy provided is determined to have failed for its essential purpose, all limitations of liability and exclusions of damages set forth in the Limited Warranty shall remain in effect. 997 | 998 | DEVEXPRESS reserves all rights not specifically granted in this AGREEMENT. 999 | 1000 | Should you have any questions concerning this AGREEMENT, contact us directly in the United States at +1 (818) 844 3383, or write: Developer Express Inc. Legal department / 505 N. Brand Blvd Suite 1450, Glendale CA 91203. 1001 | 1002 | All trademarks and registered trademarks are property of their respective owners. 1003 | -------------------------------------------------------------------------------- /media/empty.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /media/update schema.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/TabularEditor3/c4f18db4fee4aa6467068956ea454cbe3a6dc307/media/update schema.gif -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | ![Tabular Editor 3 logo](https://user-images.githubusercontent.com/8976200/193217149-97b85732-759d-48eb-9dc6-8b62c0e38671.png) 2 | 3 | This is the Community Support forum for **Tabular Editor 3**. 4 | 5 | Before asking a technical question or reporting a bug on our [issue tracker](https://github.com/TabularEditor/TabularEditor3/issues), please make sure you have the [latest version](https://github.com/TabularEditor/TabularEditor3/releases/latest) of Tabular Editor 3 installed. 6 | 7 | - Visit [TabularEditor.com](https://tabulareditor.com) 8 | - Compare [Tabular Editor 3 Editions](https://docs.tabulareditor.com/te3/editions.html) 9 | - Read our [Onboarding Guide](https://docs.tabulareditor.com/onboarding/index.html) 10 | - View [all downloads and version history](https://docs.tabulareditor.com/te3/other/downloads.html) 11 | - Looking for the [free, open-source version? (Tabular Editor 2.x)](https://github.com/tabulareditor/tabulareditor) 12 | 13 | Do you have licensing questions or need assistance with your invoice? Please reach out to [sales@tabulareditor.com](mailto:sales@tabulareditor.com) 14 | 15 | ## Tabular Editor 3 Introduction with Reid Havens 16 | 17 | [![Tabular Editor 3 Introduction video on Youtube](https://img.youtube.com/vi/pt3DdcjfImY/0.jpg)](https://www.youtube.com/watch?v=pt3DdcjfImY) 18 | -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- 1 | { 2 | "latest":"3.0.7698.29614", 3 | "message":"A newer version of Tabular Editor is available. Please download at github.com/TabularEditor3/PublicPreview" 4 | } 5 | --------------------------------------------------------------------------------