<feed xmlns='http://www.w3.org/2005/Atom'>
<title>subsurface.git/desktop-widgets, branch v4.7.1</title>
<subtitle>forked from https://github.com/subsurface/subsurface</subtitle>
<id>https://git.tsegers.com/subsurface.git/atom?h=v4.7.1</id>
<link rel='self' href='https://git.tsegers.com/subsurface.git/atom?h=v4.7.1'/>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/'/>
<updated>2017-10-22T10:09:05Z</updated>
<entry>
<title>mainwindow: disable fullscreen support by default</title>
<updated>2017-10-22T10:09:05Z</updated>
<author>
<name>Lubomir I. Ivanov</name>
<email>neolit123@gmail.com</email>
</author>
<published>2017-10-21T20:25:42Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=3f7900bf4e382cc57133e307efeaa3856c90c505'/>
<id>urn:sha1:3f7900bf4e382cc57133e307efeaa3856c90c505</id>
<content type='text'>
Require the FULLSCREEN_SUPPORT macro to enable fullscreen
support.

The toggle was added 4 years ago in Subsurface, but with the
current version of Qt 5.9.x, it's very buggy on Windows and
Ubuntu. While it's possible to make this work on Windows,
it seems to behave broken in different ways on different
versiosn of Ubuntu.

Fixes #705

Signed-off-by: Lubomir I. Ivanov &lt;neolit123@gmail.com&gt;
</content>
</entry>
<entry>
<title>Silence random warnings</title>
<updated>2017-10-20T21:25:18Z</updated>
<author>
<name>Dirk Hohndel</name>
<email>dirk@hohndel.org</email>
</author>
<published>2017-10-20T21:25:18Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=27c49fe3ad8d1314c5aee5eee34668a494e31aa8'/>
<id>urn:sha1:27c49fe3ad8d1314c5aee5eee34668a494e31aa8</id>
<content type='text'>
None of these seem to point to actual issues, so let's quiet them.

Signed-off-by: Dirk Hohndel &lt;dirk@hohndel.org&gt;
</content>
</entry>
<entry>
<title>Turn off Facebook debug messages unless verbose</title>
<updated>2017-10-20T10:51:51Z</updated>
<author>
<name>Dirk Hohndel</name>
<email>dirk@hohndel.org</email>
</author>
<published>2017-10-20T10:51:06Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=59bf217157461e3406f3b7a08ef64367e2223531'/>
<id>urn:sha1:59bf217157461e3406f3b7a08ef64367e2223531</id>
<content type='text'>
Signed-off-by: Dirk Hohndel &lt;dirk@hohndel.org&gt;
</content>
</entry>
<entry>
<title>Use displayed_dc instead of current_dc</title>
<updated>2017-10-19T18:57:02Z</updated>
<author>
<name>Robert C. Helling</name>
<email>helling@atdotde.de</email>
</author>
<published>2017-10-19T13:29:59Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=a422957cd6525b9753cafacfafdf1f3eef66870d'/>
<id>urn:sha1:a422957cd6525b9753cafacfafdf1f3eef66870d</id>
<content type='text'>
current_dc is a macro that determines the dive computer
based on the current dive number. When the planner is started
from an emtpy dive list, the dive number ends up being -1 and
that doesn't produce a valid dive computer. Use the divecomputer
of the displayed_dive instead. This is done via a macro that
can also be used in two other places. Without this patch, the
planner crashed when called on an empty dive list.

Signed-off-by: Robert C. Helling &lt;helling@atdotde.de&gt;
</content>
</entry>
<entry>
<title>Refuse to save an empty log to the clould</title>
<updated>2017-10-19T11:37:47Z</updated>
<author>
<name>Robert C. Helling</name>
<email>helling@atdotde.de</email>
</author>
<published>2017-10-19T11:28:40Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=e955099e6c6d168fd1e63b454644781e9d2b3dbc'/>
<id>urn:sha1:e955099e6c6d168fd1e63b454644781e9d2b3dbc</id>
<content type='text'>
This should prevent the problem of a user accidentally
"deleting" their dives in the cloud by hitting "save to cloud"
in the wrong moment.

