Bläddra i källkod

Move AutoBuildMarlin to its own repo

Scott Lahteine 4 år sedan
förälder
incheckning
711fb26ae5
25 ändrade filer med 3 tillägg och 3942 borttagningar
  1. 3
    2
      buildroot/share/atom/auto_build.py
  2. 0
    2
      buildroot/share/vscode/AutoBuildMarlin/.gitignore
  3. 0
    9
      buildroot/share/vscode/AutoBuildMarlin/.vscodeignore
  4. 0
    40
      buildroot/share/vscode/AutoBuildMarlin/README.md
  5. 0
    44
      buildroot/share/vscode/AutoBuildMarlin/extension.js
  6. Binär
      buildroot/share/vscode/AutoBuildMarlin/img/AB_icon.png
  7. Binär
      buildroot/share/vscode/AutoBuildMarlin/img/AB_menu.png
  8. Binär
      buildroot/share/vscode/AutoBuildMarlin/img/Activity_bar.png
  9. Binär
      buildroot/share/vscode/AutoBuildMarlin/img/B_small.png
  10. Binär
      buildroot/share/vscode/AutoBuildMarlin/img/C_small.png
  11. Binär
      buildroot/share/vscode/AutoBuildMarlin/img/T_small.png
  12. Binär
      buildroot/share/vscode/AutoBuildMarlin/img/U_small.png
  13. 0
    111
      buildroot/share/vscode/AutoBuildMarlin/logo.svg
  14. 0
    3323
      buildroot/share/vscode/AutoBuildMarlin/package-lock.json
  15. 0
    117
      buildroot/share/vscode/AutoBuildMarlin/package.json
  16. 0
    23
      buildroot/share/vscode/AutoBuildMarlin/resources/AB.svg
  17. 0
    26
      buildroot/share/vscode/AutoBuildMarlin/resources/B48x48_dark.svg
  18. 0
    26
      buildroot/share/vscode/AutoBuildMarlin/resources/B48x48_light.svg
  19. 0
    24
      buildroot/share/vscode/AutoBuildMarlin/resources/C48x48_dark.svg
  20. 0
    25
      buildroot/share/vscode/AutoBuildMarlin/resources/C48x48_light.svg
  21. 0
    53
      buildroot/share/vscode/AutoBuildMarlin/resources/T48x48_dark.svg
  22. 0
    53
      buildroot/share/vscode/AutoBuildMarlin/resources/T48x48_light.svg
  23. 0
    26
      buildroot/share/vscode/AutoBuildMarlin/resources/U48x48_dark.svg
  24. 0
    26
      buildroot/share/vscode/AutoBuildMarlin/resources/U48x48_light.svg
  25. 0
    12
      buildroot/share/vscode/AutoBuildMarlin/tsconfig.json

+ 3
- 2
buildroot/share/atom/auto_build.py Visa fil

@@ -142,8 +142,9 @@ def get_answer(board_name, cpu_label_txt, cpu_a_txt, cpu_b_txt):
142 142
 
143 143
   root_get_answer = tk.Tk()
144 144
   root_get_answer.title('')
145
-  root_get_answer.withdraw()
146
-  root_get_answer.deiconify()
145
+  #root_get_answer.withdraw()
146
+  #root_get_answer.deiconify()
147
+  root_get_answer.attributes("-topmost", True)
147 148
 
148 149
   def disable_event():
149 150
     pass

+ 0
- 2
buildroot/share/vscode/AutoBuildMarlin/.gitignore Visa fil

@@ -1,2 +0,0 @@
1
-out
2
-node_modules

+ 0
- 9
buildroot/share/vscode/AutoBuildMarlin/.vscodeignore Visa fil

@@ -1,9 +0,0 @@
1
-.vscode/**
2
-.vscode-test/**
3
-out/test/**
4
-test/**
5
-src/**
6
-**/*.map
7
-.gitignore
8
-tsconfig.json
9
-vsc-extension-quickstart.md

+ 0
- 40
buildroot/share/vscode/AutoBuildMarlin/README.md Visa fil

