Skip to content

Commit f17c3f4

Browse files
committed
normalize line endings
1 parent 63ca7f0 commit f17c3f4

File tree

5 files changed

+1538
-1535
lines changed

5 files changed

+1538
-1535
lines changed

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1+
* text eol=lf
2+
*.dll binary
3+
*.exe binary
14
*.ipynb filter=nbstripout
25
*.ipynb diff=ipynb

CHANGELOG.md

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
1-
# Changelog
2-
All notable changes to this project will be documented in this file.
3-
4-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6-
7-
## [1.0.0-alpha.3]
8-
### Changed
9-
- Print BLE download progress after chunk is complete instead of before.
10-
### Fixed
11-
- Fix occasional bad checksum warning when running program via BLE.
12-
13-
## [1.0.0-alpha.2] - 2021-04-08
14-
### Added
15-
- Check Pybricks protocol version when connecting to Bluetooth Low Energy devices.
16-
### Fixed
17-
- Fix running programs via Bluetooth Low Energy.
18-
19-
## [1.0.0-alpha.1] - 2021-04-07
20-
### Added
21-
- This changelog.
22-
### Fixed
23-
- DFU flashing not working on Windows.
24-
- Typo in `pip` arguments `README.md`.
25-
26-
27-
[Unreleased]: https://github.com/pybricks/pybricksdev/compare/v1.0.0-alpha.3..HEAD
28-
[1.0.0-alpha.3]: https://github.com/pybricks/pybricksdev/compare/v1.0.0-alpha.2...v1.0.0-alpha.3
29-
[1.0.0-alpha.2]: https://github.com/pybricks/pybricksdev/compare/v1.0.0-alpha.1...v1.0.0-alpha.2
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [1.0.0-alpha.3]
8+
### Changed
9+
- Print BLE download progress after chunk is complete instead of before.
10+
### Fixed
11+
- Fix occasional bad checksum warning when running program via BLE.
12+
13+
## [1.0.0-alpha.2] - 2021-04-08
14+
### Added
15+
- Check Pybricks protocol version when connecting to Bluetooth Low Energy devices.
16+
### Fixed
17+
- Fix running programs via Bluetooth Low Energy.
18+
19+
## [1.0.0-alpha.1] - 2021-04-07
20+
### Added
21+
- This changelog.
22+
### Fixed
23+
- DFU flashing not working on Windows.
24+
- Typo in `pip` arguments `README.md`.
25+
26+
27+
[Unreleased]: https://github.com/pybricks/pybricksdev/compare/v1.0.0-alpha.3..HEAD
28+
[1.0.0-alpha.3]: https://github.com/pybricks/pybricksdev/compare/v1.0.0-alpha.2...v1.0.0-alpha.3
29+
[1.0.0-alpha.2]: https://github.com/pybricks/pybricksdev/compare/v1.0.0-alpha.1...v1.0.0-alpha.2
3030
[1.0.0-alpha.1]: https://github.com/pybricks/pybricksdev/compare/v1.0.0-alpha.0...v1.0.0-alpha.1

CONTRIBUTING.md

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,38 @@
1-
# Contributing to pybricksdev
2-
3-
`pybricksdev` is open source software and we welcome contributions.
4-
5-
6-
## Developer environment
7-
8-
This is the preferred workflow that we support. If you have other tools you like
9-
to use, you are welcome to use them, but we can't help you if things go wrong.
10-
11-
### Prerequisites
12-
13-
- [Git](https://git-scm.com/) (or install `git` with your favorite package manager)
14-
- [Python 3.8](https://python.org) (see [README](./README.md) for more info)
15-
- [Poetry](https://python-poetry.org/)
16-
- [VS Code](https://code.visualstudio.com/)
17-
18-
### Get the code and setup the environment
19-
20-
After installing the prerequisites, use a command prompt in the location of your
21-
choice to run the following:
22-
23-
git clone https://github.com/pybricks/pybricksdev
24-
cd pybricksdev
25-
poetry env use python3.8
26-
poetry install
27-
code .
28-
29-
On Windows, you may need to use the full path to `python3.8` (run `py -0p` to find it).
30-
31-
You will need to tell VS Code to use `.venv` as the Python interpreter. It
32-
should ask you about this the first time you open the project folder.
33-
34-
You should also opt into the [DeprecatePythonPath] experiment for the Microsoft
35-
Python VS Code extension so that it does not modify the `.vscode/settings.json`
36-
file in the project when you select the interpreter.
37-
38-
[DeprecatePythonPath]: https://github.com/microsoft/vscode-python/wiki/AB-Experiments#deprecatepythonpath
1+
# Contributing to pybricksdev
2+
3+
`pybricksdev` is open source software and we welcome contributions.
4+
5+
6+
## Developer environment
7+
8+
This is the preferred workflow that we support. If you have other tools you like
9+
to use, you are welcome to use them, but we can't help you if things go wrong.
10+
11+
### Prerequisites
12+
13+
- [Git](https://git-scm.com/) (or install `git` with your favorite package manager)
14+
- [Python 3.8](https://python.org) (see [README](./README.md) for more info)
15+
- [Poetry](https://python-poetry.org/)
16+
- [VS Code](https://code.visualstudio.com/)
17+
18+
### Get the code and setup the environment
19+
20+
After installing the prerequisites, use a command prompt in the location of your
21+
choice to run the following:
22+
23+
git clone https://github.com/pybricks/pybricksdev
24+
cd pybricksdev
25+
poetry env use python3.8
26+
poetry install
27+
code .
28+
29+
On Windows, you may need to use the full path to `python3.8` (run `py -0p` to find it).
30+
31+
You will need to tell VS Code to use `.venv` as the Python interpreter. It
32+
should ask you about this the first time you open the project folder.
33+
34+
You should also opt into the [DeprecatePythonPath] experiment for the Microsoft
35+
Python VS Code extension so that it does not modify the `.vscode/settings.json`
36+
file in the project when you select the interpreter.
37+
38+
[DeprecatePythonPath]: https://github.com/microsoft/vscode-python/wiki/AB-Experiments#deprecatepythonpath

0 commit comments

Comments
 (0)