This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2goclient. from 40f3d5c src/x2goutils.cpp: don't try to wrap absolute paths as legacy resource URIs in wrap_legacy_resource_URIs (). Fixes: #910. new be1355b {res/img/svg/,res/resources.qrc}: add new file hamburger.svg, a custom-created hamburger icon. new 585fb93 src/sessionbutton.cpp: replace drop down menu button on session buttons again with the custom-created hamburger icon. The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/changelog | 5 +++++ res/img/svg/hamburger.svg | 18 ++++++++++++++++++ res/resources.qrc | 1 + src/sessionbutton.cpp | 4 ++-- 4 files changed, 26 insertions(+), 2 deletions(-) create mode 100644 res/img/svg/hamburger.svg -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit be1355bb7dd4753a8943f31ce5cd0458def4ee3f Author: Mihai Moldovan <ionic@ionic.de> Date: Tue Jan 17 16:18:28 2017 +0100 {res/img/svg/,res/resources.qrc}: add new file hamburger.svg, a custom-created hamburger icon. --- debian/changelog | 2 ++ res/img/svg/hamburger.svg | 18 ++++++++++++++++++ res/resources.qrc | 1 + 3 files changed, 21 insertions(+) diff --git a/debian/changelog b/debian/changelog index a88869f..ad2c986 100644 --- a/debian/changelog +++ b/debian/changelog @@ -15,6 +15,8 @@ x2goclient (4.0.5.3-0x2go1) UNRELEASED; urgency=medium ISO-8859-1 not just on Linux but also other platforms. Fixes: #1124. - src/x2goutils.cpp: don't try to wrap absolute paths as legacy resource URIs in wrap_legacy_resource_URIs (). Fixes: #910. + - {res/img/svg/,res/resources.qrc}: add new file hamburger.svg, a + custom-created hamburger icon. [ Bernard Cafarelli ] * New upstream version (4.0.5.3): diff --git a/res/img/svg/hamburger.svg b/res/img/svg/hamburger.svg new file mode 100644 index 0000000..3721436 --- /dev/null +++ b/res/img/svg/hamburger.svg @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg width="73.470627mm" height="47.471764mm" version="1.1" viewBox="0 0 73.470627 47.471764" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> + <metadata> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + <dc:title/> + </cc:Work> + </rdf:RDF> + </metadata> + <g transform="translate(-49.136902,-55.095238)" fill="#1a53d8"> + <rect x="49.136902" y="55.095238" width="73.470627" height="12.798185" ry="6.3990927"/> + <rect x="49.136902" y="72.431641" width="73.470627" height="12.798185" ry="6.3990927"/> + <rect x="49.136902" y="89.768814" width="73.470627" height="12.798185" ry="6.3990927"/> + </g> +</svg> diff --git a/res/resources.qrc b/res/resources.qrc index 945d304..478bb55 100644 --- a/res/resources.qrc +++ b/res/resources.qrc @@ -10,6 +10,7 @@ <file>img/svg/folder.svg</file> <file>img/svg/folder_grey.svg</file> <file>img/svg/sessionbut_grey.svg</file> + <file>img/svg/hamburger.svg</file> <file>img/png/ico.png</file> <file>img/png/ico_mini.png</file> <file>img/png/sess_ico.png</file> -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit 585fb93b539fb1d3522f5c63b91be4f3e33b18d7 Author: Mihai Moldovan <ionic@ionic.de> Date: Tue Jan 17 16:40:55 2017 +0100 src/sessionbutton.cpp: replace drop down menu button on session buttons again with the custom-created hamburger icon. Also fix positioning issues in mini mode. --- debian/changelog | 3 +++ src/sessionbutton.cpp | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index ad2c986..a97d64a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -17,6 +17,9 @@ x2goclient (4.0.5.3-0x2go1) UNRELEASED; urgency=medium URIs in wrap_legacy_resource_URIs (). Fixes: #910. - {res/img/svg/,res/resources.qrc}: add new file hamburger.svg, a custom-created hamburger icon. + - src/sessionbutton.cpp: replace drop down menu button on session buttons + again with the custom-created hamburger icon. Also fix positioning + issues in mini mode. [ Bernard Cafarelli ] * New upstream version (4.0.5.3): diff --git a/src/sessionbutton.cpp b/src/sessionbutton.cpp index 34cd0d5..a8cb919 100644 --- a/src/sessionbutton.cpp +++ b/src/sessionbutton.cpp @@ -121,7 +121,7 @@ SessionButton::SessionButton ( ONMainWindow* mw,QWidget *parent, QString id ) editBut=new QPushButton ( this ); editBut->setMouseTracking ( true ); connect ( editBut,SIGNAL ( pressed() ),this,SLOT ( slotShowMenu() ) ); - editBut->setIcon ( QIcon ( par->iconsPath ( "/32x32/preferences.png" ) ) ); + editBut->setIcon ( QIcon ( par->iconsPath ( "/../svg/hamburger.svg" ) ) ); editBut->setIconSize ( QSize ( 32,32 ) ); editBut->setFixedSize ( 48,48 ); editBut->setFlat ( true ); @@ -181,7 +181,7 @@ SessionButton::SessionButton ( ONMainWindow* mw,QWidget *parent, QString id ) } else { - editBut->move ( 218,113 ); + editBut->move ( 194,89 ); sessName->move ( 64,11 ); sessStatus->hide(); serverIcon->move ( 66,44 ); -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git