Skip to content

Commit

Permalink
Bit more clean-up
Browse files Browse the repository at this point in the history
  • Loading branch information
eeintech committed Apr 12, 2023
1 parent 81daef0 commit 4521819
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 1,582 deletions.
11 changes: 4 additions & 7 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
[run]
omit =
# Do not run coverage on virtual environment files
env-kintree/*
.venv/*
# Skip UI coverage
# Do not run coverage on environment files
*env*
# Skip GUI coverage
kintree/kintree_gui.py
kintree/common/progress.py
kintree/gui/*
# Skip wrapt_timeout_decorator
kintree/wrapt_timeout_decorator/*
kintree/common/progress.py
# Skip test script
run_tests.py
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
dist/
build/
*.spec
# Cache-backup files
# Cache and backup files
*__pycache__*
*.bck
# Test files
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
[![Tests | Linting | Publishing](https://github.com/sparkmicro/Ki-nTree/actions/workflows/test_deploy.yaml/badge.svg)](https://github.com/sparkmicro/Ki-nTree/actions)
[![Coverage Status](https://coveralls.io/repos/github/sparkmicro/Ki-nTree/badge.svg?branch=main&service=github)](https://coveralls.io/github/sparkmicro/Ki-nTree?branch=main)

<img src="https://raw.githubusercontent.com/sparkmicro/Ki-nTree/main/images/doc/kintree_v1_example.png" width="auto" height="auto">
## :fast_forward: [Demo Video](https://youtu.be/xyz)

## Demo Videos :fast_forward: [Full Demo](https://youtu.be/haSAu926BOI) :fast_forward: [KiCad Demo](https://youtu.be/NSMfCCD0uVw)
<img src="https://raw.githubusercontent.com/sparkmicro/Ki-nTree/main/images/doc/kintree_v1_example.png" width="auto" height="auto">

## Introduction
Ki-nTree (pronounced "Key Entry" or "Key 'n' Tree") aims to:
Expand Down Expand Up @@ -37,7 +37,7 @@ Ki-nTree was developped by [@eeintech](https://github.com/eeintech) for [SPARK M

### Requirements

* Ki-nTree is currently tested for Python 3.8 to 3.10 versions.
* Ki-nTree is currently tested for Python 3.8 to 3.11 versions.
* Ki-nTree requires a Digi-Key **production** API instance. To create one, go to https://developer.digikey.com/. Create an account, an organization and add a **production** API to your organization. Save both Client ID and Secret keys.
> [Here is a video](https://youtu.be/OI1EGEc0Ju0) to help with the different steps
* Ki-nTree requires a Mouser Search API key. To request one, head over to https://www.mouser.ca/api-search/ and click on "Sign Up for Search API"
Expand Down Expand Up @@ -104,7 +104,6 @@ Configuration files are stored in the folder pointed by the `Configuration Files

<img src="https://raw.githubusercontent.com/sparkmicro/Ki-nTree/main/images/doc/kintree_v1_settings_user.png" width="600" height="auto">


<details>
<summary><b>Click here to read about configuration files</b></summary>
<p>
Expand Down
File renamed without changes
3 changes: 1 addition & 2 deletions kintree/gui/views/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,9 @@

# Main AppBar
main_appbar = ft.AppBar(
# leading=ft.Icon(ft.icons.DOUBLE_ARROW),
leading=ft.Container(
content=ft.Image(
src=os.path.join(settings.PROJECT_DIR, 'logo.png'),
src=os.path.join(settings.PROJECT_DIR, 'gui', 'logo.png'),
fit=ft.ImageFit.CONTAIN,
),
padding=ft.padding.only(left=10),
Expand Down
Empty file removed kintree/kicad/__init__.py
Empty file.

0 comments on commit 4521819

Please sign in to comment.