Skip to content
This repository has been archived by the owner on Jul 28, 2022. It is now read-only.

Commit

Permalink
Merge pull request #118 from Sleitnick/data
Browse files Browse the repository at this point in the history
Use new Data module
  • Loading branch information
Sleitnick authored Dec 30, 2019
2 parents 7b8a6ca + 0032a93 commit 7516cd0
Show file tree
Hide file tree
Showing 11 changed files with 2,084 additions and 783 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
imgs/*.psd
.luacheckrc
node_modules/
site/
site/
3 changes: 2 additions & 1 deletion build_filelist.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ def find(ar, name):
print("Building file list...")

paths_data = []
all_files = check_output(["git", "ls-tree", "--name-only", "-r", "master", "src"])
cur_branch = check_output(["git", "rev-parse", "--abbrev-ref", "HEAD"]).decode("utf-8").strip()
all_files = check_output(["git", "ls-tree", "--name-only", "-r", cur_branch, "src"]).decode("utf-8")
paths = all_files.split("\n")
for path in paths:
path_array = path.split("/")
Expand Down
Loading

2 comments on commit 7516cd0

@catgirlinspace
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Sleitnick Will you create a new video tutorial for the Data module since the DataService is removed now?

@catgirlinspace
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also when using the data module with a player instance passed in does it all save under 1 key?

Please sign in to comment.