Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Feature/gcodeviewer" #341

Merged
merged 1 commit into from
Aug 28, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2,163 changes: 627 additions & 1,536 deletions package-lock.json

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
"@codemirror/state": "^0.19.1",
"@codemirror/stream-parser": "^0.19.1",
"@codemirror/view": "^0.19.1",
"@sindarius/gcodeviewer": "^2.0.6",
"axios": "^0.21.1",
"core-js": "^3.16.0",
"echarts": "^5.1.2",
Expand Down
9 changes: 1 addition & 8 deletions src/components/TheSettingsMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ import SettingsPresetsTab from "@/components/settings/SettingsPresetsTab.vue";
import SettingsRemotePrintersTab from "@/components/settings/SettingsRemotePrintersTab.vue";
import SettingsThemeTab from "@/components/settings/SettingsThemeTab.vue";
import SettingsDashboardTab from "@/components/settings/SettingsDashboardTab.vue";
import SettingsGCodeViewerTab from "@/components/settings/SettingsGCodeViewerTab.vue"
@Component({
components: {
SettingsThemeTab,
Expand All @@ -73,8 +72,7 @@ import SettingsGCodeViewerTab from "@/components/settings/SettingsGCodeViewerTab
SettingsMacrosTab,
SettingsWebcamTab,
SettingsGeneralTab,
SettingsDashboardTab,
SettingsGCodeViewerTab
SettingsDashboardTab
}
})
export default class TheSettingsMenu extends Mixins(BaseMixin) {
Expand Down Expand Up @@ -132,11 +130,6 @@ export default class TheSettingsMenu extends Mixins(BaseMixin) {
name: 'remote-printers',
title: this.$t('Settings.RemotePrintersTab.RemotePrinters')
},
{
icon: 'mdi-video-3d',
name: 'g-code-viewer',
title: this.$t('Settings.GCodeViewerTab.GCodeViewer')
}
]
}

Expand Down
Loading