[pve-devel] [PATCH novnc 2/2] rebase patches on new commit

Dominik Csapak d.csapak at proxmox.com
Tue Aug 8 12:50:05 CEST 2017


nothing changed in our patches

Signed-off-by: Dominik Csapak <d.csapak at proxmox.com>
---
 debian/patches/0001-add-pve-specific-js-code.patch | 34 +++++++++++-----------
 ...2-change-scaling-when-toggling-fullscreen.patch | 10 +++----
 debian/patches/0003-add-pve-style.patch            |  6 ++--
 debian/patches/0004-remove-vnc-logos.patch         |  6 ++--
 ...-change-src-directory-for-images-js-files.patch | 14 ++++-----
 debian/patches/0006-add-pve-vnc-commands.patch     |  6 ++--
 ...0007-add-replaceable-snippets-in-vnc.html.patch |  6 ++--
 debian/patches/0008-focus-canvas-after-load.patch  | 12 ++++----
 debian/patches/0009-decrease-animation-time.patch  | 18 ++++++------
 debian/patches/0010-use-only-app.js.patch          |  6 ++--
 ...nd-height-to-vncproxy-call-in-console-tab.patch |  6 ++--
 ...change-higlight-color-for-pressed-buttons.patch |  2 +-
 12 files changed, 63 insertions(+), 63 deletions(-)

diff --git a/debian/patches/0001-add-pve-specific-js-code.patch b/debian/patches/0001-add-pve-specific-js-code.patch
index f4f5067..b911a41 100644
--- a/debian/patches/0001-add-pve-specific-js-code.patch
+++ b/debian/patches/0001-add-pve-specific-js-code.patch
@@ -1,7 +1,7 @@
-From ad6975daaeee0798955f1d8b36d567975f4cbae5 Mon Sep 17 00:00:00 2001
+From e951a2eb247fbdf645a05f102125591f489d4328 Mon Sep 17 00:00:00 2001
 From: Dominik Csapak <d.csapak at proxmox.com>
 Date: Tue, 13 Dec 2016 16:11:35 +0100
-Subject: [PATCH 1/9] add pve specific js code
+Subject: [PATCH 01/12] add pve specific js code
 
 this adds a es6 module 'PVEUI' which we use for defining the pve related
 methods (API2Request, etc.)
@@ -18,7 +18,7 @@ Signed-off-by: Dominik Csapak <d.csapak at proxmox.com>
 
 diff --git a/app/pve.js b/app/pve.js
 new file mode 100644
-index 0000000..668835a
+index 0000000..701fbb4
 --- /dev/null
 +++ b/app/pve.js
 @@ -0,0 +1,417 @@
@@ -440,7 +440,7 @@ index 0000000..668835a
 +    },
 +};
 diff --git a/app/ui.js b/app/ui.js
-index 73ad2b4..def0eda 100644
+index 11705a0..1a2d2b2 100644
 --- a/app/ui.js
 +++ b/app/ui.js
 @@ -20,6 +20,7 @@ import keysyms from "../core/input/keysymdef.js";
@@ -449,9 +449,9 @@ index 73ad2b4..def0eda 100644
  import * as WebUtil from "./webutil.js";
 +import PVEUI from "./pve.js";
  
