mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
4f3b26f9b6
Dives for the seac action computer are imported by the seacsync program into two tables in an sqlite3 database. The dive information is read from the headers_dive table. The dive_data table is then queried for each dive to get samples. The seac action computer is the only current supported computer by the seacsync program. It only supports two gas mixes, so the parser will toggle between two cylinders whenever it detects a change in the active O2 mix. Dive start time is stored in UTC with a timezone offset. A helper function to read this was added to qthelper. Default cases have been added to some switch statements to assist in future development for other dive types and salinity. Example database has been added to ./dives/TestDiveSeacSync.db Signed-off-by: James Wobser <james.wobser@gmail.com> |
||
---|---|---|
.. | ||
storeIcon.xcassets | ||
build.sh | ||
deployment.pri | ||
dummy.qml | ||
Info.plist.in | ||
iPhoneDeviceCMakeToolchain | ||
iPhoneSimulatorCMakeToolchain | ||
qml.qrc | ||
README | ||
Subsurface-mobile.pro | ||
SubsurfaceMobileLaunch.xib | ||
translations.qrc |
Tool repo to crosscompile subsurface for iOS -------------------------------------------- Dependencies: - This only works on a Mac - XCode with iOS SDK and Qt5.13 or later - cmake Follow the instruction in: <repo>/INSTALL and then continue here: 1) cd <repo>/packaging/ios 2) export IOS_BUNDLE_PRODUCT_IDENTIFIER="<your apple id>.subsurface-divelog.subsurface-mobile" 3) ./build.sh note: this builds all dependencies and is only needed first time it currently build for armv7 arm64 and x86_64 (simulator) 1) cd <repo>/.. 2) Launch QtCreator and open subsurface/packaging/ios/Subsurface-mobile.pro 3) Build Subsurface-mobile in QtCreator - you can build for the simulator and for a device and even deploy to a connected device. Everything up to here you can do without paying for an Apple Developer account. In order to create a bundle that can be distributed things get even more complex and an Apple Developer account definitely is necessary in order for you to be able to sign the bundle. The easiest way to do that appears to be to open the Subsurface-mobile.xcodeproj in the build directory that QtCreator used in Xcode and to create an archive there. WARNING: ======== The version number used in the Subsurface-mobile app is created in step 3. So whenever you pull the latest git or commit a change, you need to re-run the build.sh script so that the Info.plist used by QtCreator (well, by Xcode under the hood) gets updated. Otherwise you will continue to see the old version number, even though the sources have been recompiled which can be very confusing. Do a simply version update by running: build.sh -version and then rebuilding in Qt Creator (or Xcode)