Skip to content

Commit

Permalink
update installation guide; include package-lock.json file to fix depe…
Browse files Browse the repository at this point in the history
…ndency warnings and vulnerabilities; fixes #108, fixes #75
  • Loading branch information
Berny23 committed Mar 18, 2023
1 parent eaedea0 commit 8ff9881
Show file tree
Hide file tree
Showing 6 changed files with 1,467 additions and 79 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021 Berny23
Copyright (c) 2023 Berny23

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
14 changes: 9 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ Allows you to connect an emulated Toy Pad to your PC or video-game console.

4. Run the following commands (you can copy and paste with right click):
```bash
sudo apt install usbip hwdata curl python build-essential -y
sudo apt update
sudo apt install -y git usbip hwdata curl python build-essential libusb-1.0-0-dev libudev-dev
echo "usbip-core" | sudo tee -a /etc/modules
echo "usbip-vudc" | sudo tee -a /etc/modules
echo "vhci-hcd" | sudo tee -a /etc/modules
Expand All @@ -62,7 +63,6 @@ Allows you to connect an emulated Toy Pad to your PC or video-game console.
echo "libcomposite" | sudo tee -a /etc/modules
echo "usb_f_rndis" | sudo tee -a /etc/modules

sudo apt install -y git
git clone https://github.com/Berny23/LD-ToyPad-Emulator.git
cd LD-ToyPad-Emulator

Expand Down Expand Up @@ -131,12 +131,13 @@ Allows you to connect an emulated Toy Pad to your PC or video-game console.

4. Use SSH to run the following commands (Don't know the IP address? Try [this IP scanner](https://www.advanced-ip-scanner.com/).):
```bash
sudo apt update
sudo apt install -y git libusb-1.0-0-dev libudev-dev
echo "dtoverlay=dwc2" | sudo tee -a /boot/config.txt
echo "dwc2" | sudo tee -a /etc/modules
echo "libcomposite" | sudo tee -a /etc/modules
echo "usb_f_rndis" | sudo tee -a /etc/modules

sudo apt install -y git
git clone https://github.com/Berny23/LD-ToyPad-Emulator.git
cd LD-ToyPad-Emulator

Expand Down Expand Up @@ -182,7 +183,6 @@ Allows you to connect an emulated Toy Pad to your PC or video-game console.
To update this software, just pull the latest changes by running the following 3 commands:
````bash
cd LD-ToyPad-Emulator
rm package-lock.json
git pull
npm install
````
Expand Down Expand Up @@ -239,7 +239,11 @@ After that, run the command `hostname -I` in your virtual machine (or on your si

* **benlucaslaws** for improving the user experience and implementing a complete filtering system for vehicle/character abilities and game worlds.

* **Luigimeansme** and **DaPiMan** for helping with missing or misplaced vehicle IDs.
* **DaPiMan** for helping with missing or misplaced vehicle IDs and other improvements.

* **Luigimeansme** for adding/fixing character and vehicle abilities and other data improvements.

* **VladimirKuletski** for creating/updating CI workflows for automated testing via GitHub Actions.

## License
[MIT](https://choosealicense.com/licenses/mit/)
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
Copyright © 2022 Berny23 & Cort1237
Copyright © 2023 Berny23, Cort1237 and many more
This file is part of "ToyPad Emulator for Lego Dimensions" which is released under the "MIT" license.
This file is part of "Toy Pad Emulator for Lego Dimensions" which is released under the "MIT" license.
See file "LICENSE" or go to "https://choosealicense.com/licenses/mit" for full license details.
*/

Expand Down
Loading

0 comments on commit 8ff9881

Please sign in to comment.