<feed xmlns='http://www.w3.org/2005/Atom'>
<title>subsurface.git/packaging/ios, branch v4.8.6</title>
<subtitle>forked from https://github.com/subsurface/subsurface</subtitle>
<id>https://git.tsegers.com/subsurface.git/atom?h=v4.8.6</id>
<link rel='self' href='https://git.tsegers.com/subsurface.git/atom?h=v4.8.6'/>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/'/>
<updated>2019-04-04T17:24:01Z</updated>
<entry>
<title>facebook: remove the featute from the code base</title>
<updated>2019-04-04T17:24:01Z</updated>
<author>
<name>Lubomir I. Ivanov</name>
<email>neolit123@gmail.com</email>
</author>
<published>2019-02-01T02:11:25Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=e685e7e9de3ad93a32fe51d7a04407c574cc08be'/>
<id>urn:sha1:e685e7e9de3ad93a32fe51d7a04407c574cc08be</id>
<content type='text'>
Remove from:
- unit tests
- desktop widgets
- preferences
- core intergration
- cmakefiles
- build scripts
- icons
- docs

Also remove the plugins and social network integration.

Signed-off-by: Lubomir I. Ivanov &lt;neolit123@gmail.com&gt;
Signed-off-by: Dirk Hohndel &lt;dirk@hohndel.org&gt;
</content>
</entry>
<entry>
<title>core/tests: remove QSettings from testgitstorage</title>
<updated>2018-08-25T18:49:47Z</updated>
<author>
<name>jan Iversen</name>
<email>jani@apache.org</email>
</author>
<published>2018-08-19T12:00:39Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=5dd0981961f367054e38b164804548e7d9b16bfa'/>
<id>urn:sha1:5dd0981961f367054e38b164804548e7d9b16bfa</id>
<content type='text'>
update testgitstorage.cpp to use qPrefProxy and qPrefCloudStorage
remove core/prefs-macros.h since it is unused

Signed-off-by: Jan Iversen &lt;jani@apache.org&gt;
</content>
</entry>
<entry>
<title>core/tests: merge Animations and add vars. to qPrefDisplay</title>
<updated>2018-08-25T18:49:47Z</updated>
<author>
<name>jan Iversen</name>
<email>jani@apache.org</email>
</author>
<published>2018-08-20T09:51:48Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=ebc0e6d3f3edb90851295399dd22e081fe00a0c8'/>
<id>urn:sha1:ebc0e6d3f3edb90851295399dd22e081fe00a0c8</id>
<content type='text'>
Add class variable tooltip_position to qPrefDisplay
Add class variable lastDir to qPrefDisplay
qPrefDisplay is updated to use new qPrefPrivate functions
Adjust test cases incl. qml tests

qPrefAnimations only has 1 variable, that really is a display variable
Merge the variable into qPrefDisplay, to simplify setup (and avoid loading
extra page in qml).

correct theme to save in correct place, and make it a static
class variable

Signed-off-by: Jan Iversen &lt;jani@apache.org&gt;
</content>
</entry>
<entry>
<title>core: remove SettingsObjectWrapper.*</title>
<updated>2018-08-15T23:11:39Z</updated>
<author>
<name>jan Iversen</name>
<email>jani@apache.org</email>
</author>
<published>2018-08-15T09:58:42Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=da4ced9bdf51fe12ba43b223e6b977d908106637'/>
<id>urn:sha1:da4ced9bdf51fe12ba43b223e6b977d908106637</id>
<content type='text'>
remove unused files SettingsObjectWrapper.*

Signed-off-by: Jan Iversen &lt;jani@apache.org&gt;
</content>
</entry>
<entry>
<title>core: create qPrefGeneral from SettingsObjectWrapper</title>
<updated>2018-08-14T16:09:06Z</updated>
<author>
<name>jan Iversen</name>
<email>jani@apache.org</email>
</author>
<published>2018-08-12T15:57:45Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=4a7864444ba5c90e4113e704a593d0fc4e6207b8'/>
<id>urn:sha1:4a7864444ba5c90e4113e704a593d0fc4e6207b8</id>
<content type='text'>
Update set/get functions to follow common name scheme:
- get function have same name as in struct diveComputer
- set function have set_&lt;name&gt;
- signal function have &lt;name&gt;_changed

one class one .h/.cpp is the C++ idiom. Having load/sync of each
variable in 1 functions (in contrast to the distributed way
SettingsObjectWrapper handles it) secures the same storage name
is used. Having the set/get/load/sync functions grouped together
makes it easier to get an overview.

REMARK: this commit only defines the class, it is not active in production

Signed-off-by: Jan Iversen &lt;jani@apache.org&gt;
</content>
</entry>
<entry>
<title>core: create qPrefPartialPressureGas from SettingsObjectWrapper</title>
<updated>2018-08-14T14:12:41Z</updated>
<author>
<name>jan Iversen</name>
<email>jani@apache.org</email>
</author>
<published>2018-08-10T19:18:40Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=881395318c6960acc59ed1dbb4eb3de5de473cfd'/>
<id>urn:sha1:881395318c6960acc59ed1dbb4eb3de5de473cfd</id>
<content type='text'>
Update set/get functions to follow common name scheme:
- get function have same name as in struct diveComputer
- set function have set_&lt;name&gt;
- signal function have &lt;name&gt;_changed