Signed-off-by: Robert C. Helling &lt;helling@atdotde.de&gt;
</content>
</entry>
<entry>
<title>printoptions.cpp: correctly remember the last selected template</title>
<updated>2017-10-19T11:04:38Z</updated>
<author>
<name>Lubomir I. Ivanov</name>
<email>neolit123@gmail.com</email>
</author>
<published>2017-10-18T22:34:57Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=e9673938fb886a829e64ac595f96611dd14934fc'/>
<id>urn:sha1:e9673938fb886a829e64ac595f96611dd14934fc</id>
<content type='text'>
To find the last selected template index in the combo box,
comparing against `printOptions-&gt;p_template` would work fine,
except the `on_printTemplate_currentIndexChanged()` slot updates
`printOptions-&gt;p_template` each time QComboBox::addItem() is
called. This makes the `for` loop to add new combo box items
and find the index of the last selected template not possible.

To work around the issue, a local QString variable `storedTemplate`
is introduced and it does not change during the `for` loop.

Fixes #595

Signed-off-by: Lubomir I. Ivanov &lt;neolit123@gmail.com&gt;
</content>
</entry>
<entry>
<title>Tags for geo references: Nicer look, translations and warning message</title>
<updated>2017-10-17T10:12:07Z</updated>
<author>
<name>Stefan Fuchs</name>
<email>sfuchs@gmx.de</email>
</author>
<published>2017-10-16T13:52:13Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=884e690049f091f43567d6bf77634463af14cd93'/>
<id>urn:sha1:884e690049f091f43567d6bf77634463af14cd93</id>
<content type='text'>
For the geo references tags update the following:
- Nicer look w/o "Tags:" text and brackets when inside location UI
- Translation for "Tags:"
- Warning message when no dive site layout categories are set

Signed-off-by: Stefan Fuchs &lt;sfuchs@gmx.de&gt;
</content>
</entry>
<entry>
<title>Correct spelling for text in prefs georeferences</title>
<updated>2017-10-17T10:12:07Z</updated>
<author>
<name>Stefan Fuchs</name>
<email>sfuchs@gmx.de</email>
</author>
<published>2017-10-16T13:51:40Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=ac7830ea9147d23a623eb0c80279d6a6e42c95bc'/>
<id>urn:sha1:ac7830ea9147d23a623eb0c80279d6a6e42c95bc</id>
<content type='text'>
Signed-off-by: Stefan Fuchs &lt;sfuchs@gmx.de&gt;
</content>
</entry>
<entry>
<title>Connect finished signal of download thread only once</title>
<updated>2017-10-16T18:02:06Z</updated>
<author>
<name>bs</name>
<email>bstoeger@mail.tuwien.ac.at</email>
</author>
<published>2017-10-16T11:29:21Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=1fe76b02da3c7817fcad12bc994e9434e1d1d9ce'/>
<id>urn:sha1:1fe76b02da3c7817fcad12bc994e9434e1d1d9ce</id>
<content type='text'>
Connect finished signal of download thread only once in constructor of
DownloadFromDCWidget instead of every time the Download / Cancel / Retry
button is clicked.

Fixes minor nuisance: On repeated download attempts multiple massage
boxes were shown.

Signed-off-by: Berthold Stoeger &lt;bstoeger@mail.tuwien.ac.at&gt;
</content>
</entry>
<entry>
<title>Correctly name member function gasChange of DivePlannerPointsModel</title>
<updated>2017-10-16T15:14:17Z</updated>
<author>
<name>Stefan Fuchs</name>
<email>sfuchs@gmx.de</email>
</author>
<published>2017-10-11T20:03:03Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=bfe52f66892c9d015d717c8c64f60e36704ab182'/>
<id>urn:sha1:bfe52f66892c9d015d717c8c64f60e36704ab182</id>
<content type='text'>
Signed-off-by: Stefan Fuchs &lt;sfuchs@gmx.de&gt;
</content>
</entry>
</feed>
