Skip to content

Commit 6916564

Browse files
committed
Merge branch 'master' into release
2 parents 6ecda78 + fc41d29 commit 6916564

File tree

75 files changed

+31658
-19002
lines changed

Some content is hidden

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

75 files changed

+31658
-19002
lines changed

CMakeLists.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,13 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
2323

2424
include(FeatureSummary)
2525

26+
if(CCACHE_PROGRAM)
27+
set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE "${CCACHE_PROGRAM}")
28+
endif()
29+
2630
# Project declaration
2731

28-
project(Mapper VERSION 0.8.1.2 LANGUAGES CXX C)
32+
project(Mapper VERSION 0.8.2 LANGUAGES CXX C)
2933

3034
if(Mapper_VERSION_DISPLAY)
3135
message(STATUS "Custom version display string: \"${Mapper_VERSION_DISPLAY}\"")

INSTALL.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ components. Direct dependencies are:
1919
- Clipper library (aka libpolyclipping) >= 6.1.3.a
2020
http://www.angusj.com/delphi/clipper.php
2121
- PROJ.4 Cartographic Projections Library >= 4.8
22-
http://proj4.org/
22+
https://proj4.org/
2323
- GDAL Geospatial Data Abstraction Library
24-
http://www.gdal.org/
24+
https://www.gdal.org/
2525
- ZLib Compression Library
26-
http://zlib.net/
26+
https://zlib.net/
2727

2828
When building for Linux, you may use the distributions' packages.
2929
However, openSUSE is known to lack the Clipper library.
@@ -109,7 +109,7 @@ it needs.
109109

110110
For setting up Kits, see the Qt Creator documentation:
111111

112-
http://doc.qt.io/qtcreator/creator-targets.html
112+
https://doc.qt.io/qtcreator/creator-targets.html
113113

114114
Starting with Qt Creator 4.3, it might become possible to simply open the
115115
superbuild's openorienteering-mapper build directory as a regular project

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# OpenOrienteering Mapper
22

3-
![Mapper Screenshot](http://openorienteering.github.io/mapper-manual/pages/images/main_window.png)
3+
![Mapper Screenshot](https://www.openorienteering.org/mapper-manual/pages/images/main_window.png)
44

55
OpenOrienteering Mapper is an orienteering mapmaking program and provides
66
a free and open source alternative to existing commercial software.
77
OpenOrienteering Mapper runs on Android, Windows, Mac OS X and Linux.
88

9-
- [Mapper Homepage](http://www.openorienteering.org/apps/mapper/)
10-
- [Manual](http://www.openorienteering.org/mapper-manual/)
9+
- [Mapper Homepage](https://www.openorienteering.org/apps/mapper/)
10+
- [Manual](https://www.openorienteering.org/mapper-manual/)
1111
- [Downloads](https://github.com/OpenOrienteering/mapper/releases)
12-
- [OpenOrienteering Blog](http://www.openorienteering.org/)
12+
- [OpenOrienteering Blog](https://www.openorienteering.org/)
1313

1414

1515
## Reporting Issues and Asking for Help
@@ -37,7 +37,7 @@ For building Mapper from source see [`INSTALL.md`](https://github.com/OpenOrient
3737
Pull requests are very welcome.
3838

3939
- [Issue tracker](https://github.com/OpenOrienteering/mapper/issues)
40-
- [API documentation](http://www.openorienteering.org/api-docs/mapper/)
40+
- [API documentation](https://www.openorienteering.org/api-docs/mapper/)
4141
- [Developer wiki](https://github.com/OpenOrienteering/mapper/wiki)
4242

4343

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.8.1" android:versionCode="801" package="org.openorienteering.mapper" android:installLocation="auto">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="0.8.2" android:versionCode="802" 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/licensing/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ endforeach()
3434

3535
# Select default provider
3636
if(ANDROID OR APPLE OR WIN32)
37-
set(default_provider superbuild)
37+
set(default_provider OFF)
3838
elseif(UNIX)
3939
execute_process(
4040
COMMAND sh -c ". /etc/os-release; echo $ID"

doc/licensing/licensing.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ <h2 id="openorienteering-mapper">
3131
</h2>
3232
<p>
3333
OpenOrienteering Mapper is a free software for drawing orienteering maps.<br />
34-
<a href="http://www.openorienteering.org/apps/mapper/">http://www.openorienteering.org/apps/mapper/</a>
34+
<a href="https://www.openorienteering.org/apps/mapper/">https://www.openorienteering.org/apps/mapper/</a>
3535
</p>
3636
<p>
3737
@Mapper_COPYRIGHT@
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include("${CMAKE_CURRENT_LIST_DIR}/opensuse-licensing.cmake")

doc/licensing/opensuse-licensing.cmake

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright 2017 Kai Pastor
2+
# Copyright 2017, 2018 Kai Pastor
33
#
44
# This file is part of OpenOrienteering.
55
#
@@ -21,10 +21,16 @@
2121

2222
include("linux-distribution.cmake")
2323

24+
find_file (GDAL_LICENSE_TXT
25+
NAMES LICENSE.TXT
26+
PATHS /usr/share/licenses/gdal-devel
27+
/usr/share/doc/packages/gdal-devel
28+
NO_DEFAULT_PATH
29+
)
2430
set(explicit_copyright_gdal
2531
# Copy! Package libgdal* does not include this file.
2632
"gdal.txt"
27-
"/usr/share/doc/packages/gdal-devel/LICENSE.TXT"
33+
"${GDAL_LICENSE_TXT}"
2834
"3rd-party"
2935
)
3036

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include("${CMAKE_CURRENT_LIST_DIR}/opensuse-licensing.cmake")

doc/licensing/src/licensing.qdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
\section1 OpenOrienteering Mapper
2727

2828
\e {OpenOrienteering Mapper is a free software for drawing orienteering maps.} \break
29-
\l http://openorienteering.org
29+
\l https://www.openorienteering.org
3030

3131
Copyright (C) 2012-2015 Kai Pastor, Thomas Schöps
3232

0 commit comments

Comments
 (0)