mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-22 05:39:37 +08:00
34 lines
1.0 KiB
Python
34 lines
1.0 KiB
Python
# Copyright (c) 2016 Aleph Objects, Inc.
|
|
# Cura is released under the terms of the AGPLv3 or higher.
|
|
|
|
from . import GCodeReader
|
|
|
|
from UM.i18n import i18nCatalog
|
|
i18n_catalog = i18nCatalog("cura")
|
|
|
|
def getMetaData():
|
|
return {
|
|
"plugin": {
|
|
"name": i18n_catalog.i18nc("@label", "G-code Reader"),
|
|
"author": "Victor Larchenko",
|
|
"version": "1.0",
|
|
"description": i18n_catalog.i18nc("@info:whatsthis", "Allows loading and displaying G-code files."),
|
|
"api": 3
|
|
},
|
|
"mesh_reader": [
|
|
{
|
|
"extension": "gcode",
|
|
"description": i18n_catalog.i18nc("@item:inlistbox", "G-code File")
|
|
},
|
|
{
|
|
"extension": "g",
|
|
"description": i18n_catalog.i18nc("@item:inlistbox", "G File")
|
|
}
|
|
]
|
|
}
|
|
|
|
def register(app):
|
|
app.addNonSliceableExtension(".gcode")
|
|
app.addNonSliceableExtension(".g")
|
|
return { "mesh_reader": GCodeReader.GCodeReader() }
|