Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v8.1.1 #569

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ fi

if [ "$SKIP_MATRIX" = false ]; then
echo "Running rgbmatrix installation..."
sudo apt-get install -y make
sudo apt-get install -y make gcc g++
mkdir submodules
cd submodules
git clone https://github.com/hzeller/rpi-rgb-led-matrix.git matrix
Expand All @@ -152,7 +152,7 @@ if [ "$SKIP_MATRIX" = false ]; then
echo "------------------------------------"
echo " Checking for snd_bcm2835"
echo "------------------------------------"
if [ -f /etc/modprobe.d/blacklist-rgbmatrix.conf ]; then
if [ ! -f /etc/modprobe.d/blacklist-rgbmatrix.conf ]; then
echo "Sound Blacklist File not found, Creating."
echo "blacklist snd_bcm2835" | sudo tee /etc/modprobe.d/blacklist-rgbmatrix.conf
sudo modprobe -r snd_bcm2835
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
SCRIPT_NAME = "MLB LED Scoreboard"
SCRIPT_VERSION = "8.1.0"
SCRIPT_VERSION = "8.1.1"


if __name__ == "__main__":
Expand Down