Posts: 14,898
Threads: 342
Joined: Mar 2018
Reputation:
614
(03-19-2022, 11:56 PM)BlackSmile Wrote: Hello Tim,
Try to install new 8.0.1 version tonight but commands :
is not found anymore. Is it a normal behavior or a regression ?
It use to work before, so now stuck with my little scripts.
What need to be install ? WiringPi seems not to be supported anymore (wrong?).
I also have samba problems and cannot mount my music sources (error 115). I haven't found any solution to this for now.
Any clue ?
Tank you for support
Right, WiringPi is a long since deprecated project and so not supported anymore in moOde.
http://wiringpi.com/wiringpi-deprecated/
The new Linux kernels don't support NTLM for Samba mounts due to security issues. I don't know if this is what is causing your issue though.
Posts: 14,898
Threads: 342
Joined: Mar 2018
Reputation:
614
(03-20-2022, 12:31 AM)Relocated2007 Wrote: I reckon Favourite doesn't work correctly, I can add by clicking the heart and I assumed that clicked the second time removed from Favourite but it is not happening, or I am doing something wrong?
I am very stubborn with Favourites as this is a great option for having especially radio on click option nearly.
Just read Menu, Quick Help. It explains how various icons and other elements in the UI work.
Posts: 50
Threads: 8
Joined: Mar 2022
Reputation:
0
(03-20-2022, 12:38 AM)Tim Curtis Wrote: (03-20-2022, 12:31 AM)Relocated2007 Wrote: I reckon Favourite doesn't work correctly, I can add by clicking the heart and I assumed that clicked the second time removed from Favourite but it is not happening, or I am doing something wrong?
I am very stubborn with Favourites as this is a great option for having especially radio on click option nearly.
Just read Menu, Quick Help. It explains how various icons and other elements in the UI work.
Code: Favorite
Add the currently selected track in the Queue to the Favorites playlist. Playlists are listed in Library Folder view.
But how to remove it from Favourite, I can't find it. Probably I did not drink enough coffee this morning ;-0)
Posts: 6,584
Threads: 189
Joined: Apr 2018
Reputation:
270
@ BlackSmile
Regarding mount error 115, you have provided zero details about the sources involved or about your network and router or about how you tried to mount the sources so we can’t begin to diagnose properly.
However, error 115 often means there is a name resolution problem. Try using the IP address instead of the host name of the server in defining the share path.
Regards,
Kent
Posts: 14,898
Threads: 342
Joined: Mar 2018
Reputation:
614
(03-20-2022, 01:08 AM)Relocated2007 Wrote: (03-20-2022, 12:38 AM)Tim Curtis Wrote: (03-20-2022, 12:31 AM)Relocated2007 Wrote: I reckon Favourite doesn't work correctly, I can add by clicking the heart and I assumed that clicked the second time removed from Favourite but it is not happening, or I am doing something wrong?
I am very stubborn with Favourites as this is a great option for having especially radio on click option nearly.
Just read Menu, Quick Help. It explains how various icons and other elements in the UI work.
Code: Favorite
Add the currently selected track in the Queue to the Favorites playlist. Playlists are listed in Library Folder view.
But how to remove it from Favourite, I can't find it. Probably I did not drink enough coffee this morning ;-0)
You can manipulate playlists including the Favorites playlist by first Clear queue then Add to the main Queue. Use the main Queue ... menus to add/move/save. There is no way currently to directly edit a playlist.
On the TODO list is to improve the way playlists and favorites are handled and presented in the UI but developer bandwidth is always needed to do these types of complex designs and codings.
If you are a dev feel free to contribute to the project and make the improvements so everyone can benefit.
Posts: 50
Threads: 8
Joined: Mar 2022
Reputation:
0
(03-20-2022, 02:03 AM)Tim Curtis Wrote: (03-20-2022, 01:08 AM)Relocated2007 Wrote: (03-20-2022, 12:38 AM)Tim Curtis Wrote: (03-20-2022, 12:31 AM)Relocated2007 Wrote: I reckon Favourite doesn't work correctly, I can add by clicking the heart and I assumed that clicked the second time removed from Favourite but it is not happening, or I am doing something wrong?
I am very stubborn with Favourites as this is a great option for having especially radio on click option nearly.
Just read Menu, Quick Help. It explains how various icons and other elements in the UI work.
Code: Favorite
Add the currently selected track in the Queue to the Favorites playlist. Playlists are listed in Library Folder view.
But how to remove it from Favourite, I can't find it. Probably I did not drink enough coffee this morning ;-0)
You can manipulate playlists including the Favorites playlist by first Clear queue then Add to the main Queue. Use the main Queue ... menus to add/move/save. There is no way currently to directly edit a playlist.
On the TODO list is to improve the way playlists and favorites are handled and presented in the UI but developer bandwidth is always needed to do these types of complex designs and codings.
If you are a dev feel free to contribute to the project and make the improvements so everyone can benefit.
Thanks, I will wait as I am not dev unfortunately, I have put monthly donations to keep you a coffee here and there ;-)
Posts: 14,898
Threads: 342
Joined: Mar 2018
Reputation:
614
Posts: 35
Threads: 4
Joined: Jul 2018
Reputation:
0
(03-20-2022, 12:36 AM)Tim Curtis Wrote: (03-19-2022, 11:56 PM)BlackSmile Wrote: Hello Tim,
Try to install new 8.0.1 version tonight but commands :
is not found anymore. Is it a normal behavior or a regression ?
It use to work before, so now stuck with my little scripts.
What need to be install ? WiringPi seems not to be supported anymore (wrong?).
I also have samba problems and cannot mount my music sources (error 115). I haven't found any solution to this for now.
Any clue ?
Tank you for support
Right, WiringPi is a long since deprecated project and so not supported anymore in moOde.
http://wiringpi.com/wiringpi-deprecated/
The new Linux kernels don't support NTLM for Samba mounts due to security issues. I don't know if this is what is causing your issue though.
Thk, so what should be the best solution to replace my little script command with gpio commands :
Code: gpio -g mode 04 out
gpio -g write 04 0
gpio -g mode 17 in
gpio -g write 17 0
gpio -g mode 22 out
gpio -g write 22 1
while [ 1 ]; do
if [ "$(gpio -g read 17)" = "1" ]; then
echo "Setting pin GPIO4 High"
gpio mode 7 out
gpio write 7 1
/bin/sleep 1
echo "Setting pin GPIO4 Low"
gpio write 7 0
echo "RaspberryPi shutdown"
mpc stop
systemctl stop nginx
poweroff
break
fi
/bin/sleep 0.25
done
exit 0
Rasptouch case with RPI3 + I2C 16x2 screen and IR port
Audiophonics I-Sabre V2.1 DAC ES9023 TCXO
Posts: 134
Threads: 11
Joined: Jun 2020
Reputation:
3
Hi all,
thanks to @ Tim Curtis and contributors for providing a new major version.
Setting up with backup/restore worked fine here on RPI 3A+.
Noticed that some settings in "mpd.service" disappeared. But I think they aren't longer necessary.
Posts: 43
Threads: 16
Joined: Oct 2021
Reputation:
0
Bonjour
ai posté ici par erreur :
https://moodeaudio.org/forum/showthread.php?tid=4633
thank
another little regression , I believe, about the audio information windows : the "playback" tab is inacessible (click on it doesn't work  )
|