one class one .h/.cpp is the C++ idiom. Having load/sync of each
variable in 1 functions (in contrast to the distributed way
SettingsObjectWrapper handles it) secures the same storage name
is used. Having the set/get/load/sync functions grouped together
makes it easier to get an overview.

REMARK: this commit only defines the class, it is not active in production

Signed-off-by: Jan Iversen &lt;jani@apache.org&gt;
</content>
</entry>
<entry>
<title>core: create qPrefGeocoding from SettingsObjectWrapper</title>
<updated>2018-08-13T22:04:50Z</updated>
<author>
<name>jan Iversen</name>
<email>jani@apache.org</email>
</author>
<published>2018-08-06T17:25:06Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=3cd698361c3c1a8c8f5e455799d954e76f68d6bc'/>
<id>urn:sha1:3cd698361c3c1a8c8f5e455799d954e76f68d6bc</id>
<content type='text'>
Update set/get functions to follow common name scheme:
- get function have same name as in struct preferences
- set function have set_&lt;name&gt;
- signal function have &lt;name&gt;_changed

one class one .h/.cpp is the C++ idiom. Having load/sync of each
variable in 1 functions (in contrast to the distributed way
SettingsObjectWrapper handles it) secures the same storage name
is used. Having the set/get/load/sync functions grouped together
makes it easier to get an overview.

REMARK: this commit only defines the class, it is not active in production

Signed-off-by: Jan Iversen &lt;jani@apache.org&gt;
</content>
</entry>
<entry>
<title>core: create qPrefLanguage from SettingsObjectWrapper</title>
<updated>2018-08-13T18:49:32Z</updated>
<author>
<name>jan Iversen</name>
<email>jani@apache.org</email>
</author>
<published>2018-08-06T17:39:35Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=63fa532b1520bb18eff98c10ff708834939d8e59'/>
<id>urn:sha1:63fa532b1520bb18eff98c10ff708834939d8e59</id>
<content type='text'>
Update set/get functions to follow common name scheme:
- get function have same name as in struct preferences
- set function have set_&lt;name&gt;
- signal function have &lt;name&gt;_changed

one class one .h/.cpp is the C++ idiom. Having load/sync of each
variable in 1 functions (in contrast to the distributed way
SettingsObjectWrapper handles it) secures the same storage name
is used. Having the set/get/load/sync functions grouped together
makes it easier to get an overview.

REMARK: this commit only defines the class, it is not active in production

Signed-off-by: Jan Iversen &lt;jani@apache.org&gt;
</content>
</entry>
<entry>
<title>core: create qPrefLocationService from SettingsObjectWrapper</title>
<updated>2018-08-12T18:30:19Z</updated>
<author>
<name>jan Iversen</name>
<email>jani@apache.org</email>
</author>
<published>2018-08-05T13:59:28Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=2b11fd4cc8fca46152bc8c3c0b53658694cfd5bf'/>
<id>urn:sha1:2b11fd4cc8fca46152bc8c3c0b53658694cfd5bf</id>
<content type='text'>
Update set/get functions to follow common name scheme:
- get function have same name as in struct prefs
- set function have set_&lt;name&gt;
- signal function have &lt;name&gt;_changed

one class one .h/.cpp is the C++ idiom. Having load/sync of each
variable in 1 functions (in contrast to the distributed way
SettingsObjectWrapper handles it) secures the same storage name
is used. Having the set/get/load/sync functions grouped together
makes it easier to get an overview.

REMARK: this commit only defines the class, it is not active in production

Signed-off-by: Jan Iversen &lt;jani@apache.org&gt;
</content>
</entry>
<entry>
<title>core: create qPrefTechnicalDetails from SettingsObjectWrapper</title>
<updated>2018-08-12T14:36:10Z</updated>
<author>
<name>jan Iversen</name>
<email>jani@apache.org</email>
</author>
<published>2018-08-04T10:02:29Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=b98ba9ba94cb4d7293daa80139c6bd7ecda882fe'/>
<id>urn:sha1:b98ba9ba94cb4d7293daa80139c6bd7ecda882fe</id>
<content type='text'>
Update set/get functions to follow common name scheme:
- get function have same name as in struct diveComputer
- set function have set_&lt;name&gt;
- signal function have &lt;name&gt;_changed

one class one .h/.cpp is the C++ idiom. Having load/sync of each
variable in 1 functions (in contrast to the distributed way
SettingsObjectWrapper handles it) secures the same storage name
is used. Having the set/get/load/sync functions grouped together
makes it easier to get an overview.

REMARK: this commit only defines the class, it is not active in production

Signed-off-by: Jan Iversen &lt;jani@apache.org&gt;
</content>
</entry>
</feed>
