<feed xmlns='http://www.w3.org/2005/Atom'>
<title>subsurface.git/qt-mobile/mobile-resources.qrc, branch v4.6.4</title>
<subtitle>forked from https://github.com/subsurface/subsurface</subtitle>
<id>https://git.tsegers.com/subsurface.git/atom/qt-mobile/mobile-resources.qrc?h=v4.6.4</id>
<link rel='self' href='https://git.tsegers.com/subsurface.git/atom/qt-mobile/mobile-resources.qrc?h=v4.6.4'/>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/'/>
<updated>2015-11-07T17:00:59Z</updated>
<entry>
<title>organize qml files in subdirectories</title>
<updated>2015-11-07T17:00:59Z</updated>
<author>
<name>Sebastian Kügler</name>
<email>sebas@kde.org</email>
</author>
<published>2015-11-06T23:39:06Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=aae4a326f4738be368088f0d0f7a91d75b02a9ad'/>
<id>urn:sha1:aae4a326f4738be368088f0d0f7a91d75b02a9ad</id>
<content type='text'>
This makes the organization of the qml files a bit more fine-grained, it
prevents mixing of .cpp and QML files, and also of what's compiled, and
what's included in the app as qrc data.

In particular:
- subsurface specific QML items go into the qml/ subdirectory
- theme and unit definitions to into qml/theme subdirectory (they
  already were located in a theme directory)
- generic components, such as our Label goes into qml/components

This facilitates sharing of functionality and identifying common stuff
better. Ideally, we can pull qml/theme and qml/components from a
standardized set at some point, so we don't have to maintain that code.

Signed-off-by: Sebastian Kügler &lt;sebas@kde.org&gt;
Signed-off-by: Dirk Hohndel &lt;dirk@hohndel.org&gt;
</content>
</entry>
<entry>
<title>Fix indentation in qrc file</title>
<updated>2015-11-07T17:00:30Z</updated>
<author>
<name>Sebastian Kügler</name>
<email>sebas@kde.org</email>
</author>
<published>2015-11-06T23:30:07Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=95ac4c4454aa49326500639aab839eb3d11efa87'/>
<id>urn:sha1:95ac4c4454aa49326500639aab839eb3d11efa87</id>
<content type='text'>
Tabs slippped in while the rest of the file uses spaces.

Signed-off-by: Sebastian Kügler &lt;sebas@kde.org&gt;
Signed-off-by: Dirk Hohndel &lt;dirk@hohndel.org&gt;
</content>
</entry>
<entry>
<title>Include label in the binary</title>
<updated>2015-11-06T22:05:56Z</updated>
<author>
<name>Sebastian Kügler</name>
<email>sebas@kde.org</email>
</author>
<published>2015-11-06T21:54:18Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=cdcb5c1603fb4f47833b3da920b4961a32bc3adb'/>
<id>urn:sha1:cdcb5c1603fb4f47833b3da920b4961a32bc3adb</id>
<content type='text'>
Signed-off-by: Sebastian Kügler &lt;sebas@kde.org&gt;
Signed-off-by: Dirk Hohndel &lt;dirk@hohndel.org&gt;
</content>
</entry>
<entry>
<title>Theme tweaks</title>
<updated>2015-11-06T22:05:45Z</updated>
<author>
<name>Sebastian Kügler</name>
<email>sebas@kde.org</email>
</author>
<published>2015-11-06T21:53:26Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=6d3a5e6bd4e0c449eca65fa832752452cc2b92f5'/>
<id>urn:sha1:6d3a5e6bd4e0c449eca65fa832752452cc2b92f5</id>
<content type='text'>
- gridUnits is dynamic again, using FontMetrics now
- Add a page to display some sizing-relevant details, so we can debug
  dpi problems a bit better on Android

Signed-off-by: Sebastian Kügler &lt;sebas@kde.org&gt;
Signed-off-by: Dirk Hohndel &lt;dirk@hohndel.org&gt;
</content>
</entry>
<entry>
<title>some changes from the upstream wip-branch</title>
<updated>2015-11-06T22:04:21Z</updated>
<author>
<name>Sebastian Kügler</name>
<email>sebas@kde.org</email>
</author>
<published>2015-11-06T21:50:52Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=5fb054a17c74fe4aed950e4173aa05f43f0355cf'/>
<id>urn:sha1:5fb054a17c74fe4aed950e4173aa05f43f0355cf</id>
<content type='text'>
- remove the singleton usage, this will need a bit more magic in the
  background. Not a huge problem since we're only using one instance
  anyway, and the object itself is rather light
