mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
Rename to be consistent with other plugins
T466
This commit is contained in:
parent
9120a33602
commit
ec12b901d1
2 changed files with 4 additions and 4 deletions
32
plugins/GCodeReader/__init__.py
Normal file
32
plugins/GCodeReader/__init__.py
Normal file
|
@ -0,0 +1,32 @@
|
|||
# Copyright (c) 2015 Ultimaker B.V.
|
||||
# Uranium is released under the terms of the AGPLv3 or higher.
|
||||
|
||||
#Shoopdawoop
|
||||
from . import GCodeReader
|
||||
|
||||
from UM.i18n import i18nCatalog
|
||||
i18n_catalog = i18nCatalog("uranium")
|
||||
|
||||
def getMetaData():
|
||||
return {
|
||||
"plugin": {
|
||||
"name": i18n_catalog.i18nc("@label", "GCODE Reader"),
|
||||
"author": "Victor Larchenko",
|
||||
"version": "1.0",
|
||||
"description": i18n_catalog.i18nc("@info:whatsthis", "Makes it possbile to read GCODE files."),
|
||||
"api": 3
|
||||
},
|
||||
"mesh_reader": [
|
||||
{
|
||||
"extension": "gcode",
|
||||
"description": i18n_catalog.i18nc("@item:inlistbox", "GCODE File")
|
||||
},
|
||||
{
|
||||
"extension": "g",
|
||||
"description": i18n_catalog.i18nc("@item:inlistbox", "G File")
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
def register(app):
|
||||
return { "mesh_reader": GCodeReader.GCodeReader() }
|
Loading…
Add table
Add a link
Reference in a new issue