Skip to content

Commit

Permalink
Add a LICENSE file
Browse files Browse the repository at this point in the history
This project is redistributable under the BSD 3-clause license. To the
best of my knoweldge, none of the code provided here is pulled from a
separate source, so I license the complete set of code under this
license.

Signed-off-by: Jacob Keller <jacob.keller@gmail.com>
  • Loading branch information
jacob-keller committed May 24, 2018
1 parent 3240790 commit c36259d
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 0 deletions.
11 changes: 11 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Copyright 2018 Jacob Keller. All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4 changes: 4 additions & 0 deletions format-encounters.ps1
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright 2018 Jacob Keller. All rights reserved.


# Custom user-specific data
#
# Some of this scripts functionality depends on custom data which cannot be
Expand Down
5 changes: 5 additions & 0 deletions simpleArcParse/main.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright 2018 Jacob Keller. All rights reserved.
*
* Some structure definitions and names taken from https://www.deltaconnected.com/arcdps/evtc
*/
#include <iostream>
#include <fstream>
#include <string>
Expand Down
3 changes: 3 additions & 0 deletions update-arcdps.ps1
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright 2018 Jacob Keller. All rights reserved.

# URL for arcdps dll
$arc_url = "https://www.deltaconnected.com/arcdps/x64/d3d9.dll"
# URL for the MD5 sum of arcdps dll
Expand Down
3 changes: 3 additions & 0 deletions upload-logs.ps1
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright 2018 Jacob Keller. All rights reserved.

# Path to the RestSharp dll
#
# This script depends on RestSharp (http://restsharp.org/) to setup it's Rest APIs, as the
Expand Down

0 comments on commit c36259d

Please sign in to comment.