- hardcode gridUnit for now. I'd like to use TextMetrics or FontMetrics
  there directly, but I'm not sure we can depend on Qt 5.4 and QtQuick
  2.5.

Signed-off-by: Sebastian Kügler &lt;sebas@kde.org&gt;
Signed-off-by: Dirk Hohndel &lt;dirk@hohndel.org&gt;
</content>
</entry>
<entry>
<title>QML-UI: Layout improvements in app list and details header</title>
<updated>2015-10-09T19:51:59Z</updated>
<author>
<name>Sebastian Kügler</name>
<email>sebas@kde.org</email>
</author>
<published>2015-10-09T03:05:23Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=38e1dc158922bcf818683f0cf58293b410421c80'/>
<id>urn:sha1:38e1dc158922bcf818683f0cf58293b410421c80</id>
<content type='text'>
- fix spacing and sizing in TopBar
- use an anchor layout for the delegate and split out labels and values: this
  allows more uniform alignment
- add the subsurface mobile icon to the first page
- various visual touch-ups to taste

Signed-off-by: Sebastian Kügler &lt;sebas@kde.org&gt;
Signed-off-by: Dirk Hohndel &lt;dirk@hohndel.org&gt;
</content>
</entry>
<entry>
<title>QML-UI: basics for theming and hi-dpi support</title>
<updated>2015-10-09T19:51:36Z</updated>
<author>
<name>Sebastian Kügler</name>
<email>sebas@kde.org</email>
</author>
<published>2015-10-08T23:57:10Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=431b5e07fe6eaa1383b86a5ab16953897f642ebf'/>
<id>urn:sha1:431b5e07fe6eaa1383b86a5ab16953897f642ebf</id>
<content type='text'>
- Theme: For theming, we're just defining some colors centrally for now
- Units: This object provides dpi-corrected sizing in the form of
  gridUnit. The idea is to base gridUnit on the rendered font size, so
  the ui scales with text size. As this interpolates font size and dpi,
  the sizing is rather responsive.

These are the basics, now we can kill lots of hardcoded pixel values.

Signed-off-by: Sebastian Kügler &lt;sebas@kde.org&gt;
Signed-off-by: Dirk Hohndel &lt;dirk@hohndel.org&gt;
</content>
</entry>
<entry>
<title>QML UI: Add ViewLog menu</title>
<updated>2015-08-31T22:49:09Z</updated>
<author>
<name>Grace Karanja</name>
<email>gracie.karanja89@gmail.com</email>
</author>
<published>2015-08-19T07:18:26Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=9e53b3082c1641db91c3c229b94b7146f18fd955'/>
<id>urn:sha1:9e53b3082c1641db91c3c229b94b7146f18fd955</id>
<content type='text'>
Add a menu entry to show the application log.

Signed-off-by: Grace Karanja &lt;gracie.karanja89@gmail.com&gt;
</content>
</entry>
<entry>
<title>QML UI: Add download from divecomputer window</title>
<updated>2015-07-23T11:46:52Z</updated>
<author>
<name>Grace Karanja</name>
<email>gracie.karanja89@gmail.com</email>
</author>
<published>2015-07-23T11:46:02Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=e93bb9230f19a054888fc6db09f3757412ab7cc5'/>
<id>urn:sha1:e93bb9230f19a054888fc6db09f3757412ab7cc5</id>
<content type='text'>
Add a window to be used when downloading from dive computers.

Signed-off-by: Grace Karanja &lt;gracie.karanja89@gmail.com&gt;
</content>
</entry>
<entry>
<title>QML UI: Move DiveDetails to the StackView</title>
<updated>2015-07-22T06:53:19Z</updated>
<author>
<name>Grace Karanja</name>
<email>gracie.karanja89@gmail.com</email>
</author>
<published>2015-07-21T12:00:29Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=ab44c789939fc4472dfc8106b9cb5f709cbe7e1c'/>
<id>urn:sha1:ab44c789939fc4472dfc8106b9cb5f709cbe7e1c</id>
<content type='text'>
Add a DiveDetails.qml to hold the dive details, and display it in
the stack view when the user taps on a dive.

Signed-off-by: Grace Karanja &lt;gracie.karanja89@gmail.com&gt;
</content>
</entry>
</feed>
