[Gambas-bugtracker] Bug #1633: The system crashes when I drag an object onto a form from the toolbar

bugtracker at gambaswiki.org bugtracker at gambaswiki.org
Fri Aug 23 18:12:55 CEST 2019


http://gambaswiki.org/bugtracker/edit?object=BUG.1633&from=L21haW4-

Comment #15 by Michael ALTROGGE:

i think the bug is fixed  (after a quick test with Gambas=3.13.90 51e271f (master) on a Kernel=5.1.21-1-MANJARO)

but what i didn't understand is ... i usually do a git pull and it seems that my gambas is only partially updated ... right now i did a git clone and everything is fine ... can anybody give me a hint WHY THE F*CK this could be???


gb3_install() {
   rm -f -R ~/Entwicklung/gambas
   mkdir ~/Entwicklung
   cd ~/Entwicklung
   git clone --depth=1 https://gitlab.com/gambas/gambas.git 
   cd gambas
   gb3_build
}

gb3_update() {
   cd ~/Entwicklung/gambas
   if [ git pull ] = 0 
      then
         clear
         echo "keine Updates verfügbar ..."
      else
         clear
         echo "Updates werden installiert ..."
   fi
   gb3_build
}

gb3_build() {
   ./reconf-all 
   ./configure 
   make 
   clear
   read -p "Anmeldung als root erforderlich ..." DUMMY
   sudo make install ~/Entwicklung/gambas.logfiles/
}

while [ "$AUSWAHL" != "9" ]
do
	clear
	echo
	echo "Gambas3 Wartungsmenue:"
	echo 
	echo "     1. Installiere Developmentversion ..."
	echo "     2. Update Developmentversion ..."
	echo
	echo "     9. Beenden"
	echo
	read -p "Ihre Wahl (1,2,9) ... " AUSWAHL
	echo
	case $AUSWAHL in
	  1) gb3_install ;;
	  2) gb3_update ;;
#	  9) quit ;;
	esac

done




More information about the Bugtracker mailing list