Skip to content

Commit 6421973

Browse files
committed
Merge branch 'release-0.6.0' into release
2 parents c426347 + a7c9e32 commit 6421973

File tree

143 files changed

+3617
-3911
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

143 files changed

+3617
-3911
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ set(Mapper_COPYRIGHT "(C) 2012-2015 OpenOrienteering developers")
3232
# All version components must be integers.
3333
# We use Mapper_VERSION_PATCH >= 99 to mark development builds.
3434
set(Mapper_VERSION_MAJOR 0)
35-
set(Mapper_VERSION_MINOR 5)
35+
set(Mapper_VERSION_MINOR 6)
3636
if(NOT Mapper_VERSION_PATCH)
3737
# This can be configured when running cmake
38-
set(Mapper_VERSION_PATCH 97)
38+
set(Mapper_VERSION_PATCH 0)
3939
endif()
4040

4141
set(MAPPER_VERSION_PRI "${PROJECT_SOURCE_DIR}/oo-mapper-version.pri")

android/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="0.5.97" android:versionCode="2" package="org.openorienteering.mapper" android:installLocation="auto">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="0.6.0" android:versionCode="2" package="org.openorienteering.mapper" android:installLocation="auto">
33
<application android:name="org.qtproject.qt5.android.bindings.QtApplication" android:label="@string/long_app_name" android:icon="@drawable/icon">
44
<activity android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|locale|fontScale|keyboard|keyboardHidden|navigation"
55
android:name="org.openorienteering.mapper.MapperActivity"

doc/man/Mapper.1

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH MAPPER 1 2014-04-27 OpenOrienteering
1+
.TH MAPPER 1 2015-12-13 OpenOrienteering
22

33
.SH NAME
44
Mapper \- orienteering map drawing software
@@ -22,10 +22,10 @@ This manual page was written by Kai Pastor <[email protected]>.
2222
.SH "REPORTING BUGS"
2323
Report bugs in the OpenOrienteering ticket system:
2424
.br
25-
<http://sourceforge.net/p/oorienteering/tickets/>
25+
<https://github.com/OpenOrienteering/mapper/issues>
2626

2727
.SH COPYRIGHT
28-
Copyright \(co 2014 The OpenOrienteering developers
28+
Copyright \(co 2015 The OpenOrienteering developers
2929
.br
3030
License GPLv3: GNU GPL version 3 <http://gnu.org/licenses/gpl.html>.
3131
.br
@@ -35,7 +35,6 @@ There is NO WARRANTY, to the extent permitted by law.
3535
.SH "SEE ALSO"
3636
Extended documentation for
3737
.B Mapper
38-
is available from the program's help menu and also online in the
39-
OpenOrienteering user wiki:
38+
is available from the program's help menu and also online at:
4039
.br
41-
<http://sourceforge.net/p/oorienteering/wiki/Home/>
40+
<http://openorienteering.github.io/mapper-manual/>

doc/manual/CMakeLists.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,21 @@ else()
8585
COMMAND ${CMAKE_COMMAND} -P preprocess-markdown.cmake
8686
)
8787

88+
if(NOT MANUAL_SECTIONS)
89+
if(APPLE)
90+
set(MANUAL_SECTIONS_DEFAULT OSX)
91+
elseif(UNIX)
92+
set(MANUAL_SECTIONS_DEFAULT LINUX)
93+
elseif(WIN32)
94+
set(MANUAL_SECTIONS_DEFAULT WINDOWS)
95+
else()
96+
set(MANUAL_SECTIONS_DEFAULT OTHER)
97+
endif()
98+
set(MANUAL_SECTIONS "${MANUAL_SECTIONS_DEFAULT}"
99+
CACHE STRING "Conditional manual sections to be enabled")
100+
endif()
101+
message(STATUS "Conditional manual sections: ${MANUAL_SECTIONS}")
102+
88103
configure_file(Doxyfile.in Doxyfile @ONLY)
89104

90105
configure_file(postprocess-qhp.cmake.in postprocess-qhp.cmake @ONLY)

doc/manual/Doxyfile.in

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ PROJECT_LOGO = "@CMAKE_CURRENT_SOURCE_DIR@/../openorienteering.png"
2323

2424
QUIET = YES
2525

26-
INPUT = "@CMAKE_CURRENT_BINARY_DIR@/docs"
27-
STRIP_FROM_PATH = "@CMAKE_CURRENT_BINARY_DIR@/docs"
28-
IMAGE_PATH = "@CMAKE_CURRENT_SOURCE_DIR@/docs/images"
26+
INPUT = "@CMAKE_CURRENT_BINARY_DIR@/pages-tmp"
27+
STRIP_FROM_PATH = "@CMAKE_CURRENT_BINARY_DIR@/pages-tmp"
28+
IMAGE_PATH = "@CMAKE_CURRENT_SOURCE_DIR@/pages/images"
2929
IMAGE_PATH += "@CMAKE_CURRENT_SOURCE_DIR@/../../images"
3030
ENABLE_PREPROCESSING = NO
3131
USE_MATHJAX = NO
@@ -38,12 +38,14 @@ SEARCHENGINE = NO
3838
HTML_HEADER = "@CMAKE_CURRENT_SOURCE_DIR@/header.html"
3939
HTML_FOOTER = "@CMAKE_CURRENT_SOURCE_DIR@/footer.html"
4040
HTML_STYLESHEET = "@CMAKE_CURRENT_SOURCE_DIR@/style.css"
41-
HTML_EXTRA_FILES = "@CMAKE_CURRENT_SOURCE_DIR@/docs/attachment/scribble_1024.png"
42-
HTML_EXTRA_FILES += "@CMAKE_CURRENT_SOURCE_DIR@/docs/attachment/scribble_2048.png"
41+
HTML_EXTRA_FILES = "@CMAKE_CURRENT_SOURCE_DIR@/pages/attachment/scribble_1024.png"
42+
HTML_EXTRA_FILES += "@CMAKE_CURRENT_SOURCE_DIR@/pages/attachment/scribble_2048.png"
4343

4444
GENERATE_QHP = YES
4545
QCH_FILE = "../Mapper ${Mapper_VERSION_DISPLAY}.qch"
4646
QHP_NAMESPACE = "@Mapper_HELP_NAMESPACE@"
4747
QHP_VIRTUAL_FOLDER = manual
4848

4949
GENERATE_LATEX = NO
50+
51+
ENABLED_SECTIONS = @MANUAL_SECTIONS@

doc/manual/docs/android-index.md

Lines changed: 0 additions & 23 deletions
This file was deleted.

doc/manual/docs/edit_menu.md

Lines changed: 0 additions & 47 deletions
This file was deleted.

doc/manual/docs/faq.md

Lines changed: 0 additions & 57 deletions
This file was deleted.

doc/manual/docs/file_menu.md

Lines changed: 0 additions & 47 deletions
This file was deleted.

doc/manual/docs/grid.md

Lines changed: 0 additions & 42 deletions
This file was deleted.

0 commit comments

Comments
 (0)