Manjaro does not find my autostart-scripts after today's system update

For years I have been running 2 Bash Scripts, which are automatically started at login

/usr/bin/xfce4-terminal -e heute.sh
/usr/bin/xfce4-terminal -e Datsich-AD.sh

The 2 bash scripts reside in my $HOME/bin folder, therefore I modified my PATH variable in my .profile (last line):

export EDITOR=/usr/bin/nano
export QT_QPA_PLATFORMTHEME=“qt5ct”
export QT_AUTO_SCREEN_SCALE_FACTOR=0
export GTK2_RC_FILES=“$HOME/.gtkrc-2.0”
export PATH=“/home/jaro/bin:$PATH” # jaros Skripte usw

Since today, after the Manjaro update, the scripts do not run any longer. Instead I am seeing an error message in the respecive terminal window:
failed to execute child process heute.sh. Failed to execve: file or folder not found.

Of course, the contents of my hidden files have not been changed by the system update; also my autostart specifications have not changed.

What happened? What do I need to do to persuade Manjaro to run my scripts?

A quickfix would be to give absolute paths in your startup commands

/usr/bin/xfce4-terminal -e /home/jaro/bin/heute.sh
/usr/bin/xfce4-terminal -e /home/jaro/bin/Datsich-AD.sh

After this update, the ~/.profile is not used anymore. So the variables has to be manually copied to ~/.bash_profile Including stuff like custom path or the qt5ct setting for the theming of QT apps.

Or if you do not want to define custom paths, just put your scripts in ~/.local/bin which is already in the path.