- const UI = {
+ var UI = {
  
-@@ -63,6 +64,7 @@ const UI = {
+@@ -63,6 +64,7 @@ var UI = {
      // Render default UI and initialize settings menu
      start: function(callback) {
  
@@ -459,7 +459,7 @@ index 73ad2b4..def0eda 100644
          // Setup global variables first
          UI.isSafari = (navigator.userAgent.indexOf('Safari') !== -1 &&
                         navigator.userAgent.indexOf('Chrome') === -1);
-@@ -95,6 +97,9 @@ const UI = {
+@@ -95,6 +97,9 @@ var UI = {
          UI.addConnectionControlHandlers();
          UI.addClipboardHandlers();
          UI.addSettingsHandlers();
@@ -469,7 +469,7 @@ index 73ad2b4..def0eda 100644
          document.getElementById("noVNC_status")
              .addEventListener('click', UI.hideStatus);
  
-@@ -103,11 +108,6 @@ const UI = {
+@@ -103,11 +108,6 @@ var UI = {
  
          UI.openControlbar();
  
@@ -481,7 +481,7 @@ index 73ad2b4..def0eda 100644
          UI.updateViewClip();
  
          UI.updateVisualState();
-@@ -115,17 +115,13 @@ const UI = {
+@@ -115,17 +115,13 @@ var UI = {
          document.getElementById('noVNC_setting_host').focus();
          document.documentElement.classList.remove("noVNC_loading");
  
@@ -505,7 +505,7 @@ index 73ad2b4..def0eda 100644
      },
  
      initFullscreen: function() {
-@@ -170,10 +166,14 @@ const UI = {
+@@ -170,10 +166,14 @@ var UI = {
          /* Populate the controls if defaults are provided in the URL */
          UI.initSetting('host', window.location.hostname);
          UI.initSetting('port', port);
@@ -522,7 +522,7 @@ index 73ad2b4..def0eda 100644
          UI.initSetting('shared', true);
          UI.initSetting('view_only', false);
          UI.initSetting('path', 'websockify');
-@@ -434,6 +434,7 @@ const UI = {
+@@ -434,6 +434,7 @@ var UI = {
              case 'connected':
                  UI.connected = true;
                  UI.inhibit_reconnect = false;
@@ -530,7 +530,7 @@ index 73ad2b4..def0eda 100644
                  document.documentElement.classList.add("noVNC_connected");
                  if (rfb && rfb.get_encrypt()) {
                      msg = _("Connected (encrypted) to ") + UI.desktopName;
-@@ -449,6 +450,10 @@ const UI = {
+@@ -449,6 +450,10 @@ var UI = {
                  break;
              case 'disconnected':
                  UI.showStatus(_("Disconnected"));
@@ -541,7 +541,7 @@ index 73ad2b4..def0eda 100644
                  break;
              default:
                  msg = "Invalid UI state";
-@@ -861,6 +866,7 @@ const UI = {
+@@ -873,6 +878,7 @@ var UI = {
          UI.closeXvpPanel();
          UI.closeClipboardPanel();
          UI.closeExtraKeys();
@@ -549,7 +549,7 @@ index 73ad2b4..def0eda 100644
      },
  
  /* ------^-------
-@@ -1033,9 +1039,15 @@ const UI = {
+@@ -1045,9 +1051,15 @@ var UI = {
              password = WebUtil.getConfigVar('password');
          }
  
@@ -568,7 +568,7 @@ index 73ad2b4..def0eda 100644
  
          if ((!host) || (!port)) {
              var msg = _("Must set host and port");
-@@ -1608,9 +1620,36 @@ const UI = {
+@@ -1623,9 +1635,36 @@ var UI = {
  /* ------^-------
   *   /EXTRA KEYS
   * ==============
@@ -606,7 +606,7 @@ index 73ad2b4..def0eda 100644
      setMouseButton: function(num) {
          var view_only = UI.rfb.get_view_only();
          if (UI.rfb && !view_only) {
-@@ -1658,8 +1697,16 @@ const UI = {
+@@ -1673,8 +1712,16 @@ var UI = {
      },
  
      updateSessionSize: function(rfb, width, height) {
@@ -625,7 +625,7 @@ index 73ad2b4..def0eda 100644
      },
  
      fixScrollbars: function() {
-@@ -1704,7 +1751,7 @@ const UI = {
+@@ -1719,7 +1766,7 @@ var UI = {
      },
  
  /* ------^-------
diff --git a/debian/patches/0002-change-scaling-when-toggling-fullscreen.patch b/debian/patches/0002-change-scaling-when-toggling-fullscreen.patch
index 5bf888b..3e3af37 100644
--- a/debian/patches/0002-change-scaling-when-toggling-fullscreen.patch
+++ b/debian/patches/0002-change-scaling-when-toggling-fullscreen.patch
@@ -1,7 +1,7 @@
-From c1073cb0f19ebd64f6ee4b221b5aa06a2f8e5c99 Mon Sep 17 00:00:00 2001
+From 99c632c07d42a0a2bd84bcfb1b80eba89fc6d192 Mon Sep 17 00:00:00 2001
 From: Dominik Csapak <d.csapak at proxmox.com>
 Date: Thu, 11 May 2017 10:34:10 +0200
-Subject: [PATCH 2/9] change scaling when toggling fullscreen
+Subject: [PATCH 02/12] change scaling when toggling fullscreen
 
 when activating fullscreen, we change the scaling to 'scale',
 and changing it back when leaving fullscreen
@@ -12,10 +12,10 @@ Signed-off-by: Dominik Csapak <d.csapak at proxmox.com>
  1 file changed, 11 insertions(+)
 
 diff --git a/app/ui.js b/app/ui.js
-index def0eda..d4b0291 100644
+index 1a2d2b2..4444f9c 100644
 --- a/app/ui.js
 +++ b/app/ui.js
-@@ -1174,6 +1174,15 @@ const UI = {
+@@ -1189,6 +1189,15 @@ var UI = {
              } else if (document.msExitFullscreen) {
                  document.msExitFullscreen();
              }
@@ -31,7 +31,7 @@ index def0eda..d4b0291 100644
          } else {
              if (document.documentElement.requestFullscreen) {
                  document.documentElement.requestFullscreen();
-@@ -1184,6 +1193,8 @@ const UI = {
+@@ -1199,6 +1208,8 @@ var UI = {
              } else if (document.body.msRequestFullscreen) {
                  document.body.msRequestFullscreen();
              }
diff --git a/debian/patches/0003-add-pve-style.patch b/debian/patches/0003-add-pve-style.patch
index 394f8dd..b4c26d8 100644
--- a/debian/patches/0003-add-pve-style.patch
+++ b/debian/patches/0003-add-pve-style.patch
@@ -1,7 +1,7 @@
-From 1cdfeafd561bfe4d9acb7ef8a838d82c64f9c1e5 Mon Sep 17 00:00:00 2001
+From fad4250c1f8b4028f66ec3d2bceff86532a8e2ee Mon Sep 17 00:00:00 2001
 From: Dominik Csapak <d.csapak at proxmox.com>
 Date: Tue, 13 Dec 2016 16:03:41 +0100
-Subject: [PATCH 3/9] add pve style
+Subject: [PATCH 03/12] add pve style
 
 this adds the custom pve style (based on black.css)
 
@@ -59,7 +59,7 @@ index 0000000..35002fe
 +    display: none;
 +}
 diff --git a/vnc.html b/vnc.html
-index 6cb4be4..98a9952 100644
+index 0109ce6..ff21ab6 100644
 --- a/vnc.html
 +++ b/vnc.html
 @@ -53,6 +53,7 @@
diff --git a/debian/patches/0004-remove-vnc-logos.patch b/debian/patches/0004-remove-vnc-logos.patch
index 2577119..bd5c8f3 100644
--- a/debian/patches/0004-remove-vnc-logos.patch
+++ b/debian/patches/0004-remove-vnc-logos.patch
@@ -1,7 +1,7 @@
-From a28b283a224990e1b46f304d9a2067afa7633d63 Mon Sep 17 00:00:00 2001
+From 0fe0a254c0f052e204d711025b94050837e377d8 Mon Sep 17 00:00:00 2001
 From: Dominik Csapak <d.csapak at proxmox.com>
 Date: Fri, 20 Jan 2017 10:35:05 +0100
-Subject: [PATCH 4/9] remove vnc logos
+Subject: [PATCH 04/12] remove vnc logos
 
 to show the pve icon instead
 
@@ -11,7 +11,7 @@ Signed-off-by: Dominik Csapak <d.csapak at proxmox.com>
  1 file changed, 24 deletions(-)
 
 diff --git a/vnc.html b/vnc.html
-index 98a9952..cd8e594 100644
+index ff21ab6..cbd94b5 100644
 --- a/vnc.html
 +++ b/vnc.html
 @@ -23,34 +23,10 @@
diff --git a/debian/patches/0005-change-src-directory-for-images-js-files.patch b/debian/patches/0005-change-src-directory-for-images-js-files.patch
index 43847c8..6d92b8c 100644
--- a/debian/patches/0005-change-src-directory-for-images-js-files.patch
+++ b/debian/patches/0005-change-src-directory-for-images-js-files.patch
@@ -1,7 +1,7 @@
-From 0b7322fc05361366fc4e24e6d5b9d8e2254ace40 Mon Sep 17 00:00:00 2001
+From 4b89690944334714499b183787ba74d630aeaefe Mon Sep 17 00:00:00 2001
 From: Dominik Csapak <d.csapak at proxmox.com>
 Date: Tue, 17 Jan 2017 17:24:03 +0100
-Subject: [PATCH 5/9] change src directory for images/js files
+Subject: [PATCH 05/12] change src directory for images/js files
 
 since they will be in /novnc/
 also change the directory in the build script
@@ -14,10 +14,10 @@ Signed-off-by: Dominik Csapak <d.csapak at proxmox.com>
  3 files changed, 30 insertions(+), 30 deletions(-)
 
 diff --git a/app/ui.js b/app/ui.js
-index d4b0291..d32c789 100644
+index 4444f9c..7bb80c6 100644
 --- a/app/ui.js
 +++ b/app/ui.js
-@@ -1771,7 +1771,7 @@ const UI = {
+@@ -1786,7 +1786,7 @@ var UI = {
  var LINGUAS = ["de", "el", "nl", "sv"];
  l10n.setup(LINGUAS);
  if (l10n.language !== "en" && l10n.dictionary === undefined) {
@@ -40,7 +40,7 @@ index 990fb4d..0f44e1c 100644
          noCopyOverride: () => {},
      },
 diff --git a/vnc.html b/vnc.html
-index cd8e594..23fc0e4 100644
+index cbd94b5..5d197b1 100644
 --- a/vnc.html
 +++ b/vnc.html
 @@ -28,7 +28,7 @@
@@ -207,7 +207,7 @@ index cd8e594..23fc0e4 100644
                  id="noVNC_disconnect_button" class="noVNC_button"
                  title="Disconnect" />
  
-@@ -266,7 +266,7 @@
+@@ -268,7 +268,7 @@
          <div id="noVNC_connect_dlg">
              <div class="noVNC_logo" translate="no"><span>no</span>VNC</div>
              <div id="noVNC_connect_button"><div>
@@ -216,7 +216,7 @@ index cd8e594..23fc0e4 100644
              </div></div>
          </div>
      </div>
-@@ -314,8 +314,8 @@
+@@ -316,8 +316,8 @@
      </div>
  
      <audio id="noVNC_bell">
diff --git a/debian/patches/0006-add-pve-vnc-commands.patch b/debian/patches/0006-add-pve-vnc-commands.patch
index 3b83959..54b7a22 100644
--- a/debian/patches/0006-add-pve-vnc-commands.patch
+++ b/debian/patches/0006-add-pve-vnc-commands.patch
@@ -1,7 +1,7 @@
-From 1a042fcad1f9242cafbb589a1da5b8b270e8b8bb Mon Sep 17 00:00:00 2001
+From ca9a861e5c5bc5d7823da1c40e21d21a29d91fd2 Mon Sep 17 00:00:00 2001
 From: Dominik Csapak <d.csapak at proxmox.com>
 Date: Fri, 20 Jan 2017 10:35:43 +0100
-Subject: [PATCH 6/9] add pve vnc commands
+Subject: [PATCH 06/12] add pve vnc commands
 
 Signed-off-by: Dominik Csapak <d.csapak at proxmox.com>
 ---
@@ -9,7 +9,7 @@ Signed-off-by: Dominik Csapak <d.csapak at proxmox.com>
  1 file changed, 20 insertions(+)
 
 diff --git a/vnc.html b/vnc.html
-index 23fc0e4..e789d04 100644
+index 5d197b1..a551df2 100644
 --- a/vnc.html
 +++ b/vnc.html
 @@ -165,6 +165,26 @@
diff --git a/debian/patches/0007-add-replaceable-snippets-in-vnc.html.patch b/debian/patches/0007-add-replaceable-snippets-in-vnc.html.patch
index 6ea98a1..6abd0b4 100644
--- a/debian/patches/0007-add-replaceable-snippets-in-vnc.html.patch
+++ b/debian/patches/0007-add-replaceable-snippets-in-vnc.html.patch
@@ -1,7 +1,7 @@
-From c3d885b78fd816201ed485eb7a681ce1fcf3a122 Mon Sep 17 00:00:00 2001
+From 96224f52fa6cf7171d1c4cb547e1413413b9eb09 Mon Sep 17 00:00:00 2001
 From: Dominik Csapak <d.csapak at proxmox.com>
 Date: Fri, 20 Jan 2017 10:16:09 +0100
-Subject: [PATCH 7/9] add replaceable snippets in vnc.html
+Subject: [PATCH 07/12] add replaceable snippets in vnc.html
 
 so that we can insert the username/csrftoken via search/replace
 
@@ -11,7 +11,7 @@ Signed-off-by: Dominik Csapak <d.csapak at proxmox.com>
  1 file changed, 7 insertions(+), 1 deletion(-)
 
 diff --git a/vnc.html b/vnc.html
-index e789d04..1423f78 100644
+index a551df2..957fe85 100644
 --- a/vnc.html
 +++ b/vnc.html
 @@ -15,7 +15,7 @@
diff --git a/debian/patches/0008-focus-canvas-after-load.patch b/debian/patches/0008-focus-canvas-after-load.patch
index 4c38bbb..d1e5d88 100644
--- a/debian/patches/0008-focus-canvas-after-load.patch
+++ b/debian/patches/0008-focus-canvas-after-load.patch
@@ -1,7 +1,7 @@
-From b97c51d6a2ca70a5e60209cd7ab16563455b8d13 Mon Sep 17 00:00:00 2001
+From 91d4b0a58a2e63833fd318556baa4c4e316e733c Mon Sep 17 00:00:00 2001
 From: Dominik Csapak <d.csapak at proxmox.com>
 Date: Wed, 14 Dec 2016 08:40:02 +0100
-Subject: [PATCH 8/9] focus canvas after load
+Subject: [PATCH 08/12] focus canvas after load
 
 or else in some browsers, the canvas does not get the focus after
 loading in an iframe
@@ -13,10 +13,10 @@ Signed-off-by: Dominik Csapak <d.csapak at proxmox.com>
  2 files changed, 3 insertions(+), 1 deletion(-)
 
 diff --git a/app/ui.js b/app/ui.js
-index d32c789..ed2897b 100644
+index 7bb80c6..62c23df 100644
 --- a/app/ui.js
 +++ b/app/ui.js
-@@ -442,6 +442,8 @@ const UI = {
+@@ -442,6 +442,8 @@ var UI = {
                      msg = _("Connected (unencrypted) to ") + UI.desktopName;
                  }
                  UI.showStatus(msg);
@@ -26,10 +26,10 @@ index d32c789..ed2897b 100644
              case 'disconnecting':
                  UI.connected = false;
 diff --git a/vnc.html b/vnc.html
-index 1423f78..ff70e0c 100644
+index 957fe85..c0ee84b 100644
 --- a/vnc.html
 +++ b/vnc.html
-@@ -332,7 +332,7 @@
+@@ -334,7 +334,7 @@
                  autocorrect="off" autocomplete="off" spellcheck="false"
                  mozactionhint="Enter"></textarea>
  
diff --git a/debian/patches/0009-decrease-animation-time.patch b/debian/patches/0009-decrease-animation-time.patch
index ff9ba1a..3c7d2f2 100644
--- a/debian/patches/0009-decrease-animation-time.patch
+++ b/debian/patches/0009-decrease-animation-time.patch
@@ -1,7 +1,7 @@
-From 3f13289a9f895b1ba86ad61ed085390bffda3e3a Mon Sep 17 00:00:00 2001
+From 17c3e2aac8981d2241085d87547e81e4ea067c92 Mon Sep 17 00:00:00 2001
 From: Dominik Csapak <d.csapak at proxmox.com>
 Date: Fri, 20 Jan 2017 10:55:49 +0100
-Subject: [PATCH 9/9] decrease animation time
+Subject: [PATCH 09/12] decrease animation time
 
 because 0.5s is too long
 
@@ -11,10 +11,10 @@ Signed-off-by: Dominik Csapak <d.csapak at proxmox.com>
  1 file changed, 6 insertions(+), 6 deletions(-)
 
 diff --git a/app/styles/base.css b/app/styles/base.css
-index ce31cf7..6db4467 100644
+index 6e42d01..8f591b9 100644
 --- a/app/styles/base.css
 +++ b/app/styles/base.css
-@@ -283,7 +283,7 @@ select:active {
+@@ -285,7 +285,7 @@ select:active {
    position: fixed;
    z-index: 10;
  
@@ -23,7 +23,7 @@ index ce31cf7..6db4467 100644
  
    /* Edge misrenders animations wihthout this */
    transform: translateX(0);
-@@ -300,7 +300,7 @@ select:active {
+@@ -302,7 +302,7 @@ select:active {
    position: relative;
    left: -100%;
  
@@ -32,7 +32,7 @@ index ce31cf7..6db4467 100644
  
    background-color: rgb(110, 132, 163);
    border-radius: 0 10px 10px 0;
-@@ -318,7 +318,7 @@ select:active {
+@@ -320,7 +320,7 @@ select:active {
    height: 100%;
    width: 30px;
    left: -30px;
@@ -41,7 +41,7 @@ index ce31cf7..6db4467 100644
  }
  #noVNC_control_bar.noVNC_open::before {
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.5);
-@@ -352,7 +352,7 @@ select:active {
+@@ -354,7 +354,7 @@ select:active {
  }
  #noVNC_control_bar_handle:after {
    content: "";
@@ -50,7 +50,7 @@ index ce31cf7..6db4467 100644
    background: url("../images/handle.svg");
    position: absolute;
    top: 22px; /* (50px-6px)/2 */
-@@ -440,7 +440,7 @@ select:active {
+@@ -472,7 +472,7 @@ select:active {
  .noVNC_panel {
    transform: translateX(25px);
  
@@ -59,7 +59,7 @@ index ce31cf7..6db4467 100644
  
    max-height: 100vh; /* Chrome is buggy with 100% */
    overflow-x: hidden;
-@@ -617,7 +617,7 @@ select:active {
+@@ -649,7 +649,7 @@ select:active {
  
    cursor: pointer;
  
diff --git a/debian/patches/0010-use-only-app.js.patch b/debian/patches/0010-use-only-app.js.patch
index e225250..222400b 100644
--- a/debian/patches/0010-use-only-app.js.patch
+++ b/debian/patches/0010-use-only-app.js.patch
@@ -1,7 +1,7 @@
-From 6d3945c7c0b680a871d789215659f04e42acd6e7 Mon Sep 17 00:00:00 2001
+From 0ecefd1fe34cdf3a8ec540a3a4c5288ceb7e538b Mon Sep 17 00:00:00 2001
 From: Dominik Csapak <d.csapak at proxmox.com>
 Date: Tue, 16 May 2017 10:36:15 +0200
-Subject: [PATCH 10/10] use only app.js
+Subject: [PATCH 10/12] use only app.js
 
 because we will use the commonjs version,
 we only need to use the generated app.js
@@ -12,7 +12,7 @@ Signed-off-by: Dominik Csapak <d.csapak at proxmox.com>
  1 file changed, 1 insertion(+), 16 deletions(-)
 
 diff --git a/vnc.html b/vnc.html
-index ff70e0c..40c726b 100644
+index c0ee84b..cb5fb47 100644
 --- a/vnc.html
 +++ b/vnc.html
 @@ -46,22 +46,7 @@
diff --git a/debian/patches/0011-add-width-and-height-to-vncproxy-call-in-console-tab.patch b/debian/patches/0011-add-width-and-height-to-vncproxy-call-in-console-tab.patch
index ed1f4c3..e561587 100644
--- a/debian/patches/0011-add-width-and-height-to-vncproxy-call-in-console-tab.patch
+++ b/debian/patches/0011-add-width-and-height-to-vncproxy-call-in-console-tab.patch
@@ -1,7 +1,7 @@
-From d3da00817202a762de5bcd7cf14c38dceb30a301 Mon Sep 17 00:00:00 2001
+From 29f717cc0778483cee52145cb1262921e350a736 Mon Sep 17 00:00:00 2001
 From: Dominik Csapak <d.csapak at proxmox.com>
 Date: Fri, 19 May 2017 08:53:56 +0200
-Subject: [PATCH 11/11] add width and height to vncproxy call in console tab
+Subject: [PATCH 11/12] add width and height to vncproxy call in console tab
 
 to set the resolution we want
 
@@ -11,7 +11,7 @@ Signed-off-by: Dominik Csapak <d.csapak at proxmox.com>
  1 file changed, 7 insertions(+)
 
 diff --git a/app/pve.js b/app/pve.js
-index 668835a..c10df4e 100644
+index 701fbb4..1c31e8d 100644
 --- a/app/pve.js
 +++ b/app/pve.js
 @@ -52,6 +52,13 @@ export default function PVEUI(UI){
diff --git a/debian/patches/0012-change-higlight-color-for-pressed-buttons.patch b/debian/patches/0012-change-higlight-color-for-pressed-buttons.patch
index 9e7af7d..36eed93 100644
--- a/debian/patches/0012-change-higlight-color-for-pressed-buttons.patch
+++ b/debian/patches/0012-change-higlight-color-for-pressed-buttons.patch
@@ -1,4 +1,4 @@
-From 486e178afc6db131a0b24b18442e5b9fb04f37b0 Mon Sep 17 00:00:00 2001
+From 50460c54cd5be8dd6da8d03e76a07e8087e6721f Mon Sep 17 00:00:00 2001
 From: Dominik Csapak <d.csapak at proxmox.com>
 Date: Tue, 6 Jun 2017 12:03:49 +0200
 Subject: [PATCH 12/12] change higlight color for pressed buttons
-- 
2.11.0





More information about the pve-devel mailing list