├── .gitattributes ├── README.md ├── __init__.py ├── functions ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-35.pyc │ ├── jsonFunctions.cpython-35.pyc │ └── mainFunctions.cpython-35.pyc ├── jsonFunctions.py └── mainFunctions.py ├── operators.py ├── panels.py ├── prefs.py └── widgets.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopheSeux/boneWidget/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopheSeux/boneWidget/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopheSeux/boneWidget/HEAD/__init__.py -------------------------------------------------------------------------------- /functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopheSeux/boneWidget/HEAD/functions/__init__.py -------------------------------------------------------------------------------- /functions/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopheSeux/boneWidget/HEAD/functions/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /functions/__pycache__/jsonFunctions.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopheSeux/boneWidget/HEAD/functions/__pycache__/jsonFunctions.cpython-35.pyc -------------------------------------------------------------------------------- /functions/__pycache__/mainFunctions.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopheSeux/boneWidget/HEAD/functions/__pycache__/mainFunctions.cpython-35.pyc -------------------------------------------------------------------------------- /functions/jsonFunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopheSeux/boneWidget/HEAD/functions/jsonFunctions.py -------------------------------------------------------------------------------- /functions/mainFunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopheSeux/boneWidget/HEAD/functions/mainFunctions.py -------------------------------------------------------------------------------- /operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopheSeux/boneWidget/HEAD/operators.py -------------------------------------------------------------------------------- /panels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopheSeux/boneWidget/HEAD/panels.py -------------------------------------------------------------------------------- /prefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopheSeux/boneWidget/HEAD/prefs.py -------------------------------------------------------------------------------- /widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopheSeux/boneWidget/HEAD/widgets.json --------------------------------------------------------------------------------