Skip to content

Commit a0042d2

Browse files
authored
Merge pull request #4 from devdotnetorg/dev
Merge dev => master
2 parents b3b3ebc + 1120597 commit a0042d2

274 files changed

Lines changed: 10308 additions & 3059 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,4 @@ node_modules
66
bin
77
obj
88

9-
samples/**/.vscode/**
109
*.log

.vscodeignore

Lines changed: 30 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,38 @@ src/**
1111
**/*.ts
1212

1313
#add
14-
15-
.gitattributes
14+
#folders
1615
assets/source/**
17-
vscodetemplates/source**
16+
bashscript/_old_*.sh
17+
bashscript/_test*.sh
1818
docs/**
19+
packages/**
1920
samples/**
20-
installation.md
21+
vscodetemplates/**
22+
windows/**
23+
24+
#files
25+
.gitattributes
2126
CHANGELOG_ru.md
22-
README.md
27+
Create-extension.md
28+
installation.md
29+
ISSUES.md
30+
ISSUES_ru.md
31+
LICENSE_MIT.md
2332
README_ru.md
33+
SCHEDULE.md
34+
SCHEDULE_ru.md
35+
36+
#docs
37+
docs/*.pdn
38+
39+
40+
#templates
41+
templates/system/*.yaml
42+
templates/system/dotnet-console/**
43+
templates/system/dotnet-console-runtime-info/**
44+
templates/system/dotnet-console-test-nested/**
45+
templates/system/dotnet-iot-blink-led/**
46+
47+
templates/system/dotnet-console-test-nested.zip
48+
templates/system/dotnet-iot-blink-led.zip

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## v0.3.0 (24-02-2023)
4+
5+
- Added support for using templates for projects, including custom ones.
6+
- Added loading/updating templates for projects from external resources. So far, only system templates have been updated.
7+
- Added support for multiple Launch for project templates with overlapping tasks, i.e. if one of the Launches is deleted, the tasks used in the other Launches will not be deleted.
8+
- The `sshd_config` configuration file of the OpenSSH server is automatically configured, now you need to set only two parameters "PermitRootLogin yes" and "PasswordAuthentication yes" to start.
9+
- Extension resources, such as device keys, templates, are now stored by default in the home folder, for example `C:\Users\Anton\fastiot`.
10+
- Added key algorithm settings for ssh authorization. You can specify the algorithm type (default ed25519) and key length (default 256).
11+
- Added a detailed description of the solution to the problem in case of impossibility to connect to the device. Availability is checked separately by: ip-address, port, ssh-protocol.
12+
- Added package Mono (experimental).
13+
- Fixed bugs: loading DTO binary file, saving Gpiochips and DTO configuration, importing device configuration.
14+
- Some visual changes.
15+
316
## v0.2.2 (24-01-2023)
417

518
- Bugs fixed.
@@ -20,7 +33,7 @@
2033
- Added board model detection for Raspberry Pi.
2134
- Added support for .NET Runtime & SDK 7.0.
2235
- Implemented the function of testing/verifying the installed package.
23-
- Test project added [dotnet-iot-fastiot-test](https://github.com/devdotnetorg/vscode-extension-dotnet-fastiot/tree/master/Samples/dotnet-iot-fastiot-test "dotnet-iot-fastiot-test").
36+
- Test project added [dotnet-iot-fastiot-test](https://github.com/devdotnetorg/vscode-extension-dotnet-fastiot/tree/master/samples/dotnet-iot-fastiot-test "dotnet-iot-fastiot-test").
2437
- Added device shutdown command.
2538
- Added ignoring comments ('//') to launch.json and tasks.json.
2639
- Some visual changes.

CHANGELOG_ru.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## v0.3.0 (24-02-2023)
4+
5+
- Добавлена поддержка использования шаблонов для проектов, включая пользовательские.
6+
- Добавлена загрузка/обновление шаблонов для проектов с внешних ресурсов. Пока обновляются только системные шаблоны.
7+
- Добавлена поддержка нескольких Launch для шаблонов проектов с пересекающимися tasks, т.е. в случае удаления одного из Launch, используемые tasks в других Launch не будут удалены.
8+
- Автоматически конфигурируется файл настроек `sshd_config` OpenSSH сервера, теперь для старта необходимо задать только два параметра "PermitRootLogin yes" и "PasswordAuthentication yes".
9+
- Ресурсы расширения, такие как ключи к устройствам, шаблоны, теперь хранятся по умолчанию в домашней папке, например `C:\Users\Anton\fastiot`.
10+
- Добавлены настройки алгоритма ключа для ssh авторизации. Можно указать тип алгоритма (по умолчанию ed25519) и длину ключа (по умолчанию 256).
11+
- Добавлено детальное описание решение проблемы в случае невозможности подключения к устройству. Проверяется отдельно доступность по: ip-адресу, порту, ssh-протоколу.
12+
- Добавлен пакет Mono (experimental).
13+
- Исправлены ошибки: загрузка бинарного файла DTO, сохранение конфигурации Gpiochips и DTO, импорт конфигурации устройств.
14+
- Некоторые визуальные изменения.
15+
316
## v0.2.2 (24-01-2023)
417

518
- Исправлены ошибки.

Create-extension.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Create extension
1+
# Create extension
22

33
1. npm install -g yo
44

ISSUES.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
1-
## Known Issues
1+
# Known Issues
22

3-
1. Extension UI does not follow Extension Guidelines - https://code.visualstudio.com/api/references/extension-guidelines.
3+
1. The user interface of the extension does not follow the [UX Guidelines](https://code.visualstudio.com/api/ux-guidelines/overview).
44

5-
2. DTO information is not saved.
5+
2. It takes a long time to create a device profile.
66

7-
3. GPIO information is not saved.
7+
3. Commands are executed slowly.
88

9-
4. Slow execution speed of bash scripts.
10-
11-
5. Long waiting time when adding a device. Slow execution of commands.
12-
13-
6. DTO binaries get corrupted when loaded onto the device (function temporarily disabled).
9+
4. Low speed of execution of bash scripts.

ISSUES_ru.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
1-
## Известные проблемы
1+
# Известные проблемы
22

3-
1. Пользовательский интерфейс расширения не соответствует Extension Guidelines - https://code.visualstudio.com/api/references/extension-guidelines.
3+
1. Пользовательский интерфейс расширения не соответствует [UX Guidelines](https://code.visualstudio.com/api/ux-guidelines/overview).
44

5-
2. Информация о DTO не сохраняется.
5+
2. Долго создается профиль устройства.
66

7-
3. Информация о GPIO не сохраняется.
7+
3. Медленно выполняются команды.
88

99
4. Низкая скорость выполнения bash скриптов.
10-
11-
5. Долгое время ожидания при добавлении устройства. Медленное выполнение команд.
12-
13-
6. Бинарные файлы DTO повреждаются при загрузке на устройство (функция временно отключена).

LICENSE_MIT.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) .NET Foundation and Contributors
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)