forked from sethvoltz/OctoPrint-DisplayPanel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit c844b64
Showing
9 changed files
with
516 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# This file is for unifying the coding style for different editors and IDEs | ||
# editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
charset = utf-8 | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[**.py] | ||
indent_style = tab | ||
|
||
[**.js] | ||
indent_style = space | ||
indent_size = 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
*.pyc | ||
*.swp | ||
.idea | ||
*.iml | ||
build | ||
dist | ||
*.egg* | ||
.DS_Store | ||
*.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# OctoPrint-DisplayPanel | ||
|
||
**TODO:** Describe what your plugin does. | ||
|
||
## Setup | ||
|
||
Install via the bundled [Plugin Manager](https://docs.octoprint.org/en/master/bundledplugins/pluginmanager.html) | ||
or manually using this URL: | ||
|
||
https://github.com/sethvoltz/OctoPrint-DisplayPanel/archive/master.zip | ||
|
||
**TODO:** Describe how to install your plugin, if more needs to be done than just installing it via pip or through | ||
the plugin manager. | ||
|
||
## Configuration | ||
|
||
**TODO:** Describe your plugin's configuration options (if any). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Currently Cookiecutter generates the following helpful extras to this folder: | ||
|
||
display_panel.md | ||
Data file for plugins.octoprint.org. Fill in the missing TODOs once your | ||
plugin is ready for release and file a PR as described at | ||
http://plugins.octoprint.org/help/registering/ to get it published. | ||
|
||
This folder may be safely removed if you don't need it. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
--- | ||
layout: plugin | ||
|
||
id: display_panel | ||
title: OctoPrint-DisplayPanel | ||
description: Simple control panel and status display paired with a physical button panel and OLED display | ||
authors: | ||
- Seth Voltz | ||
license: AGPLv3 | ||
|
||
# TODO | ||
date: today's date in format YYYY-MM-DD, e.g. 2015-04-21 | ||
|
||
homepage: https://github.com/sethvoltz/OctoPrint-DisplayPanel | ||
source: https://github.com/sethvoltz/OctoPrint-DisplayPanel | ||
archive: https://github.com/sethvoltz/OctoPrint-DisplayPanel/archive/master.zip | ||
|
||
# TODO | ||
# Set this to true if your plugin uses the dependency_links setup parameter to include | ||
# library versions not yet published on PyPi. SHOULD ONLY BE USED IF THERE IS NO OTHER OPTION! | ||
#follow_dependency_links: false | ||
|
||
# TODO | ||
tags: | ||
- a list | ||
- of tags | ||
- that apply | ||
- to your plugin | ||
- (take a look at the existing plugins for what makes sense here) | ||
|
||
# TODO | ||
screenshots: | ||
- url: url of a screenshot, /assets/img/... | ||
alt: alt-text of a screenshot | ||
caption: caption of a screenshot | ||
- url: url of another screenshot, /assets/img/... | ||
alt: alt-text of another screenshot | ||
caption: caption of another screenshot | ||
- ... | ||
|
||
# TODO | ||
featuredimage: url of a featured image for your plugin, /assets/img/... | ||
|
||
# TODO | ||
# You only need the following if your plugin requires specific OctoPrint versions or | ||
# specific operating systems to function - you can safely remove the whole | ||
# "compatibility" block if this is not the case. | ||
|
||
compatibility: | ||
|
||
# List of compatible versions | ||
# | ||
# A single version number will be interpretated as a minimum version requirement, | ||
# e.g. "1.3.1" will show the plugin as compatible to OctoPrint versions 1.3.1 and up. | ||
# More sophisticated version requirements can be modelled too by using PEP440 | ||
# compatible version specifiers. | ||
# | ||
# You can also remove the whole "octoprint" block. Removing it will default to all | ||
# OctoPrint versions being supported. | ||
|
||
octoprint: | ||
- 1.2.0 | ||
|
||
# List of compatible operating systems | ||
# | ||
# Valid values: | ||
# | ||
# - windows | ||
# - linux | ||
# - macos | ||
# - freebsd | ||
# | ||
# There are also two OS groups defined that get expanded on usage: | ||
# | ||
# - posix: linux, macos and freebsd | ||
# - nix: linux and freebsd | ||
# | ||
# You can also remove the whole "os" block. Removing it will default to all | ||
# operating systems being supported. | ||
|
||
os: | ||
- linux | ||
- windows | ||
- macos | ||
- freebsd | ||
|
||
# Compatible Python version | ||
# | ||
# Plugins should aim for compatibility for Python 2 and 3 for now, in which case the value should be ">=2.7,<4". | ||
# | ||
# Plugins that only wish to support Python 3 should set it to ">=3,<4". | ||
# | ||
# If your plugin only supports Python 2 (worst case, not recommended for newly developed plugins since Python 2 | ||
# is EOL), leave at ">=2.7,<3" - be aware that your plugin will not be allowed to register on the | ||
# plugin repository if it only support Python 2. | ||
|
||
python: ">=2.7,<3" | ||
|
||
--- | ||
|
||
**TODO**: Longer description of your plugin, configuration examples etc. This part will be visible on the page at | ||
http://plugins.octoprint.org/plugin/display_panel/ |
Oops, something went wrong.