Skip to content

Commit b1d86d5

Browse files
committed
add starboi
1 parent 4e5e5a3 commit b1d86d5

File tree

8 files changed

+2476
-866
lines changed

8 files changed

+2476
-866
lines changed

LICENSE.cc-by

Lines changed: 396 additions & 0 deletions
Large diffs are not rendered by default.
File renamed without changes.

Manifests/UIXR.manifest

Lines changed: 852 additions & 852 deletions
Large diffs are not rendered by default.

Manifests/starboi.manifest

Lines changed: 1189 additions & 0 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 23 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,27 @@ release or re-license their work to a Creative Common License of their choice.
1313

1414
## Available CC licenses
1515

16-
Currently 100% of the assets found in the LE fall under the CC0 license, otherwise known as the
17-
"Public Domain" license for jurisdictions that don't honour the concept of "Public Domain".
18-
19-
- CC0 https://creativecommons.org/publicdomain/zero/1.0/
16+
Currently 100% of the assets found in the LE fall under either the CC0 or CC-BY license.
2017

2118
As more content creators are contacted, they can pick a CC license that bests suites them.
2219

23-
### What does CC0 mean?
24-
25-
You may freely download, build upon, enhance and reuse the works for any purposes without
20+
### CC0
21+
CC0 is also known as the "Public Domain" license for jurisdictions that don't honour the concept
22+
of "Public Domain". You may freely download, build upon, enhance and reuse the works for any purposes without
2623
restriction under copyright or database law.
2724

25+
- CC0 https://creativecommons.org/publicdomain/zero/1.0/
26+
27+
### CC-BY
28+
CC-BY is a license which only stipulates that you include the original author's name with
29+
the work, including all derived work.
30+
31+
- CC-BY https://creativecommons.org/licenses/by/4.0/
32+
2833
## People you should thank
2934

3035
Alain "Spyder" Brunotte, released over a 1300 assets under the CC0 license.
36+
Star Boi, 828 assets under the CC-BY license.
3137

3238
## People we are looking to make contact with
3339

@@ -49,6 +55,16 @@ http://www.titansofether.com/uix/
4955

5056
# Changelog
5157

58+
## uixr-assets-cc0-1.0 (20170208)
59+
- added 828 assets released under the CC-BY license
60+
- 408 TGA
61+
- 227 DDS
62+
- 173 NIF
63+
- 13 BMP
64+
- 8 IFL
65+
- 4 KF
66+
- 1 WAV
67+
5268
## uixr-assets-cc0-1.0 (20170208)
5369
- initial release
5470
- over 1300 assets released under the CC0 license

make_release.py

100644100755
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import sys
77
import tarfile
88

9-
RELEASE_PATH = "uixr-assets-cc0-1.0.tar"
9+
RELEASE_PATH = "uixr-assets-cc0-1.1.tar"
1010
ASSET_PATH = "../../../Private"
1111

1212

@@ -87,8 +87,10 @@ def either(c):
8787
if row.get('asset').lower() == relative_asset_path.lower():
8888
if row.get('license').lower() == 'cc0':
8989
break # good to go, break
90+
elif row.get('license').lower() == 'cc-by':
91+
break # good to go, break
9092
else:
91-
print("WARNING: Non-CC0 license asset -> {0}".format(relative_asset_path))
93+
print("WARNING: Non-CC license asset -> {0}".format(relative_asset_path))
9294
tar_ball.add(asset_path, relative_asset_path)
9395
if not found:
9496
print("WARNING: sub-asset not found -> {0}".format(nif_asset))

nif_walker.py

100644100755
File mode changed.

validate_uix.py

100644100755
Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,15 @@
1313
bloodmoon_md5 = None
1414
with open("Manifests/bloodmoon.manifest", 'r') as content_file:
1515
bloodmoon_md5 = content_file.read()
16-
16+
17+
starboi_md5 = None
18+
with open("Manifests/starboi.manifest", 'r') as content_file:
19+
starboi_md5 = content_file.read()
20+
1721

1822
def validate(md5_list):
19-
print("\nComparing md5sum of UIX:R to the contents Bethesda's BSA files.")
20-
beth_counter = 0
23+
print("\nComparing md5sum of UIX:R to the other files.")
24+
beth_counter = starboi_counter = 0
2125
for line in md5_list.split('\n'):
2226
if len(line) > 0:
2327
md5, rest = line.split(",", 1)
@@ -30,9 +34,12 @@ def validate(md5_list):
3034
if md5 in bloodmoon_md5:
3135
beth_counter += 1
3236
print("{0},{1},Found in Bloodmoon.bsa".format(md5, rest))
37+
if md5 in starboi_md5:
38+
starboi_counter += 1
39+
print("{0},{1},Found in StarBoi's work".format(md5, rest))
3340

34-
print("Out of {0} files, found {1} bethesda files.\n".format(
35-
len(md5_list.split('\n'))-1, beth_counter))
41+
print("Out of {0} files, found {1} bethesda files and {2} starboi files.\n".format(
42+
len(md5_list.split('\n'))-1, beth_counter, starboi_counter))
3643

3744

3845
# uixr files

0 commit comments

Comments
 (0)