mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
Get ready for Subsurface 4.4
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
4e9b637761
commit
06e2dde508
5 changed files with 23 additions and 24 deletions
|
@ -1,10 +1,10 @@
|
||||||
// Subsurface 4.2 User Manual
|
// Subsurface 4.4 User Manual
|
||||||
// ==========================
|
// ==========================
|
||||||
// :author: Manual authors: Jacco van Koll, Dirk Hohndel, Reinout Hoornweg,
|
// :author: Manual authors: Jacco van Koll, Dirk Hohndel, Reinout Hoornweg,
|
||||||
// Linus Torvalds, Miika Turkia, Amit Chaudhuri, Jan Schubert, Willem
|
// Linus Torvalds, Miika Turkia, Amit Chaudhuri, Jan Schubert, Willem
|
||||||
// Ferguson, Salvador Cuñat, Pedro Neves
|
// Ferguson, Salvador Cuñat, Pedro Neves
|
||||||
// :revnumber: 4.2
|
// :revnumber: 4.4
|
||||||
// :revdate: July 2014
|
// :revdate: February 2015
|
||||||
:icons:
|
:icons:
|
||||||
:toc:
|
:toc:
|
||||||
:toc-placement: manual
|
:toc-placement: manual
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// _Subsurface_ 4.3 User Manual
|
// _Subsurface_ 4.4 User Manual
|
||||||
// ==========================
|
// ==========================
|
||||||
// :author: Manual authors: Jacco van Koll, Dirk Hohndel, Reinout Hoornweg,
|
// :author: Manual authors: Jacco van Koll, Dirk Hohndel, Reinout Hoornweg,
|
||||||
// Linus Torvalds, Miika Turkia, Amit Chaudhuri, Jan Schubert, Willem
|
// Linus Torvalds, Miika Turkia, Amit Chaudhuri, Jan Schubert, Willem
|
||||||
|
|
24
INSTALL
24
INSTALL
|
@ -13,10 +13,10 @@ package management system for Windows makes it really painful to build
|
||||||
Subsurface natively under Windows, we have some hints how to do so
|
Subsurface natively under Windows, we have some hints how to do so
|
||||||
here as well.
|
here as well.
|
||||||
|
|
||||||
As of Subsurface 4.3 all of the prebuilt binaries that we provide (right
|
All of the prebuilt binaries that we provide (right now Windows, Mac,
|
||||||
now Windows, Mac, Ubuntu/Debian/LinuxMint, and openSUSE/Fedora) are built
|
Ubuntu/Debian/LinuxMint, and openSUSE/Fedora) are built using our own
|
||||||
using our own custom "flavors" of libdivecomputer and libmarblewidget. You
|
custom "flavors" of libdivecomputer and libmarblewidget. You can get
|
||||||
can get these from
|
these from
|
||||||
|
|
||||||
git://git.subsurface-divelog.org/marble (in the Subsurface-4.4 branch)
|
git://git.subsurface-divelog.org/marble (in the Subsurface-4.4 branch)
|
||||||
git://git.subsurface-divelog.org/libdc (in the Subsurface-4.4 branch)
|
git://git.subsurface-divelog.org/libdc (in the Subsurface-4.4 branch)
|
||||||
|
@ -109,7 +109,7 @@ First you need to compile our version of libdivecomputer:
|
||||||
|
|
||||||
$ mkdir ~/src # unless you have this already
|
$ mkdir ~/src # unless you have this already
|
||||||
$ cd ~/src
|
$ cd ~/src
|
||||||
$ git clone -b Subsurface-4.3 git://subsurface-divelog.org/libdc libdivecomputer
|
$ git clone -b Subsurface-4.4 git://subsurface-divelog.org/libdc libdivecomputer
|
||||||
# or -b Subsurface-testing to get the testing version - careful,
|
# or -b Subsurface-testing to get the testing version - careful,
|
||||||
# careful - this gets rebased and may be broken
|
# careful - this gets rebased and may be broken
|
||||||
# -> when not building a release version of Subsurface but the
|
# -> when not building a release version of Subsurface but the
|
||||||
|
@ -125,7 +125,7 @@ $ sudo make install
|
||||||
Then you compile our custom branch of libmarblewidget
|
Then you compile our custom branch of libmarblewidget
|
||||||
|
|
||||||
$ cd ~/src
|
$ cd ~/src
|
||||||
$ git clone -b Subsurface-4.3 git://subsurface-divelog.org/marble marble-source
|
$ git clone -b Subsurface-4.4 git://subsurface-divelog.org/marble marble-source
|
||||||
# or -b Subsurface-testing to get the testing version - careful,
|
# or -b Subsurface-testing to get the testing version - careful,
|
||||||
# careful - this gets rebased and may be broken
|
# careful - this gets rebased and may be broken
|
||||||
|
|
||||||
|
@ -145,7 +145,7 @@ Finally you can compile Subsurface:
|
||||||
$ cd ~/src
|
$ cd ~/src
|
||||||
$ git clone git://subsurface-divelog.org/subsurface.git
|
$ git clone git://subsurface-divelog.org/subsurface.git
|
||||||
$ cd subsurface
|
$ cd subsurface
|
||||||
$ git checkout v4.3 # this get's you the last release
|
$ git checkout v4.4 # this get's you the last release
|
||||||
# skip this step to build the latest development
|
# skip this step to build the latest development
|
||||||
# version
|
# version
|
||||||
$ qmake SPECIAL_MARBLE_PREFIX=1
|
$ qmake SPECIAL_MARBLE_PREFIX=1
|
||||||
|
@ -206,7 +206,7 @@ $ make install
|
||||||
5) Install custom subsurface Marble
|
5) Install custom subsurface Marble
|
||||||
|
|
||||||
$ cd ~/src
|
$ cd ~/src
|
||||||
$ git clone -b Subsurface-4.3 git://subsurface-divelog.org/marble marble-source
|
$ git clone -b Subsurface-4.4 git://subsurface-divelog.org/marble marble-source
|
||||||
$ cd marble-source
|
$ cd marble-source
|
||||||
$ mkdir marble-build
|
$ mkdir marble-build
|
||||||
$ cd marble-build
|
$ cd marble-build
|
||||||
|
@ -220,7 +220,7 @@ $ make install
|
||||||
|
|
||||||
$ brew install automake libtool
|
$ brew install automake libtool
|
||||||
$ cd ~/src
|
$ cd ~/src
|
||||||
$ git clone -b Subsurface-4.3 git://subsurface-divelog.org/libdc libdivecomputer
|
$ git clone -b Subsurface-4.4 git://subsurface-divelog.org/libdc libdivecomputer
|
||||||
# -> when not building a release version of Subsurface but the
|
# -> when not building a release version of Subsurface but the
|
||||||
# latest master, it may be necessary to build against the
|
# latest master, it may be necessary to build against the
|
||||||
# Subsurface-testing branch
|
# Subsurface-testing branch
|
||||||
|
@ -270,7 +270,7 @@ The best way to get libdivecomputer to build appears to be
|
||||||
|
|
||||||
$ mkdir -p ~/src
|
$ mkdir -p ~/src
|
||||||
$ cd ~/src
|
$ cd ~/src
|
||||||
$ git clone -b Subsurface-4.3 git://subsurface-divelog.org/libdc libdivecomputer
|
$ git clone -b Subsurface-4.4 git://subsurface-divelog.org/libdc libdivecomputer
|
||||||
# or -b Subsurface-testing to get the testing version - careful,
|
# or -b Subsurface-testing to get the testing version - careful,
|
||||||
# careful - this gets rebased and may be broken
|
# careful - this gets rebased and may be broken
|
||||||
# -> when not building a release version of Subsurface but the
|
# -> when not building a release version of Subsurface but the
|
||||||
|
@ -286,7 +286,7 @@ $ sudo mingw64-make install
|
||||||
To compile Marble, use:
|
To compile Marble, use:
|
||||||
|
|
||||||
$ cd ~/src
|
$ cd ~/src
|
||||||
$ git clone -b Subsurface-4.3 git://subsurface-divelog.org/marble marble-source
|
$ git clone -b Subsurface-4.4 git://subsurface-divelog.org/marble marble-source
|
||||||
# or -b Subsurface-testing to get the testing version - careful,
|
# or -b Subsurface-testing to get the testing version - careful,
|
||||||
# careful - this gets rebased and may be broken
|
# careful - this gets rebased and may be broken
|
||||||
|
|
||||||
|
@ -316,7 +316,7 @@ To compile Subsurface, use:
|
||||||
$ cd ~/src
|
$ cd ~/src
|
||||||
$ git clone git://subsurface-divelog.org/subsurface.git
|
$ git clone git://subsurface-divelog.org/subsurface.git
|
||||||
$ cd subsurface
|
$ cd subsurface
|
||||||
$ cd git checkout v4.3 # this get's you the last release
|
$ cd git checkout v4.4 # this get's you the last release
|
||||||
# skip this step to build the latest development
|
# skip this step to build the latest development
|
||||||
# version
|
# version
|
||||||
$ packagin/windows/mingw-make.sh Qt5 SPECIAL_MARBLE_PREFIX=1
|
$ packagin/windows/mingw-make.sh Qt5 SPECIAL_MARBLE_PREFIX=1
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
// _Subsurface_ 4.4 Release Notes
|
// _Subsurface_ 4.4 Release Notes
|
||||||
|
|
||||||
_Subsurface_ 4.4 Beta 3 - February 2015
|
_Subsurface_ 4.4 - February 2015
|
||||||
---------------------------------------
|
--------------------------------
|
||||||
|
|
||||||
The _Subsurface_ development team proudly announces
|
The _Subsurface_ development team proudly announces
|
||||||
the release of version 4.4 Beta 3 (aka 4.3.970) of _Subsurface_, an open
|
the release of version 4.4 of _Subsurface_, an open
|
||||||
source divelog and dive planning program for Windows, Mac and Linux.
|
source divelog and dive planning program for Windows, Mac and Linux.
|
||||||
|
|
||||||
License: GPLv2
|
License: GPLv2
|
||||||
|
@ -44,11 +44,10 @@ For owners of the Heinrichs & Weikamp OSTC 3 and OSTC Sport _Subsurface_
|
||||||
now supports updating the firmware and informs users of new firmware
|
now supports updating the firmware and informs users of new firmware
|
||||||
releases.
|
releases.
|
||||||
|
|
||||||
Add support for importing logs from the Divesoft Freedom
|
We added support for importing logs from the Divesoft Freedom
|
||||||
|
|
||||||
Dropped the 64bit Windows binary and went back to a single 32bit binary
|
We went back to a single, Qt5 based 32bit binary that works on all
|
||||||
that works on all versions of Windows, 32 or 64bit, all the way back to
|
versions of Windows, 32 or 64bit, all the way back to Windows XP.
|
||||||
Windows XP.
|
|
||||||
|
|
||||||
Some of the changes since _Subsurface_ 4.2
|
Some of the changes since _Subsurface_ 4.2
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
|
@ -19,7 +19,7 @@ else: TARGET = subsurface
|
||||||
|
|
||||||
QMAKE_CLEAN += $$TARGET
|
QMAKE_CLEAN += $$TARGET
|
||||||
|
|
||||||
VERSION = 4.3
|
VERSION = 4.4
|
||||||
|
|
||||||
HEADERS = \
|
HEADERS = \
|
||||||
cochran.h \
|
cochran.h \
|
||||||
|
|
Loading…
Reference in a new issue