mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 21:09:01 +08:00
Remove old version of LegacyProfileReader
This shouldn't have been committed. I suspect this came in via checking out a branch where this was still on the working tree and then going to a branch where it wasn't, and it kept the files and I thought LegacySettings was the plugin I had to commit. Contributes to issue CURA-37.
This commit is contained in:
parent
513941097f
commit
77453cf80f
@ -1,8 +0,0 @@
|
|||||||
# Copyright (c) 2015 Ultimaker B.V.
|
|
||||||
# Cura is released under the terms of the AGPLv3 or higher.
|
|
||||||
|
|
||||||
from UM.Extension import Extension
|
|
||||||
|
|
||||||
class LegacySettings(Extension):
|
|
||||||
def __init__(self):
|
|
||||||
super().__init__()
|
|
@ -1,21 +0,0 @@
|
|||||||
# Copyright (c) 2015 Ultimaker B.V.
|
|
||||||
# Cura is released under the terms of the AGPLv3 or higher.
|
|
||||||
|
|
||||||
from . import LegacySettings
|
|
||||||
|
|
||||||
from UM.i18n import i18nCatalog
|
|
||||||
catalog = i18nCatalog("cura")
|
|
||||||
|
|
||||||
def getMetaData():
|
|
||||||
return {
|
|
||||||
"plugin": {
|
|
||||||
"name": catalog.i18nc("@label", "GCode Reader"),
|
|
||||||
"author": "Ultimaker",
|
|
||||||
"version": "1.0",
|
|
||||||
"description": catalog.i18nc("@info:whatsthis", "Provides support for reading GCode files."),
|
|
||||||
"api": 2
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
def register(app):
|
|
||||||
return { "extension": LegacySettings.LegacySettings() }
|
|
Loading…
x
Reference in New Issue
Block a user