Search found 1550 matches

by BruceSteers
Friday 12th April 2024 9:22pm
Forum: General
Topic: [solved] can not use gambas repoes to get update
Replies: 15
Views: 581

Re: can not use gambas repoes to get update

The first command should be : mkdir $HOME/gambas-stable i was thinking along the lines of letting the user choose directory so i changed it to not cd ANY folder but just make the source folder in the working terminal dir. Now it looks more like this... # Run the following commands in a terminal (co...
by BruceSteers
Thursday 11th April 2024 8:29pm
Forum: General
Topic: [solved] can not use gambas repoes to get update
Replies: 15
Views: 581

Re: can not use gambas repoes to get update

Hmm actually it might not lol
I will test it later if using the whole path as a git argument works or not?

I will change it to exclude $HOME in git Args.

Cheers 😁

Glad you figured it out 😊
by BruceSteers
Thursday 11th April 2024 8:27pm
Forum: General
Topic: [solved] can not use gambas repoes to get update
Replies: 15
Views: 581

Re: can not use gambas repoes to get update

Aah yes the first lines of that web page downloads source to that folder. git clone --depth=1 https://gitlab.com/gambas/gambas.git --branch=stable $HOME/gambas-stable cd $HOME/gambas-stable If you already had the source it would have worked if you ran the script "cd" from the existing sour...
by BruceSteers
Thursday 11th April 2024 8:32am
Forum: General
Topic: Suggestions for checking that all array values are unique
Replies: 7
Views: 433

Re: Suggestions for checking that all array values are unique

If you want the check to fail on the first detection of a duplicate, it may be better to do the check with a loop/repeat rather than a For/next so that it drops as soon as it fails rather than running through the entire array. It may shave off some more time in the process. It does exit on first de...
by BruceSteers
Wednesday 10th April 2024 9:41pm
Forum: General
Topic: [solved] can not use gambas repoes to get update
Replies: 15
Views: 581

Re: can not use gambas repoes to get update

Autotools method is easy peasy now.
Thanks to the .gitlab-ci.yml file.

Just download the source and uninstall the apt gambas version then run the autotools install

http://138.68.116.47/cgi-bin/WebGambasUpgrade.gambas

Shimples 😊
by BruceSteers
Wednesday 10th April 2024 7:54pm
Forum: General
Topic: [solved] can not use gambas repoes to get update
Replies: 15
Views: 581

Re: can not use gambas repoes to get update

Although you have a signature error there.

Did you use sudo add-apt-repository ppa:gambas-team/gambas3 to add the repository as you may not have the gpg keys
by BruceSteers
Wednesday 10th April 2024 7:49pm
Forum: General
Topic: [solved] can not use gambas repoes to get update
Replies: 15
Views: 581

Re: can not use gambas repoes to get update

I tried it manually once, i downloaded all the packages that come from launchpad but none of them installed on debian.
by BruceSteers
Wednesday 10th April 2024 7:43pm
Forum: General
Topic: [solved] can not use gambas repoes to get update
Replies: 15
Views: 581

Re: can not use gambas repoes to get update

Problem is you added an ubuntu repo to debian.

PPA launchpad is for ubuntu only, it doesn't work for debian (dependency list does not work)

Debian needs the autotools installation method to upgrade.
by BruceSteers
Wednesday 10th April 2024 6:27pm
Forum: Project showcase
Topic: Blockski+ , like Klotski but with a board editor.
Replies: 45
Views: 8481

Re: Blockski+ , like Klotski but with a board editor.

Some more updates , currently on V 1.3.38 Blocks can now be flipped horizontally or vertically A new paint mode for Wall blocks PaintErase. if paint mode is set to Erase it does not draw the wall but it erases the map beneath it giving invisible edges. (see the attached snapshot that has large Erase...
by BruceSteers
Wednesday 10th April 2024 8:41am
Forum: General
Topic: Suggestions for checking that all array values are unique
Replies: 7
Views: 433

Re: Suggestions for checking that all array values are unique

Ta. I wasn't clear enough. I just need to check it not replace it. So have gone with Public Function CheckArrayUniqueness(aList as Integer[]) As Boolean Dim aNewList As New Integer[] For c As Integer = 0 To aList.Max If Not aNewList.Exist(aList[c]) Then aNewList.Add(aList[c]) Next Return aNewList.C...