@@ -1,40 +0,0 @@
1
-# Auto Build Marlin
2
-
3
-"AutoBuildMarlin" is a *Visual Studio Code* extension that provides a one-button interface to build and upload Marlin Firmware to your selected `MOTHERBOARD`, removing the need to edit your `platformio.ini` file or scroll through a long list of Marlin environments.
4
-
5
-## Get PlatformIO
6
-
7
-Before you install AutoBuildMarlin you'll first need to [Install PlatformIO in VSCode](http://marlinfw.org/docs/basics/install_platformio_vscode.html). Once you have followed these instructions, continue below.
8
-
9
-## Installing This Extension
10
-
11
-- [Download Marlin Firmware](http://marlinfw.org/meta/download/) and unzip it to your documents folder.
12
-- Open the directory `buildroot/share/vscode` and copy the "`AutoBuildMarlin`" folder to **the *Visual Studio Code* `extensions` directory**.
13
-- Relaunch *Visual Studio Code* to complete the installation.
14
-
15
-### To find your `extensions` directory:
16
-
17
-- **Windows** - Use Windows Explorer's address bar to open `C:/Users/USERNAME/.vscode/extensions`.
18
-- **Mac** - Use the Finder's `Go` menu to open `~/.vscode/extensions`.
19
-- **Linux** - In the Terminal type `open ~/.vscode/extensions`.
20
-
21
-## Usage
22
-
23
-- Open up the downloaded *Marlin Firmware* project folder (***NOT the "Marlin" folder within***) in *Visual Studio Code*. (You may also use the **Import Project…** option from the "PlaformIO Home" page.)
24
-
25
-- With Marlin open, the "File Explorer" should be firmly rooted in your Marlin Firmware folder:
26
-
27
-  ![](https://github.com/MarlinFirmware/Marlin/raw/bugfix-2.0.x/buildroot/share/vscode/AutoBuildMarlin/img/Activity_bar.png)
28
-
29
-- Click the **Marlin Auto Build** icon ![AutoBuild Icon](https://github.com/MarlinFirmware/Marlin/raw/bugfix-2.0.x/buildroot/share/vscode/AutoBuildMarlin/img/AB_icon.png) in the Activities Bar (on the left side of *Visual Studio Code* window) to bring up the **Marlin Auto Build** options bar.
30
-
31
-  ![](https://github.com/MarlinFirmware/Marlin/raw/bugfix-2.0.x/buildroot/share/vscode/AutoBuildMarlin/img/AB_menu.png)
32
-
33
-- Click one of the four icons
34
-
35
-  Icon|Action
36
-  ----|------
37
-  ![](https://github.com/MarlinFirmware/Marlin/raw/bugfix-2.0.x/buildroot/share/vscode/AutoBuildMarlin/img/B_small.png)|Start **Marlin Build** to test your Marlin build
38
-  ![](https://github.com/MarlinFirmware/Marlin/raw/bugfix-2.0.x/buildroot/share/vscode/AutoBuildMarlin/img/U_small.png)|Start **Marlin Upload** to install Marlin on your board
39
-  ![](https://github.com/MarlinFirmware/Marlin/raw/bugfix-2.0.x/buildroot/share/vscode/AutoBuildMarlin/img/T_small.png)|Start **Marlin Upload (traceback)** to install Marlin with debugging
40
-  ![](https://github.com/MarlinFirmware/Marlin/raw/bugfix-2.0.x/buildroot/share/vscode/AutoBuildMarlin/img/C_small.png)|Start **Marlin Clean** to delete old build files

+ 0
- 44
buildroot/share/vscode/AutoBuildMarlin/extension.js Visa fil

@@ -1,44 +0,0 @@
1
-'use strict';
2
-
3
-var vscode = require('vscode');
4
-
5
-function activate(context) {
6
-
7
-  console.log('Extension "AutoBuildMarlin" is now active!');
8
-
9
-  var NEXT_TERM_ID = 1;
10
-  var mf_build     = vscode.commands.registerCommand('mfbuild',     function () {
11
-    vscode.commands.executeCommand('workbench.action.files.saveAll');
12
-    const terminal = vscode.window.createTerminal(`Marlin Build #${NEXT_TERM_ID++}`);
13
-    terminal.show(true);
14
-    terminal.sendText("python buildroot/share/atom/auto_build.py build");
15
-    });
16
-  var mf_upload    = vscode.commands.registerCommand('mfupload',    function () {
17
-    vscode.commands.executeCommand('workbench.action.files.saveAll');
18
-    const terminal = vscode.window.createTerminal(`Marlin Upload #${NEXT_TERM_ID++}`);
19
-    terminal.show(true);
20
-    terminal.sendText("python buildroot/share/atom/auto_build.py upload");
21
-  });
22
-  var mf_traceback = vscode.commands.registerCommand('mftraceback', function () {
23
-    vscode.commands.executeCommand('workbench.action.files.saveAll');
24
-    const terminal = vscode.window.createTerminal(`Marlin Traceback #${NEXT_TERM_ID++}`);
25
-    terminal.show(true);
26
-    terminal.sendText("python buildroot/share/atom/auto_build.py traceback");
27
-  });
28
-  var mf_clean     = vscode.commands.registerCommand('mfclean',     function () {
29
-    const terminal = vscode.window.createTerminal(`Marlin Clean #${NEXT_TERM_ID++}`);
30
-    terminal.show(true);
31
-    terminal.sendText("python buildroot/share/atom/auto_build.py clean");
32
-  });
33
-
34
-  context.subscriptions.push(mf_build);
35
-  context.subscriptions.push(mf_upload);
36
-  context.subscriptions.push(mf_traceback);
37
-  context.subscriptions.push(mf_clean);
38
-}
39
-exports.activate = activate;
40
-
41
-// this method is called when your extension is deactivated
42
-function deactivate() {
43
-}
44
-exports.deactivate = deactivate;

Binär
buildroot/share/vscode/AutoBuildMarlin/img/AB_icon.png Visa fil


Binär
buildroot/share/vscode/AutoBuildMarlin/img/AB_menu.png Visa fil


Binär
buildroot/share/vscode/AutoBuildMarlin/img/Activity_bar.png Visa fil


Binär
buildroot/share/vscode/AutoBuildMarlin/img/B_small.png Visa fil


Binär
buildroot/share/vscode/AutoBuildMarlin/img/C_small.png Visa fil


Binär
buildroot/share/vscode/AutoBuildMarlin/img/T_small.png Visa fil


Binär
buildroot/share/vscode/AutoBuildMarlin/img/U_small.png Visa fil


+ 0
- 111
buildroot/share/vscode/AutoBuildMarlin/logo.svg Visa fil

@@ -1,111 +0,0 @@
1
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
-<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
3
-
4
-<svg
5
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
6
-   xmlns:cc="http://creativecommons.org/ns#"
7
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
-   xmlns:svg="http://www.w3.org/2000/svg"
9
-   xmlns="http://www.w3.org/2000/svg"
10
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
-   version="1.1"
13
-   id="Layer_1"
14
-   x="0px"
15
-   y="0px"
16
-   width="210mm"
17
-   height="297mm"
18
-   viewBox="0 0 744.09448 1052.3622"
19
-   enable-background="new 0 0 732.76 821.023"
20
-   xml:space="preserve"
21
-   inkscape:version="0.91 r13725"
22
-   sodipodi:docname="marlin.svg"
23
-   inkscape:export-filename="C:\Users\jbrazio\Desktop\marlin.png"
24
-   inkscape:export-xdpi="27.424898"
25
-   inkscape:export-ydpi="27.424898"><title
26
-     id="title3357">Marlin Firmware </title><metadata
27
-     id="metadata55"><rdf:RDF><cc:Work
28
-         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
29
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Marlin Firmware </dc:title><dc:creator><cc:Agent><dc:title>Ahmet Cem TURAN</dc:title></cc:Agent></dc:creator><dc:publisher><cc:Agent><dc:title>João Brázio</dc:title></cc:Agent></dc:publisher><dc:rights><cc:Agent><dc:title>MarlinFirmware</dc:title></cc:Agent></dc:rights><dc:identifier>marlin-logo-new</dc:identifier></cc:Work></rdf:RDF></metadata><defs
30
-     id="defs53" />
31
-  <rect rx="40" x="0" y="154" width="744" height="744" style="fill: #EEEEFF; stroke: white; opacity:0.5"/>
32
-    <g id="g3383"
33
-     transform="matrix(1.0758487,0,0,-1.0758487,5.9413219,1144.5066)"><g
34
-       id="g3"
35
-       transform="matrix(0.9288179,0,0,-0.9288179,-0.00839045,956.02381)"><path
36
-         inkscape:connector-curvature="0"
37
-         id="path5"
38
-         d="m 484.324,3.644 c -11.78,8.81 -20.69,19.069 -29.891,34.38 -13.85,23.04 -20.51,39.79 -23.54,59.16 -2.22,14.22 -2.939,34.95 -1.59,45.84 0.8,6.5 0.8,6.5 23.5,6.59 25.48,0.11 33.09,1.03 48.19,5.85 33.22,10.61 50.779,19.66 68.77,35.44 4.25,3.73 9.03,7.87 10.61,9.2 4.56,3.83 18.27,20.479 23.3,28.29 2.521,3.92 6.13,9.5 8.021,12.39 1.88,2.9 4.319,7.28 5.409,9.75 2.21,4.99 4.511,6.15 3.44,1.74 -0.9,-3.771 -8.6,-18.76 -14.6,-28.42 -2.721,-4.4 -4.95,-8.32 -4.95,-8.73 0,-0.41 -2.021,-3.359 -4.5,-6.55 -2.471,-3.18 -4.5,-6.34 -4.5,-7.02 0,-0.67 -2.04,-3.08 -4.54,-5.36 -2.5,-2.271 -5.21,-5.71 -6.021,-7.65 -0.81,-1.939 -1.939,-3.52 -2.529,-3.52 -1.7,0 -16.91,-15.62 -16.91,-17.37 0,-0.87 -1.24,-2.22 -2.75,-3 -1.511,-0.79 -4.21,-2.82 -5.99,-4.53 -1.78,-1.7 -3.87,-3.1 -4.63,-3.1 -0.76,0 -1.97,-0.7 -2.68,-1.561 -1.261,-1.52 0.75,-0.89 12.14,3.811 2.22,0.92 3.22,0.64 7,-1.96 2.43,-1.67 9.99,-5.83 16.82,-9.25 26.25,-13.15 53.329,-18.29 68.64,-13.021 7.91,2.721 8.8,2.051 2.59,-1.93 -10.96,-7.03 -29.7,-12.07 -39.11,-10.51 -9.13,1.5 -23.8,4.75 -29.01,6.41 -14.42,4.609 -38.72,18.189 -40.41,22.59 -0.89,2.31 -3.279,0.189 -4.13,-3.65 -0.35,-1.609 -1.04,-2.93 -1.52,-2.93 -2.24,0 -7.94,-6.38 -8.53,-9.54 -0.4,-2.09 -1.37,-3.62 -2.55,-4 -2.3,-0.73 -4.88,-5.42 -4.88,-8.88 0,-1.79 -0.87,-2.98 -2.971,-4.061 -3.43,-1.779 -5.029,-4.31 -5.029,-7.949 0,-1.971 -0.851,-2.96 -3.721,-4.311 -4.55,-2.149 -6.25,-5.27 -6.27,-11.51 -0.01,-3.3 -0.42,-4.75 -1.36,-4.75 -2.529,0 -5.02,-3.97 -5.09,-8.11 -0.04,-2.75 -0.609,-4.34 -1.81,-5.01 -2.63,-1.47 -5,-6.73 -4.3,-9.54 0.409,-1.63 -0.03,-3.26 -1.311,-4.89 -1.66,-2.11 -1.78,-3.021 -0.88,-6.58 0.96,-3.78 0.85,-4.28 -1.26,-5.87 -2.15,-1.62 -2.271,-2.25 -1.721,-8.8 0.46,-5.471 0.271,-7.33 -0.84,-8.25 -1.71,-1.42 -1.899,-7.23 -0.34,-10.141 0.84,-1.56 0.8,-2.26 -0.16,-2.85 -2.8,-1.73 -1.3,-7.8 4.09,-16.5 2.904,-4.698 0.704,-4.637 -5.696,0.163 z" /><path
39
-         inkscape:connector-curvature="0"
40
-         id="path7"
41
-         d="m 593.494,151.913 c -27.23,11.9 -27.17,11.86 -21.75,13.91 11.35,4.28 11.56,4.28 16.51,0.34 7.01,-5.6 26.74,-22.42 26.74,-22.8 0,-0.759 -2.33,0.17 -21.5,8.55 z" /><path
42
-         inkscape:connector-curvature="0"
43
-         id="path9"
44
-         d="m 430.115,153.243 c -2.301,0.61 -6.46,4.01 -13,10.61 -7.41,7.479 -11.69,10.859 -18.61,14.689 -13.109,7.261 -23.34,15.221 -29.3,22.811 -7.94,10.1 -28.14,30.55 -33,33.39 -2.37,1.391 -4.06,2.76 -3.77,3.061 1.02,1.01 14.09,-5.181 22.56,-10.681 12.22,-7.939 22.06,-12.14 41,-17.489 22.01,-6.211 24.47,-7.351 33.439,-15.49 9.061,-8.21 11.03,-8.641 39.061,-8.54 48.56,0.16 79.989,8.78 118.6,32.52 5.29,3.24 9.9,5.9 10.25,5.9 1.851,0 -0.16,-2.9 -8.1,-11.71 -12.36,-13.7 -12.07,-13.41 -19.25,-18.96 -26.48,-20.46 -55.641,-33.22 -86.431,-37.84 -21.619,-3.25 -45.96,-4.28 -53.449,-2.271 z" /><path
45
-         inkscape:connector-curvature="0"
46
-         id="path11"
47
-         d="m 565.994,169.783 c 0,0.5 3.71,2.78 8.25,5.061 15.34,7.71 34.29,24.04 54.56,47.02 23.07,26.15 45.3,70.01 52.54,103.66 8.28,38.47 9.72,48.08 11.78,78.5 0.96,14.05 0.479,70.63 -0.66,78.5 -0.23,1.649 -0.86,7.27 -1.4,12.5 -0.8,7.819 -2.96,27.56 -4.409,40.279 -0.61,5.33 1.84,2.061 5.51,-7.359 3.34,-8.601 8.2,-29.86 13.22,-57.92 0.83,-4.681 2.19,-11.65 3.01,-15.5 5.23,-24.471 7.87,-68.561 5.67,-94.65 -3.04,-36.1 -8.819,-57.53 -22.31,-82.85 -23.54,-44.14 -53.6,-75.34 -92.76,-96.29 -11.34,-6.061 -33.001,-13.25 -33.001,-10.951 z" /><path
48
-         inkscape:connector-curvature="0"
49
-         id="path13"
50
-         d="m 324.754,228.673 c -9.16,1.23 -12.33,2.19 -21.49,6.5 -22.39,10.54 -28.569,12.45 -54.739,16.94 -29.301,5.03 -56.101,7.71 -86.53,8.66 -19.67,0.62 -77.15,-1.351 -83.9,-2.87 -6.76,-1.51 -7.39,0.43 -1.17,3.59 13.07,6.62 20.16,7.73 83.57,13.07 9.9,0.84 18.68,1.71 19.5,1.939 0.83,0.24 7.13,0.681 14,0.99 22.22,1.01 61.86,4.89 71.5,7 34.56,7.58 43.47,10.48 64.31,20.93 5.94,2.98 15.04,8.16 20.221,11.51 5.17,3.351 9.989,6.091 10.689,6.091 1.74,0 1.61,-3.5 -0.29,-7.511 -2.56,-5.39 -11.96,-15.02 -19.029,-19.479 -17.591,-11.11 -37.101,-18.97 -64.24,-25.88 -8.431,-2.15 -14.96,-4.11 -14.5,-4.37 0.46,-0.25 4.5,-1.66 8.97,-3.12 10.04,-3.28 19.37,-8.39 28.15,-15.43 7.54,-6.05 19.779,-12.58 25.529,-13.63 5.631,-1.021 14.73,-4.71 14.11,-5.71 -0.651,-1.06 -1.171,-1.029 -14.661,0.78 z" /><path
51
-         inkscape:connector-curvature="0"
52
-         id="path15"
53
-         d="m 421.244,246.264 c 4.71,21.72 5,24.26 4.45,38.26 -0.57,14.38 -1.73,19.409 -7.54,32.72 -4.46,10.21 -15.931,18.67 -30.44,22.46 -8.55,2.24 -25.97,2.22 -55.39,-0.04 -26.11,-2.01 -36.95,-1.5 -43.59,2.05 -3.24,1.73 -3.24,1.73 3.76,2.49 12.45,1.35 27.75,5.07 48.43,11.77 10.8,3.5 23.141,6.21 32.07,7.04 4.68,0.44 8.76,0.641 9.07,0.45 0.319,-0.18 3.239,-0.62 6.5,-0.96 11.949,-1.27 24.72,-8.109 36.43,-19.52 19.189,-18.69 23.85,-45.7 12.76,-73.96 -3.88,-9.891 -12.31,-23.23 -15.43,-24.43 -1.209,-0.46 -1.459,-0.08 -1.08,1.67 z" /><path
54
-         inkscape:connector-curvature="0"
55
-         id="path17"
56
-         d="m 342.594,268.073 c -6.18,5.43 -6.96,13.45 -2.04,21.11 5.341,8.31 17.33,6.92 21.82,-2.54 3.37,-7.12 0.99,-14.431 -6.3,-19.351 -4.78,-3.209 -9.23,-2.959 -13.48,0.781 z" /><path
57
-         inkscape:connector-curvature="0"
58
-         id="path19"
59
-         d="m 628.284,279.654 c 0.27,3.37 0.109,8.17 -0.351,10.68 -0.64,3.431 -0.479,5.3 0.66,7.58 0.83,1.66 1.65,5.41 1.83,8.32 0.18,2.91 1.07,6.72 1.99,8.47 0.91,1.75 1.91,5.58 2.21,8.5 0.31,2.93 1.189,6.74 1.96,8.47 0.78,1.73 1.41,5.46 1.41,8.29 0,3.01 0.66,6.13 1.59,7.561 0.88,1.34 1.84,5.26 2.14,8.71 0.3,3.46 1.33,7.87 2.29,9.79 0.96,1.92 3.01,8.56 4.561,14.75 1.55,6.189 3.18,11.25 3.62,11.25 2.979,0 -2.73,-54.45 -7.811,-74.5 -4.34,-17.141 -11.46,-37.04 -14.939,-41.75 -1.6,-2.171 -1.64,-2.022 -1.16,3.879 z" /><path
60
-         inkscape:connector-curvature="0"
61
-         id="path21"
62
-         d="m 565.994,286.123 c 0,0.61 2.93,4.271 6.52,8.141 8.78,9.489 16.561,19.979 20.271,27.34 3.84,7.609 10.02,25.739 10.85,31.84 0.63,4.59 0.63,4.59 -3.56,3.109 -15.601,-5.51 -51.141,-8.55 -71.2,-6.1 -23.68,2.9 -27.91,3.68 -41.021,7.53 -3.729,1.1 -6.59,3.5 -5.159,4.33 0.439,0.25 9.579,0.8 20.3,1.22 30.16,1.189 30.27,1.189 35.02,1.939 15.29,2.391 36.601,7.181 43.24,9.73 7.41,2.84 16.74,7.53 16.74,8.41 0,0.22 -30.391,0.41 -67.53,0.41 -67.52,0 -67.52,0 -65.85,-3.25 0.93,-1.79 3.159,-5.2 4.979,-7.57 8.01,-10.521 6.7,-20.93 -3.28,-26.06 -3.229,-1.65 -15.8,-1.45 -17.239,0.279 -0.931,1.12 -0.53,1.86 1.989,3.65 2.971,2.109 3.131,2.54 2.7,7.35 -0.25,2.8 -1.899,9.71 -3.66,15.351 -3.199,10.25 -3.199,10.25 -9.72,10.25 -5.76,0 -6.46,-0.21 -5.97,-1.75 0.3,-0.96 1.46,-5.13 2.569,-9.25 1.11,-4.13 3.091,-11.391 4.391,-16.15 1.3,-4.759 2.08,-9.07 1.74,-9.59 -0.69,-1.04 -12.16,-1.54 -16.25,-0.69 -2.16,0.44 -3.351,2.09 -6.67,9.23 -2.221,4.79 -5.08,13.09 -6.351,18.45 -2.319,9.75 -2.319,9.75 -185.949,9.75 -111.271,0 -185.591,0.37 -188.62,0.949 -9,1.7 -23.08,9.601 -27.051,15.171 -0.699,0.979 -1.899,2.409 -2.67,3.17 -1.779,1.79 -5.56,8.819 -5.56,10.359 0,0.65 -0.41,1.33 -0.9,1.521 -2.13,0.779 -3.09,20.439 -3.09,63.33 0,42.89 0.96,62.55 3.09,63.33 0.49,0.189 0.9,1.029 0.9,1.89 0,1.7 3.33,7.43 6.479,11.17 5.66,6.71 13.311,12.17 21.761,15.52 5.26,2.091 5.26,2.091 216.26,2.36 211,0.271 211,0.271 205,3.72 -3.3,1.9 -8.101,5.15 -10.67,7.23 -2.58,2.08 -7.53,5.97 -11,8.65 -11.59,8.92 -33.36,32.439 -31.63,34.159 0.27,0.271 3.819,-2.229 7.899,-5.569 11.69,-9.58 35.11,-20.721 55.9,-26.601 17.84,-5.04 61.729,-9 88.979,-8.029 23.2,0.829 37.181,3.27 64.63,11.239 7.051,2.061 7.521,1.63 10.17,-9.069 1.921,-7.75 2.91,-12.681 7.261,-36 1.12,-6.051 2.279,-11.79 2.569,-12.75 0.681,-2.28 -0.68,-2.21 -6.67,0.37 -4.939,2.13 -4.939,2.13 -4.939,17.5 0,15.38 0,15.38 -20.25,15.289 -18.641,-0.079 -19.87,-0.189 -15.44,-1.409 16.22,-4.46 29.5,-16.811 33.99,-31.591 1.5,-4.92 1.7,-11.27 1.7,-53.069 0,-47.48 0,-47.48 3.47,-47.2 5.12,0.4 8.53,3 8.53,6.51 0,1.601 0.64,3.16 1.43,3.46 1.8,0.69 3.57,5.66 3.57,9.99 0,2.24 0.85,4.16 2.63,5.94 2.34,2.33 2.56,3.17 2.05,7.489 -0.47,4.021 -0.28,4.971 1.12,5.42 0.939,0.311 4.31,4.33 7.5,8.94 6.02,8.68 7.86,10.62 16.09,16.88 7.8,5.94 8.68,4.93 2.68,-3.06 -5.38,-7.16 -8.83,-14.79 -11.55,-25.59 -3.01,-11.95 -3.47,-15.921 -4.18,-35.87 -0.68,-18.99 0.09,-17.79 -9.76,-15.23 -7.9,2.061 -18.301,7.36 -21.2,10.811 -2.38,2.819 -2.38,2.819 -2.34,-12.5 0.029,-13.641 0.18,-15.051 1.42,-12.83 1.81,3.239 2.38,1.739 2.88,-7.5 1.17,-21.61 -8.39,-54.021 -22.13,-75 -11.45,-17.49 -25.54,-32.69 -36.94,-39.851 -4.728,-2.958 -5.268,-3.117 -5.268,-1.548 z M 409.671,394.947 c 0.64,1.94 0.574,5.107 0.574,11.916 0,7.165 -0.678,17.899 24.231,17.899 0.659,-31.659 -1.163,-30.738 41.147,-30.738 42.31,0 42.31,0 47.59,4.87 2.9,2.67 6.47,5.93 7.92,7.25 7.811,7.06 20.66,18.819 23.91,21.88 2.04,1.92 7.9,7.33 13.01,12 5.11,4.67 10.75,9.85 12.53,11.5 1.78,1.649 7.39,6.819 12.47,11.5 24.38,22.439 22.07,17.439 21.74,47.12 -0.3,26.38 -0.3,26.38 -3.05,31.97 -3.601,7.33 -9.66,13.2 -17.721,17.189 -6.529,3.221 -6.529,3.221 -280.529,3.221 -274,0 -274,0 -280.51,-3.08 -9.811,-4.65 -17.92,-13.84 -19.931,-22.561 -1.359,-5.85 -1.359,-110.87 0,-116.72 1,-4.38 4.601,-10.37 9.131,-15.23 3.22,-3.449 13.289,-8.899 18.289,-9.89 6.383,-1.269 368.768,-1.366 369.199,-0.096 z" /><path
63
-         style="display:none"
64
-         inkscape:connector-curvature="0"
65
-         id="path23"
66
-         d="m 79.994,425.043 c -6.2,0.83 -12.82,3.13 -18,6.24 -4.73,2.84 -12.08,10.729 -14.36,15.42 -1.02,2.1 -2.37,4.72 -3,5.82 -0.79,1.38 -1.239,14.939 -1.449,43.97 -0.29,39.04 -0.19,42.06 1.439,43.25 1.14,0.83 5.17,1.28 11.561,1.28 9.81,0 9.81,0 9.819,-38.75 0.021,-43.25 0.24,-44.92 6.61,-50.931 4.34,-4.09 12.88,-6.779 18.729,-5.89 6.37,0.97 11.71,4.5 15.11,10 3.04,4.91 3.04,4.91 3.32,45.24 0.29,40.33 0.29,40.33 11.75,40.33 11.47,0 11.47,0 11.47,-36.67 0,-43 0.5,-47.48 5.83,-52.61 3.63,-3.49 11.09,-6.72 15.52,-6.72 4.83,0 12.78,3.159 15.74,6.25 5.93,6.21 5.87,5.72 6.15,49.25 0.26,40 0.26,40 11.76,40 11.5,0 11.5,0 11.5,-42.5 0,-42.5 0,-42.5 -3.32,-49.24 -5.42,-11.01 -13.09,-17.65 -25.229,-21.86 -8.86,-3.06 -23.681,-2.979 -32.24,0.181 -3.41,1.26 -6.43,2.55 -6.71,2.859 -0.271,0.311 -2.07,1.65 -4,2.99 -1.92,1.33 -3.86,3.02 -4.3,3.75 -1.26,2.09 -3.59,1.56 -6.51,-1.49 -7.579,-7.919 -22.89,-12.098 -37.19,-10.169 z"
67
-         display="none" /><path
68
-         style="display:none"
69
-         inkscape:connector-curvature="0"
70
-         id="path25"
71
-         d="m 464.014,425.053 c -6.38,1.49 -9.76,8.38 -8.85,18 0.33,3.471 0.33,3.471 12.08,3.75 11.75,0.28 11.75,0.28 11.75,-7.83 0,-7.619 -0.17,-8.279 -2.92,-11.029 -1.61,-1.601 -3.601,-2.92 -4.42,-2.92 -0.82,0 -2.101,-0.181 -2.83,-0.4 -0.73,-0.211 -2.9,-0.02 -4.81,0.429 z"
72
-         display="none" /><path
73
-         style="display:none"
74
-         inkscape:connector-curvature="0"
75
-         id="path27"
76
-         d="m 234.994,457.404 c -3.021,1.18 -6.85,2.899 -8.5,3.819 -3.29,1.83 -12.28,10.28 -14.22,13.36 -5.44,8.64 -7.91,20.35 -6.271,29.73 1.17,6.699 4.021,14.699 5.24,14.71 0.41,0 0.75,0.56 0.75,1.25 0,1.51 9.49,11.75 10.88,11.75 0.54,0 1.57,0.56 2.3,1.25 4.99,4.72 20.5,8.199 33.82,7.59 7.5,-0.34 7.5,-0.34 7.5,-10.84 0,-10.5 0,-10.5 -11.5,-11.011 -10.23,-0.46 -11.94,-0.8 -15.5,-3.119 -5.11,-3.341 -6.8,-5.37 -8.84,-10.641 -2.07,-5.34 -2.03,-9.59 0.149,-14.76 2.45,-5.83 4.091,-7.79 9.69,-11.59 4.61,-3.11 5.59,-3.38 12.5,-3.33 6.31,0.04 8.13,0.45 11.5,2.63 4.59,2.96 7.4,6.01 10.02,10.89 1.58,2.96 1.921,6.74 2.41,27.431 0.57,24 0.57,24 33.271,24.26 32.71,0.27 32.71,0.27 33,-27.16 0.3,-27.42 0.3,-27.42 3.399,-31.26 1.74,-2.15 5.101,-4.67 7.63,-5.72 11.94,-4.98 24.771,2.96 24.771,15.329 0,4.051 0,4.051 11.44,4.051 6.289,0 11.699,-0.42 12.02,-0.94 1.11,-1.8 -1.58,-15.61 -4.01,-20.56 -2.53,-5.16 -8.601,-12.5 -10.33,-12.5 -0.54,0 -1.57,-0.58 -2.3,-1.29 -0.73,-0.7 -3.95,-2.28 -7.16,-3.5 -4.78,-1.811 -7.9,-2.21 -17.21,-2.21 -17.45,0 -25.69,3.72 -36.08,16.29 -0.62,0.75 -1.46,2.449 -1.87,3.79 -0.41,1.329 -1.25,3.05 -1.87,3.819 -0.72,0.9 -1.26,8.41 -1.49,20.75 -0.35,19.351 -0.35,19.351 -9.75,19.351 -9.39,0 -9.39,0 -9.39,-9.61 0,-10.02 -2.62,-27.39 -4.13,-27.39 -0.48,0 -0.87,-0.681 -0.87,-1.521 0,-4.109 -10.54,-15.67 -18.12,-19.85 -7.939,-4.391 -13.75,-5.63 -25.79,-5.51 -9.299,0.092 -12.678,0.541 -17.089,2.262 z"
77
-         display="none" /><path
78
-         style="display:none"
79
-         inkscape:connector-curvature="0"
80
-         id="path29"
81
-         d="m 525.764,457.104 c -2.6,1.029 -6.43,2.939 -8.51,4.25 -4.58,2.899 -11.26,10.109 -11.26,12.17 0,0.83 -0.37,1.5 -0.82,1.5 -0.45,0 -1.57,2.399 -2.5,5.34 -1.31,4.16 -1.68,9.229 -1.68,23.03 0,17.699 0,17.699 -10.75,17.409 -10.75,-0.279 -10.75,-0.279 -11.011,-32.56 -0.27,-32.29 -0.27,-32.29 -11.5,-32 -11.239,0.28 -11.239,0.28 -11.5,42.54 -0.26,42.27 -0.26,42.27 34,42 34.261,-0.26 34.261,-0.26 34.761,-27.76 0.359,-19.86 0.859,-28.13 1.79,-29.761 0.71,-1.25 3.189,-3.489 5.5,-4.97 8.13,-5.22 20.939,-3.13 25.34,4.14 1.67,2.761 1.92,6.04 2.37,30.591 0.5,27.5 0.5,27.5 9.87,27.79 15.01,0.46 14.13,2.18 14.13,-27.73 0,-27.34 -0.91,-33.85 -5.82,-41.49 -3.86,-6 -7.84,-9.31 -15.78,-13.14 -6.97,-3.36 -7.35,-3.43 -19.5,-3.33 -9.59,0.08 -13.47,0.531 -17.13,1.981 z"
82
-         display="none" /><path
83
-         inkscape:connector-curvature="0"
84
-         id="path31"
85
-         d="m 291.834,301.894 c -31.39,15.779 -65.61,48.069 -73.51,69.369 -0.95,2.58 -1.44,4.99 -1.07,5.351 0.36,0.37 4.62,-3.05 9.45,-7.58 9.01,-8.45 29.87,-22.99 38.79,-27.04 2.75,-1.24 7.93,-3.59 11.5,-5.2 15.81,-7.16 35.55,-13.08 56.75,-17.02 6.19,-1.15 11.25,-2.471 11.25,-2.92 0,-1.87 -27.38,-0.83 -41.5,1.569 -19.89,3.38 -23.5,3.83 -23.49,2.91 0.01,-1.46 10.38,-11.8 17.26,-17.2 3.7,-2.91 6.48,-5.7 6.171,-6.199 -0.851,-1.38 -1.231,-1.25 -11.601,3.96 z" /><path
86
-         inkscape:connector-curvature="0"
87
-         id="path33"
88
-         d="m 714.554,427.213 c -1.97,6.01 -4.8,28.311 -4.92,38.83 -0.14,12.521 -0.14,12.521 3.36,18.42 3.58,6.021 15.01,18.561 16.93,18.561 1.78,0 1.24,-1.33 -2.68,-6.58 -2.061,-2.771 -5.29,-8.261 -7.181,-12.21 -3.43,-7.17 -3.43,-7.17 -2.31,-14.94 1.88,-13.02 2.85,-18.21 3.5,-18.86 0.34,-0.35 2,0.351 3.68,1.551 1.83,1.3 3.061,1.689 3.061,0.979 0,-2.34 -5.181,-15.51 -8.13,-20.66 -3.3,-5.771 -4.66,-7.081 -5.31,-5.091 z" /><path
89
-         inkscape:connector-curvature="0"
90
-         id="path35"
91
-         d="m 685.124,557.274 c -2.561,9.659 -3.08,13.8 -3.11,24.779 -0.02,12.341 3.33,34.88 6.98,46.971 1.08,3.569 2.88,10.55 4.01,15.5 1.13,4.949 2.92,12.37 4,16.5 2.88,11.109 6,30.409 5.94,36.85 -0.051,5.65 -0.051,5.65 -4.12,-2.35 -5.23,-10.271 -15.091,-25.28 -21.83,-33.24 -11.53,-13.59 -27.24,-23.95 -37.891,-24.98 -3.25,-0.31 -6.449,-1.279 -7.609,-2.29 -2.83,-2.489 -8.05,-4.989 -10.391,-4.989 -1.1,0 -3.55,-0.92 -5.449,-2.04 -2.28,-1.34 -6.641,-2.37 -12.811,-3.021 -5.14,-0.54 -10.42,-1.439 -11.729,-2 -2.811,-1.2 -3.511,-0.75 -2.721,1.73 0.95,3 5.33,7.13 12.051,11.37 3.909,2.47 6.779,5.09 7.51,6.869 0.81,1.961 2.13,3.061 4.149,3.461 1.78,0.359 5.601,3.17 9.63,7.109 3.681,3.59 7.48,6.521 8.45,6.521 2.65,0 9.73,3.029 14.811,6.34 7,4.56 20.069,18.439 24.64,26.17 6.08,10.29 13.92,26.89 23.36,49.49 8.43,20.18 17.1,51.35 19.26,69.25 0.65,5.359 1.42,9.75 1.72,9.75 0.58,0 1.15,-1.24 6.57,-14.46 9.29,-22.66 11.439,-32.16 12.11,-53.54 0.97,-31.2 -4.49,-62.19 -16.66,-94.5 -9.29,-24.681 -23.91,-70.03 -25.46,-79 -0.86,-4.95 -1.851,-12.94 -2.2,-17.75 -0.351,-4.811 -0.96,-8.75 -1.36,-8.75 -0.4,0 -1.23,1.909 -1.85,4.25 z" /></g><g
92
-       transform="matrix(92.881793,0,0,92.881793,0.51490554,-87841.16)"
93
-       id="g37"><path
94
-         inkscape:connector-curvature="0"
95
-         id="path39"
96
-         d="m 4.097,951.447 c 0,-0.434 0.002,-0.516 0.012,-0.566 C 4.146,950.7 4.27,950.6 4.458,950.6 l 0.063,0 -0.002,0.111 -0.002,0.111 -0.041,0.003 c -0.046,0.004 -0.072,0.015 -0.097,0.041 -0.037,0.04 -0.036,0.032 -0.039,0.576 l -0.002,0.513 -0.12,0 -0.121,0 0,-0.508 z" /><path
97
-         inkscape:connector-curvature="0"
98
-         id="path41"
99
-         d="m 0.736,951.882 c -0.123,-0.032 -0.231,-0.118 -0.283,-0.224 -0.05,-0.103 -0.05,-0.097 -0.05,-0.589 0,-0.42 0.001,-0.444 0.014,-0.456 0.012,-0.01 0.032,-0.013 0.121,-0.013 l 0.107,0 0,0.445 c 0,0.283 0.003,0.455 0.008,0.473 0.02,0.073 0.1,0.133 0.184,0.14 0.097,0.008 0.18,-0.039 0.218,-0.121 l 0.018,-0.04 0.002,-0.448 0.002,-0.448 0.121,0 0.121,0 0,0.438 c 0,0.478 0,0.483 0.044,0.543 0.03,0.041 0.09,0.072 0.149,0.077 0.094,0.008 0.173,-0.035 0.215,-0.114 l 0.021,-0.039 0.002,-0.452 0.002,-0.452 0.121,0 0.121,0 0,0.449 c 0,0.419 -10e-4,0.453 -0.015,0.506 -0.023,0.089 -0.055,0.146 -0.121,0.211 -0.09,0.089 -0.186,0.128 -0.32,0.128 -0.122,0 -0.212,-0.034 -0.296,-0.113 l -0.048,-0.045 -0.017,0.022 c -0.029,0.039 -0.12,0.097 -0.184,0.117 -0.048,0.015 -0.075,0.019 -0.137,0.018 -0.044,-10e-4 -0.097,-0.007 -0.12,-0.013 z" /><path
100
-         inkscape:connector-curvature="0"
101
-         id="path43"
102
-         d="m 4.642,951.881 c -0.014,-0.007 -0.034,-0.025 -0.044,-0.039 -0.015,-0.023 -0.017,-0.035 -0.017,-0.115 l 0,-0.09 0.121,0 0.121,0 0,0.08 c 0,0.089 -0.008,0.116 -0.045,0.151 -0.03,0.028 -0.095,0.035 -0.136,0.013 z" /><path
103
-         inkscape:connector-curvature="0"
104
-         id="path45"
105
-         d="m 2.386,951.544 c -0.083,-0.025 -0.133,-0.055 -0.197,-0.118 -0.067,-0.067 -0.112,-0.146 -0.132,-0.239 -0.019,-0.084 -0.012,-0.199 0.016,-0.275 0.042,-0.115 0.125,-0.211 0.227,-0.262 0.074,-0.037 0.139,-0.048 0.267,-0.049 l 0.108,0 0,0.116 0,0.117 -0.1,0.003 c -0.088,0.003 -0.106,0.006 -0.142,0.023 -0.058,0.027 -0.094,0.06 -0.119,0.111 -0.018,0.037 -0.021,0.052 -0.021,0.107 0,0.055 0.003,0.071 0.021,0.107 0.026,0.052 0.07,0.098 0.118,0.121 0.05,0.025 0.15,0.025 0.197,0 0.046,-0.025 0.091,-0.072 0.114,-0.121 l 0.02,-0.043 0.002,-0.271 0.002,-0.271 0.34,0 0.34,0 0,0.297 c 0,0.336 0,0.334 0.059,0.385 0.086,0.074 0.226,0.053 0.274,-0.04 0.01,-0.019 0.017,-0.052 0.02,-0.087 l 0.004,-0.056 0.12,0 0.12,0 0,0.052 c 0,0.062 -0.023,0.156 -0.051,0.213 -0.043,0.085 -0.143,0.161 -0.245,0.185 -0.057,0.013 -0.171,0.015 -0.228,0.003 -0.112,-0.023 -0.222,-0.107 -0.269,-0.204 -0.042,-0.087 -0.047,-0.12 -0.047,-0.327 l 0,-0.188 -0.099,0 -0.098,0 0,0.154 c 0,0.128 -0.002,0.164 -0.015,0.212 -0.044,0.172 -0.176,0.306 -0.344,0.349 -0.069,0.019 -0.192,0.016 -0.262,-0.004 z" /><path
106
-         inkscape:connector-curvature="0"
107
-         id="path47"
108
-         d="M 5.34,951.549 C 5.203,951.512 5.098,951.411 5.054,951.273 5.043,951.239 5.04,951.194 5.037,951.029 l -0.003,-0.203 -0.105,0 -0.106,0 0,0.356 0,0.356 -0.121,0 -0.121,0 0,-0.469 0,-0.469 0.348,0 0.348,0 0,0.276 c 0,0.168 0.003,0.291 0.008,0.314 0.01,0.049 0.044,0.094 0.085,0.116 0.026,0.014 0.045,0.017 0.093,0.017 0.08,0 0.121,-0.022 0.151,-0.081 l 0.02,-0.039 0,-0.301 0,-0.302 0.105,0 c 0.092,0 0.107,0.002 0.123,0.014 l 0.018,0.015 0,0.294 c 0,0.255 -0.002,0.3 -0.013,0.342 -0.022,0.081 -0.05,0.131 -0.103,0.184 -0.082,0.082 -0.167,0.113 -0.303,0.112 -0.045,0 -0.099,-0.006 -0.121,-0.012 z" /></g><path
109
-       inkscape:connector-curvature="0"
110
-       id="path49"
111
-       d="M 403.52901,561.50203" /></g></svg>

+ 0
- 3323
buildroot/share/vscode/AutoBuildMarlin/package-lock.json
Filskillnaden har hållits tillbaka eftersom den är för stor
Visa fil


+ 0
- 117
buildroot/share/vscode/AutoBuildMarlin/package.json Visa fil

@@ -1,117 +0,0 @@
1
-{
2
-  "name": "auto-build",
3
-  "displayName": "Auto Build Marlin",
4
-  "description": "Auto Build Marlin for VS code",
5
-  "version": "2.0.0",
6
-  "publisher": "marlinfirmware",
7
-  "icon": "logo.svg",
8
-  "engines": {
9
-    "vscode": "^1.32.0"
10
-  },
11
-  "enableProposedApi": true,
12
-  "categories": [
13
-    "Other"
14
-  ],
15
-  "activationEvents": [
16
-    "onCommand:mfbuild",
17
-    "onCommand:mfclean",
18
-    "onCommand:mfupload",
19
-    "onCommand:mftraceback"
20
-  ],
21
-  "main": "./extension",
22
-  "contributes": {
23
-    "viewsContainers": {
24
-      "activitybar": [
25
-        {
26
-          "id": "autoBuildVC",
27
-          "title": "Marlin Build",
28
-          "icon": "resources/AB.svg"
29
-        }
30
-      ]
31
-    },
32
-    "views": {
33
-      "autoBuildVC": [
34
-        {
35
-          "id": "autoBuildView",
36
-          "name": "Build…"
37
-        },
38
-        {
39
-          "id": "marlinView",
40
-          "name": "Marlin Info"
41
-        }
42
-      ]
43
-    },
44
-    "commands": [
45
-      {
46
-        "command": "mfbuild",
47
-        "title": "Build",
48
-        "icon": {
49
-          "light": "resources/B48x48_light.svg",
50
-          "dark": "resources/B48x48_dark.svg"
51
-        }
52
-      },
53
-      {
54
-        "command": "mfupload",
55
-        "title": "Upload",
56
-        "icon": {
57
-          "light": "resources/U48x48_light.svg",
58
-          "dark": "resources/U48x48_dark.svg"
59
-        }
60
-      },
61
-      {
62
-        "command": "mftraceback",
63
-        "title": "Upload (traceback)",
64
-        "icon": {
65
-          "light": "resources/T48x48_light.svg",
66
-          "dark": "resources/T48x48_dark.svg"
67
-        }
68
-      },
69
-      {
70
-        "command": "mfclean",
71
-        "title": "Clean",
72
-        "icon": {
73
-          "light": "resources/C48x48_light.svg",
74
-          "dark": "resources/C48x48_dark.svg"
75
-        }
76
-      }
77
-    ],
78
-    "menus": {
79
-      "view/title": [
80
-        {
81
-          "command": "mfbuild",
82
-          "group": "navigation@1",
83
-          "when": "view == autoBuildView || view == marlinView"
84
-        },
85
-        {
86
-          "command": "mfupload",
87
-          "group": "navigation@2",
88
-          "when": "view == autoBuildView || view == marlinView"
89
-        },
90
-        {
91
-          "command": "mftraceback",
92
-          "group": "navigation@3",
93
-          "when": "view == autoBuildView || view == marlinView"
94
-        },
95
-        {
96
-          "command": "mfclean",
97
-          "group": "navigation@4",
98
-          "when": "view == autoBuildView || view == marlinView"
99
-        }
100
-      ]
101
-    }
102
-  },
103
-  "scripts": {
104
-    "vscode:prepublish": "npm run compile",
105
-    "compile": "tsc -p ./",
106
-    "watch": "tsc -watch -p ./",
107
-    "postinstall": "node ./node_modules/vscode/bin/install",
108
-    "test": "npm run compile && node ./node_modules/vscode/bin/test"
109
-  },
110
-  "devDependencies": {
111
-    "@types/vscode": "^1.34.0",
112
-    "typescript": "^3.5.1",
113
-    "tslint": "^5.16.0",
114
-    "@types/node": "^10.14.17",
115
-    "@types/mocha": "^2.2.42"
116
-  }
117
-}

+ 0
- 23
buildroot/share/vscode/AutoBuildMarlin/resources/AB.svg Visa fil

@@ -1,23 +0,0 @@
1
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
-<svg
3
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
4
-   xmlns:cc="http://creativecommons.org/ns#"
5
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
-   xmlns:svg="http://www.w3.org/2000/svg"
7
-   xmlns="http://www.w3.org/2000/svg"
8
-   width="74"
9
-   height="68"
10
-   version="1.1">
11
-  <!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->
12
-  <title>AutoBuildMarlin View</title>
13
-  <g
14
-     transform="matrix(0.92865175,0,0,0.97009223,1.4847157,1.0636373)"
15
-     style="stroke-width:1.05357885">
16
-    <path
17
-       d="M 11.136251,-1.096429 V 0.65746893 H 7.6344377 V 2.4082389 H 5.8835346 V 4.1621368 H 4.1294904 V 5.9128924 H 2.378583 V 7.6667969 H 0.62767696 V 11.171465 H -1.1232297 v 45.56378 h 1.75090666 v 3.504652 H 2.378583 v 1.750767 h 1.7509074 v 1.753904 h 1.7540442 v 1.750758 h 1.7509031 v 1.753903 h 3.5018133 v 1.75077 h 54.215335 v -1.75077 h 3.501813 v -1.753903 h 1.750911 v -1.750758 h 1.754045 v -1.753904 h 1.750905 v -1.750767 h 1.750909 v -3.504652 h 1.750903 V 0.65746893 H 75.860169 V -1.096429 Z"
18
-       style="display:inline;opacity:0.2;fill:#ffffff;stroke:none;stroke-width:1.4047718" />
19
-    <path
20
-       d="m 23.819389,8.3649514 v 1.7008096 h -3.4019 v 1.703862 h -1.700946 v 1.703855 h -1.703998 v 1.700811 h -1.700954 v 3.404672 h -1.700946 v 39.155205 h 1.700946 v 1.703864 h 8.507798 V 20.282816 h 1.700952 v -1.703855 h 6.806845 v 1.703855 h 1.700947 V 59.43803 h 10.20875 V 20.282816 h 1.700946 v -1.703855 h 6.803799 v 1.703855 h 1.700946 V 59.43803 H 64.651325 V 18.578961 H 62.950373 V 15.174289 H 61.249426 V 13.473478 H 59.548472 V 11.769623 H 57.847527 V 10.065761 H 54.442574 V 8.3649514 h -8.504745 v 1.7008096 h -3.401898 v 1.703862 h -1.704 v 1.703855 H 37.430032 V 11.769623 H 35.729087 V 10.065761 H 32.327186 V 8.3649514 Z"
21
-       style="display:inline;fill:#000000;stroke:none;stroke-width:1.40477192" />
22
-  </g>
23
-</svg>

+ 0
- 26
buildroot/share/vscode/AutoBuildMarlin/resources/B48x48_dark.svg Visa fil

@@ -1,26 +0,0 @@
1
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
3
-<svg
4
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
5
-   xmlns:cc="http://creativecommons.org/ns#"
6
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7
-   xmlns:svg="http://www.w3.org/2000/svg"
8
-   xmlns="http://www.w3.org/2000/svg"
9
-   width="48" height="48"
10
-   viewBox="0 0 48 48"
11
-   version="1.1">
12
-  <g transform="translate(0,-284.3)">
13
-    <path
14
-       style="display:inline;opacity:0.2;fill:#ffffff;stroke:none;stroke-width:1.33333266"
15
-       d="m 7,284.3 v 1 H 5 v 2 H 3 v 2 H 1 v 2 H 0 v 34 h 1 v 2 h 2 v 2 h 2 v 2 h 2 v 1 h 34 v -1 h 2 v -2 h 2 v -2 h 2 v -2 h 1 v -39.91815 h -1.03376 v -1.08183 z" />
16
-    <g style="fill:#ffffff;stroke-width:0.68261832"
17
-       transform="matrix(1.0358745,-1.0358745,1.0358745,1.0358745,-4.5037807,307.49351)">
18
-      <path
19
-         d="m 12.381356,1.694916 h 3.237288 c 1.108,0 2,0.892 2,2 v 26.61017 c 0,1.108 -0.892,2 -2,2 h -3.237288 c -1.108,0 -2,-0.892 -2,-2 V 3.694916 c 0,-1.108 0.892,-2 2,-2 z"
20
-         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.64499366;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
21
-      <path
22
-         d="m 3.9747747,3.1347656 c -1.108,0 -1.9999999,0.892 -1.9999999,2 v 5.7304684 c 0,1.108 0.8919999,2 1.9999999,2 h 0.7285157 c 1.108,0 1.057191,-2 2,-2 c 0.942809,0 0.892,2 2,2 H 18.940777 c 1.034412,0 1.870684,-0.780314 1.978516,-1.785156 c 0.008,-0.02402 0.02148,-0.03558 0.02148,-0.07617 c 0,-5.1313556 2.471516,-2.7014765 3.261719,-2.2207029 c 0.752118,0.4576024 2.31379,-0.800384 1.572265,-2.1054687 C 25.033235,5.3726496 20.940777,3.1812006 18.940777,3.1347656 H 8.7032904 c -1.108,0 -1.057191,2 -2,2 c -0.942809,0 -0.892,-2 -2,-2 z"
23
-         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.64499366;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
24
-    </g>
25
-  </g>
26
-</svg>

+ 0
- 26
buildroot/share/vscode/AutoBuildMarlin/resources/B48x48_light.svg Visa fil

@@ -1,26 +0,0 @@
1
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
3
-<svg
4
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
5
-   xmlns:cc="http://creativecommons.org/ns#"
6
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7
-   xmlns:svg="http://www.w3.org/2000/svg"
8
-   xmlns="http://www.w3.org/2000/svg"
9
-   width="48" height="48"
10
-   viewBox="0 0 48 48"
11
-   version="1.1">
12
-  <g transform="translate(0,-284.3)">
13
-    <path
14
-       style="display:inline;opacity:0.5;fill:#ffffff;stroke:none;stroke-width:1.33333266"
15
-       d="m 7,284.3 v 1 H 5 v 2 H 3 v 2 H 1 v 2 H 0 v 34 h 1 v 2 h 2 v 2 h 2 v 2 h 2 v 1 h 34 v -1 h 2 v -2 h 2 v -2 h 2 v -2 h 1 v -39.91815 h -1.03376 v -1.08183 z" />
16
-    <g style="fill:#000000;stroke-width:0.68261832"
17
-       transform="matrix(1.0358745,-1.0358745,1.0358745,1.0358745,-4.5037807,307.49351)">
18
-      <path
19
-         d="m 12.381356,1.694916 h 3.237288 c 1.108,0 2,0.892 2,2 v 26.61017 c 0,1.108 -0.892,2 -2,2 h -3.237288 c -1.108,0 -2,-0.892 -2,-2 V 3.694916 c 0,-1.108 0.892,-2 2,-2 z"
20
-         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.64499366;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
21
-      <path
22
-         d="m 3.9747747,3.1347656 c -1.108,0 -1.9999999,0.892 -1.9999999,2 v 5.7304684 c 0,1.108 0.8919999,2 1.9999999,2 h 0.7285157 c 1.108,0 1.057191,-2 2,-2 c 0.942809,0 0.892,2 2,2 H 18.940777 c 1.034412,0 1.870684,-0.780314 1.978516,-1.785156 c 0.008,-0.02402 0.02148,-0.03558 0.02148,-0.07617 c 0,-5.1313556 2.471516,-2.7014765 3.261719,-2.2207029 c 0.752118,0.4576024 2.31379,-0.800384 1.572265,-2.1054687 C 25.033235,5.3726496 20.940777,3.1812006 18.940777,3.1347656 H 8.7032904 c -1.108,0 -1.057191,2 -2,2 c -0.942809,0 -0.892,-2 -2,-2 z"
23
-         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.64499366;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
24
-    </g>
25
-  </g>
26
-</svg>

+ 0
- 24
buildroot/share/vscode/AutoBuildMarlin/resources/C48x48_dark.svg Visa fil

@@ -1,24 +0,0 @@
1
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
3
-<svg
4
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
5
-   xmlns:cc="http://creativecommons.org/ns#"
6
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7
-   xmlns:svg="http://www.w3.org/2000/svg"
8
-   xmlns="http://www.w3.org/2000/svg"
9
-   width="48" height="48"
10
-   viewBox="0 0 48 48"
11
-   version="1.1">
12
-  <g transform="translate(0,-284.3)">
13
-    <path
14
-       style="display:inline;opacity:0.2;fill:#ffffff;stroke:none;stroke-width:1.33333266"
15
-       d="m 7,284.3 v 1 H 5 v 2 H 3 v 2 H 1 v 2 H 0 v 34 h 1 v 2 h 2 v 2 h 2 v 2 h 2 v 1 h 34 v -1 h 2 v -2 h 2 v -2 h 2 v -2 h 1 v -39.91815 h -1.03376 v -1.08183 z" />
16
-    <path
17
-       style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
18
-       d="M 5 12 L 5 14 L 6 15 L 9 43 L 10 44 L 38 44 L 39 43 L 42 15 L 43 14 L 43 12 L 5 12 z M 12 16 L 14 16 L 15 17 L 17 39 L 16 40 L 14 40 L 13 39 L 11 17 L 12 16 z M 23 16 L 25 16 L 26 17 L 26 39 L 25 40 L 23 40 L 22 39 L 22 17 L 23 16 z M 34 16 L 36 16 L 37 17 L 35 39 L 34 40 L 32 40 L 31 39 L 33 17 L 34 16 z "
19
-       transform="translate(0,284.3)" />
20
-    <path
21
-       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.94488192;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
22
-       d="m 5,292.3 h 1 v -1 l 9,-2 h 4 l 1,-2 h 7 l 1,2 h 5 l 9,2 v 1 h 1 v 2 H 5 Z" />
23
-  </g>
24
-</svg>

+ 0
- 25
buildroot/share/vscode/AutoBuildMarlin/resources/C48x48_light.svg Visa fil

@@ -1,25 +0,0 @@
1
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
3
-<svg
4
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
5
-   xmlns:cc="http://creativecommons.org/ns#"
6
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7
-   xmlns:svg="http://www.w3.org/2000/svg"
8
-   xmlns="http://www.w3.org/2000/svg"
9
-   width="48" height="48"
10
-   viewBox="0 0 48 48"
11
-   version="1.1">
12
-  <g transform="translate(0,-284.3)">
13
-    <path
14
-       style="display:inline;opacity:0.5;fill:#ffffff;stroke:none;stroke-width:1.33333266"
15
-       d="m 7,284.3 v 1 H 5 v 2 H 3 v 2 H 1 v 2 H 0 v 34 h 1 v 2 h 2 v 2 h 2 v 2 h 2 v 1 h 34 v -1 h 2 v -2 h 2 v -2 h 2 v -2 h 1 v -39.91815 h -1.03376 v -1.08183 z" />
16
-    <g style="fill:#000000">
17
-      <path
18
-         style="fill:#000000;fill-rule:evenodd;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
19
-         d="m 5,296.3 v 2 l 1,1 l 3,28 l 1,1 h 28 l 1,-1 l 3,-28 l 1,-1 v -2 z m 7,4 h 2 l 1,1 l 2,22 l -1,1 h -2 l -1,-1 l -2,-22 z m 11,0 h 2 l 1,1 v 22 l -1,1 h -2 l -1,-1 v -22 z m 11,0 h 2 l 1,1 l -2,22 l -1,1 h -2 l -1,-1 l 2,-22 z" />
20
-      <path
21
-         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.94488192;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
22
-         d="m 5,292.3 h 1 v -1 l 9,-2 h 4 l 1,-2 h 7 l 1,2 h 5 l 9,2 v 1 h 1 v 2 H 5 Z" />
23
-    </g>
24
-  </g>
25
-</svg>

+ 0
- 53
buildroot/share/vscode/AutoBuildMarlin/resources/T48x48_dark.svg Visa fil

@@ -1,53 +0,0 @@
1
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
3
-<svg
4
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
5
-   xmlns:cc="http://creativecommons.org/ns#"
6
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7
-   xmlns:svg="http://www.w3.org/2000/svg"
8
-   xmlns="http://www.w3.org/2000/svg"
9
-   width="48" height="48"
10
-   viewBox="0 0 48 48"
11
-   version="1.1">
12
-  <g transform="translate(0,-284.3)">
13
-    <path
14
-       style="display:inline;opacity:0.2;fill:#ffffff;stroke:none;stroke-width:1.33333266"
15
-       d="m 7,284.3 v 1 H 5 v 2 H 3 v 2 H 1 v 2 H 0 v 34 h 1 v 2 h 2 v 2 h 2 v 2 h 2 v 1 h 34 v -1 h 2 v -2 h 2 v -2 h 2 v -2 h 1 v -39.91815 h -1.03376 v -1.08183 z" />
16
-    <g
17
-       transform="matrix(0.88888892,0,0,0.88888892,4.5570375,46.942926)"
18
-       style="fill:none;stroke:#ff00ff;stroke-width:1.125;stroke-linejoin:miter;stroke-linecap:square" />
19
-    <path
20
-       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
21
-       d="m 11,303.3 v 3 h 26 v -3 z" />
22
-    <path
23
-       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
24
-       d="m 26,305.3 h -4 v 20 h 4 z" />
25
-    <path
26
-       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
27
-       d="m 24,294.80508 c -8.815928,0 -16.00078,7.18486 -16.00078,16.00078 c 0,8.81593 7.184852,16.00078 16.00078,16.00078 c 8.815928,0 16.00078,-7.18485 16.00078,-16.00078 c 0,-8.81592 -7.184852,-16.00078 -16.00078,-16.00078 z m 0,3.00079 c 7.201699,0 13,5.79829 13,12.99999 c 0,7.2017 -5.798301,12.99999 -13,12.99999 c -7.201699,0 -13,-5.79829 -13,-12.99999 c 0,-7.2017 5.798301,-12.99999 13,-12.99999 z" />
28
-    <path
29
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
30
-       d="m 4,306.80508 l 6,2" />
31
-    <path
32
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
33
-       d="m 3,314.80508 h 7" />
34
-    <path
35
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
36
-       d="m 6,322.80508 l 6,-3" />
37
-    <path
38
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
39
-       d="m 44,306.80508 l -6,2" />
40
-    <path
41
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
42
-       d="M 45,314.80508 H 38" />
43
-    <path
44
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
45
-       d="m 42,322.80508 l -6,-3" />
46
-    <path
47
-       style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
48
-       d="m 37,291.80508 c 0,0 -10,-5 -10,5" />
49
-    <path
50
-       style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
51
-       d="m 11,291.80508 c 0,0 10,-5 10,5" />
52
-  </g>
53
-</svg>

+ 0
- 53
buildroot/share/vscode/AutoBuildMarlin/resources/T48x48_light.svg Visa fil

@@ -1,53 +0,0 @@
1
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
3
-<svg
4
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
5
-   xmlns:cc="http://creativecommons.org/ns#"
6
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7
-   xmlns:svg="http://www.w3.org/2000/svg"
8
-   xmlns="http://www.w3.org/2000/svg"
9
-   width="48" height="48"
10
-   viewBox="0 0 48 48"
11
-   version="1.1">
12
-  <g transform="translate(0,-284.3)">
13
-    <path
14
-       style="display:inline;opacity:0.5;fill:#ffffff;stroke:none;stroke-width:1.33333266"
15
-       d="m 7,284.3 v 1 H 5 v 2 H 3 v 2 H 1 v 2 H 0 v 34 h 1 v 2 h 2 v 2 h 2 v 2 h 2 v 1 h 34 v -1 h 2 v -2 h 2 v -2 h 2 v -2 h 1 v -39.91815 h -1.03376 v -1.08183 z" />
16
-    <g
17
-       transform="matrix(0.88888892,0,0,0.88888892,4.5570375,46.942926)"
18
-       style="fill:none;stroke:#ff00ff;stroke-width:1.125;stroke-linejoin:miter;stroke-linecap:square" />
19
-    <path
20
-       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
21
-       d="m 11,303.3 v 3 h 26 v -3 z" />
22
-    <path
23
-       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
24
-       d="m 26,305.3 h -4 v 20 h 4 z" />
25
-    <path
26
-       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
27
-       d="m 24,294.80508 c -8.815928,0 -16.00078,7.18486 -16.00078,16.00078 c 0,8.81593 7.184852,16.00078 16.00078,16.00078 c 8.815928,0 16.00078,-7.18485 16.00078,-16.00078 c 0,-8.81592 -7.184852,-16.00078 -16.00078,-16.00078 z m 0,3.00079 c 7.201699,0 13,5.79829 13,12.99999 c 0,7.2017 -5.798301,12.99999 -13,12.99999 c -7.201699,0 -13,-5.79829 -13,-12.99999 c 0,-7.2017 5.798301,-12.99999 13,-12.99999 z" />
28
-    <path
29
-       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
30
-       d="m 4,306.80508 l 6,2" />
31
-    <path
32
-       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
33
-       d="m 3,314.80508 h 7" />
34
-    <path
35
-       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
36
-       d="m 6,322.80508 l 6,-3" />
37
-    <path
38
-       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
39
-       d="m 44,306.80508 l -6,2" />
40
-    <path
41
-       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
42
-       d="M 45,314.80508 H 38" />
43
-    <path
44
-       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
45
-       d="m 42,322.80508 l -6,-3" />
46
-    <path
47
-       style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
48
-       d="m 37,291.80508 c 0,0 -10,-5 -10,5" />
49
-    <path
50
-       style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
51
-       d="m 11,291.80508 c 0,0 10,-5 10,5" />
52
-  </g>
53
-</svg>

+ 0
- 26
buildroot/share/vscode/AutoBuildMarlin/resources/U48x48_dark.svg Visa fil

@@ -1,26 +0,0 @@
1
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
3
-<svg
4
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
5
-   xmlns:cc="http://creativecommons.org/ns#"
6
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7
-   xmlns:svg="http://www.w3.org/2000/svg"
8
-   xmlns="http://www.w3.org/2000/svg"
9
-   width="48" height="48"
10
-   viewBox="0 0 48 48"
11
-   version="1.1">
12
-  <g transform="translate(0,-284.3)">
13
-    <path
14
-       style="display:inline;opacity:0.2;fill:#ffffff;stroke:none;stroke-width:1.33333266"
15
-       d="m 7,284.3 v 1 H 5 v 2 H 3 v 2 H 1 v 2 H 0 v 34 h 1 v 2 h 2 v 2 h 2 v 2 h 2 v 1 h 34 v -1 h 2 v -2 h 2 v -2 h 2 v -2 h 1 v -39.91815 h -1.03376 v -1.08183 z" />
16
-    <path
17
-       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:6;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
18
-       d="M 24.001953,298.5793 L 9,317.3 h 10 v 10 h 10 v -10 h 10 z" />
19
-    <path
20
-       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:6;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
21
-       d="m 9,291.3 v 6 h 30 v -6 z" />
22
-    <g
23
-       transform="matrix(0.88888892,0,0,0.88888892,4.5570375,46.942926)"
24
-       style="fill:none;stroke:#ff00ff;stroke-width:1.125;stroke-linejoin:miter;stroke-linecap:square" />
25
-  </g>
26
-</svg>

+ 0
- 26
buildroot/share/vscode/AutoBuildMarlin/resources/U48x48_light.svg Visa fil

@@ -1,26 +0,0 @@
1
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
3
-<svg
4
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
5
-   xmlns:cc="http://creativecommons.org/ns#"
6
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7
-   xmlns:svg="http://www.w3.org/2000/svg"
8
-   xmlns="http://www.w3.org/2000/svg"
9
-   width="48" height="48"
10
-   viewBox="0 0 48 48"
11
-   version="1.1">
12
-  <g transform="translate(0,-284.3)">
13
-    <path
14
-       style="display:inline;opacity:0.5;fill:#ffffff;stroke:none;stroke-width:1.33333266"
15
-       d="m 7,284.3 v 1 H 5 v 2 H 3 v 2 H 1 v 2 H 0 v 34 h 1 v 2 h 2 v 2 h 2 v 2 h 2 v 1 h 34 v -1 h 2 v -2 h 2 v -2 h 2 v -2 h 1 v -39.91815 h -1.03376 v -1.08183 z" />
16
-    <path
17
-       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:6;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
18
-       d="M 24.001953,298.5793 L 9,317.3 h 10 v 10 h 10 v -10 h 10 z" />
19
-    <path
20
-       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:6;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
21
-       d="m 9,291.3 v 6 h 30 v -6 z" />
22
-    <g
23
-       transform="matrix(0.88888892,0,0,0.88888892,4.5570375,46.942926)"
24
-       style="fill:none;stroke:#ff00ff;stroke-width:1.125;stroke-linejoin:miter;stroke-linecap:square" />
25
-  </g>
26
-</svg>

+ 0
- 12
buildroot/share/vscode/AutoBuildMarlin/tsconfig.json Visa fil

@@ -1,12 +0,0 @@
1
-{
2
-  "compilerOptions": {
3
-    "module": "commonjs",
4
-    "target": "es6",
5
-    "outDir": "out",
6
-    "lib": [
7
-      "es6"
8
-    ],
9
-    "sourceMap": true,
10
-    "rootDir": "."
11
-  }
12
-}

Laddar…
Avbryt
Spara