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,
|
||||
// Linus Torvalds, Miika Turkia, Amit Chaudhuri, Jan Schubert, Willem
|
||||
// Ferguson, Salvador Cuñat, Pedro Neves
|
||||
// :revnumber: 4.2
|
||||
// :revdate: July 2014
|
||||
// :revnumber: 4.4
|
||||
// :revdate: February 2015
|
||||
:icons:
|
||||
:toc:
|
||||
: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,
|
||||
// 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
|
||||
here as well.
|
||||
|
||||
As of Subsurface 4.3 all of the prebuilt binaries that we provide (right
|
||||
now Windows, Mac, Ubuntu/Debian/LinuxMint, and openSUSE/Fedora) are built
|
||||
using our own custom "flavors" of libdivecomputer and libmarblewidget. You
|
||||
can get these from
|
||||
All of the prebuilt binaries that we provide (right now Windows, Mac,
|
||||
Ubuntu/Debian/LinuxMint, and openSUSE/Fedora) are built using our own
|
||||
custom "flavors" of libdivecomputer and libmarblewidget. You can get
|
||||
these from
|
||||
|
||||
git://git.subsurface-divelog.org/marble (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
|
||||
$ 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,
|
||||
# careful - this gets rebased and may be broken
|
||||
# -> 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
|
||||
|
||||
$ 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,
|
||||
# careful - this gets rebased and may be broken
|
||||
|
||||
|
@ -145,7 +145,7 @@ Finally you can compile Subsurface:
|
|||
$ cd ~/src
|
||||
$ git clone git://subsurface-divelog.org/subsurface.git
|
||||
$ 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
|
||||
# version
|
||||
$ qmake SPECIAL_MARBLE_PREFIX=1
|
||||
|
@ -206,7 +206,7 @@ $ make install
|
|||
5) Install custom subsurface Marble
|
||||
|
||||
$ 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
|
||||
$ mkdir marble-build
|
||||
$ cd marble-build
|
||||
|
@ -220,7 +220,7 @@ $ make install
|
|||
|
||||
$ brew install automake libtool
|
||||
$ 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
|
||||
# latest master, it may be necessary to build against the
|
||||
# Subsurface-testing branch
|
||||
|
@ -270,7 +270,7 @@ The best way to get libdivecomputer to build appears to be
|
|||
|
||||
$ mkdir -p ~/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,
|
||||
# careful - this gets rebased and may be broken
|
||||
# -> when not building a release version of Subsurface but the
|
||||
|
@ -286,7 +286,7 @@ $ sudo mingw64-make install
|
|||
To compile Marble, use:
|
||||
|
||||
$ 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,
|
||||
# careful - this gets rebased and may be broken
|
||||
|
||||
|
@ -316,7 +316,7 @@ To compile Subsurface, use:
|
|||
$ cd ~/src
|
||||
$ git clone git://subsurface-divelog.org/subsurface.git
|
||||
$ 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
|
||||
# version
|
||||
$ packagin/windows/mingw-make.sh Qt5 SPECIAL_MARBLE_PREFIX=1
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
// _Subsurface_ 4.4 Release Notes
|
||||
|
||||
_Subsurface_ 4.4 Beta 3 - February 2015
|
||||
---------------------------------------
|
||||
_Subsurface_ 4.4 - February 2015
|
||||
--------------------------------
|
||||
|
||||
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.
|
||||
|
||||
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
|
||||
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
|
||||
that works on all versions of Windows, 32 or 64bit, all the way back to
|
||||
Windows XP.
|
||||
We went back to a single, Qt5 based 32bit binary that works on all
|
||||
versions of Windows, 32 or 64bit, all the way back to Windows XP.
|
||||
|
||||
Some of the changes since _Subsurface_ 4.2
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
|
|
@ -19,7 +19,7 @@ else: TARGET = subsurface
|
|||
|
||||
QMAKE_CLEAN += $$TARGET
|
||||
|
||||
VERSION = 4.3
|
||||
VERSION = 4.4
|
||||
|
||||
HEADERS = \
|
||||
cochran.h \
|
||||
|
|
Loading…
Reference in a new issue