- 19 Nov, 2022 1 commit
-
-
Jérome Perrin authored
-
- 18 Nov, 2022 5 commits
-
-
Ivan Tyagov authored
-
Jérome Perrin authored
-
Ivan Tyagov authored
See merge request nexedi/slapos!1288
-
Martin Manchev authored
This reverts commit 4068fd997566035224ffdf5b3e588c767f840b3f.
-
Ivan Tyagov authored
-
- 17 Nov, 2022 14 commits
-
-
Jérome Perrin authored
-
Ophélie Gagnard authored
-
Ophélie Gagnard authored
component/mca: Move obs files from software/mca software: Delete "mca".
-
Ophélie Gagnard authored
-
Ophélie Gagnard authored
-
Léo-Paul Géneau authored
See merge request nexedi/slapos!1230
-
Léo-Paul Géneau authored
Add support of the message API (send and receive custom messages between drones).
-
Léo-Paul Géneau authored
Manual control is used under the hood to set course to coordinates
-
Léo-Paul Géneau authored
Use an update loop to decide the instructions to give to the autopilot.
-
Léo-Paul Géneau authored
Use a script passed by the user for the flight instead of a predefined one.
-
Léo-Paul Géneau authored
-
Léo-Paul Géneau authored
-
Ivan Tyagov authored
-
Ivan Tyagov authored
security policy.
-
- 16 Nov, 2022 4 commits
-
-
Jérome Perrin authored
-
Łukasz Nowak authored
We want to sort by filename, which is on second column. The previous value here was just wrong.
-
Łukasz Nowak authored
-
Łukasz Nowak authored
There can be a lot of files in the directories leading to Argument list too long bash error, so switch to method not involving bash expansion.
-
- 15 Nov, 2022 3 commits
-
-
Jérome Perrin authored
-
Joanne Hugé authored
-
Jérome Perrin authored
-
- 14 Nov, 2022 5 commits
-
-
Ophélie Gagnard authored
-
Ivan Tyagov authored
See merge request nexedi/slapos!1284
-
Martin Manchev authored
-
Jérome Perrin authored
-
Ophélie Gagnard authored
-
- 11 Nov, 2022 8 commits
-
-
Jérome Perrin authored
-
Jérome Perrin authored
-
Jérome Perrin authored
Probably I made a mistake when getting adding this md5sum in 70070a61 . This is not a case where the checksum changed, we did not have checksum before anyway
-
Jérome Perrin authored
-
Jérome Perrin authored
See merge request nexedi/slapos!1282
-
Jérome Perrin authored
-
Jérome Perrin authored
to support git 2.38.1
-
Jérome Perrin authored
This is a big changes for users, now typing "python" on the command line will use system python if it exists or fail with "command not found". `python3` is set to the SlapOS python from Theia software release. Recommended approach for python users is either to get used to type `python3` or to create a virtualenv and use it. With the virtualenv, they can also install pylint or other linters, so this might be the best thing to do. This solves two problems: First problem is that it makes the embedded SlapOS always have a python interpreter as `python` in $PATH, which is not always the case in other SlapOS usage and can hide problems that would cause a software to build successfully in Theia but not in "bare metal" SlapOS. Second problem problem is that on python was a interpreter from pygolang and it is not perfect regarding line edition at least on python 3.8, as we can observe in this session: run python and type "something": ``` Python 3.8.13 (default, Sep 6 2022, 10:45:07) [GCC 8.5.0] on linux Type "help", "copyright", "credits" or "license" for more information. (InteractiveConsole) >>> something ^ cursor is here, as expected ``` type Ctrl+A to go to beginning of line: ``` Python 3.8.13 (default, Sep 6 2022, 10:45:07) [GCC 8.5.0] on linux Type "help", "copyright", "credits" or "license" for more information. (InteractiveConsole) >>> something ^ expected cursor position ^ actual cursor position ``` likewise, type Ctrl+E to go to end of line: ``` Python 3.8.13 (default, Sep 6 2022, 10:45:07) [GCC 8.5.0] on linux Type "help", "copyright", "credits" or "license" for more information. (InteractiveConsole) >>> something ^ expected cursor position ^ actual cursor position ```
-