Denis Chaplygin
55b3260cc3
Driving side property added to driving_side.geojson
2020-10-06 09:01:22 +03:00
Denis Chapligin
cdce2af1c9
Merge pull request #5536 from leighghunt/master
...
Updating extent of Hong Kong in list of left-hand drive countries
2020-09-02 11:48:36 +03:00
Leigh Hunt
3116734bec
Merge branch 'master' of github.com:Project-OSRM/osrm-backend
2020-09-02 09:52:01 +12:00
Denis Chapligin
4d6272b030
Merge pull request #5569 from rdvelazquez/master
...
Update kCellsAtMostSameBy comment
2020-08-21 12:07:27 +03:00
Denis Chapligin
a7993eebac
Merge pull request #5760 from woltapp/nostxxl
...
Removed STXXL support.
2020-08-20 13:19:53 +03:00
Denis Chaplygin
2d0b2ca987
Removed STXXL support.
2020-08-20 11:54:02 +03:00
Lev Dragunov
699ca2bbd0
Merge pull request #5758 from woltapp/gcc10
...
Fixes signed/unsigned comparision spotted by gcc10.
2020-08-20 10:59:23 +03:00
Denis Chapligin
8b40c594be
Merge pull request #5784 from OgreTransporter/bugfix-cmaketbb-5782
...
Bugfix TBB linking #5782
2020-08-19 12:39:00 +03:00
Denis Chapligin
909570fd7f
Merge pull request #5711 from wingyplus/fix-debug-example
...
Fix profiles/debug_example.lua cannot interprete by lua
2020-08-19 11:15:06 +03:00
Denis Chapligin
df9fda177d
Merge pull request #5384 from wangyoucao577/clean-comments
...
correct comments for "compress edge if it crosses a traffic signal"
2020-08-18 17:21:23 +03:00
Jay Zhang
d2e7e6e9e6
improve comment description
2020-08-12 15:18:58 +08:00
Denis Chapligin
b9ebe0c369
Merge pull request #5628 from wangyoucao577/feature/disable-debug-log-compile-time-control
...
Control release mode debug logging output by ENABLE_DEBUG_LOGGING option
2020-08-11 10:27:27 +03:00
Jeroen Hoek
cd4e6a1fe3
Fix broken path in documentation ( #5636 )
...
Replaces references to
`include/extractor/guidance/road_classification.hpp` with
`include/extractor/road_classification.hpp`.
The latter is included in the project.
2020-08-10 08:50:15 -07:00
dburnsii
5cac188711
Update profiles.md ( #5795 )
...
Fixed a small typo
2020-08-07 13:44:32 -07:00
Jay Zhang
b7fa2c5981
docs: update changelog
2020-07-29 06:02:19 +00:00
Jay Zhang
106082f6f8
feat: add ENABLE_DEBUG_LOGGING option to control debug logging output
2020-07-29 06:00:47 +00:00
Jay Zhang
36d34073da
Revert "chore: remove compile time debug log control"
...
This reverts commit 1ada466081
.
2020-07-29 05:10:12 +00:00
Denis Chapligin
57ed232423
Merge pull request #5783 from OgreTransporter/bugfix-lua-5781
...
Bugfix Lua 5.4 not working
2020-07-28 15:52:58 +03:00
Denis Chapligin
24f12c9d1b
Merge pull request #5732 from lukasz-jagielski-bolt/lkj/compile_with_node_12
...
Try to fix node 12 compilation issues
2020-07-28 14:42:04 +03:00
Denis Chapligin
bdf2222f6a
Merge pull request #5729 from akashihi/builddataatwolt
...
Moved test data files to Wolt provided hosting.
2020-07-28 09:43:40 +03:00
Denis Chaplygin
220ad9fe8c
JS tests temporarily disabled as they fail with OOM.
2020-07-23 11:27:58 +03:00
Denis Chaplygin
ae6326719a
Removed CONSTEXPR requirement for a boost, as we need at least c++14 for rest of the code.
2020-07-23 11:27:58 +03:00
Denis Chaplygin
0503a2fcd3
Appveyor build now uses dependency files hosted at Wolt.
2020-07-23 11:27:57 +03:00
Denis Chaplygin
219f2c3aa9
Added windows dependencies building manual.
2020-07-23 11:27:57 +03:00
Denis Chaplygin
493e821b93
Monaco test map moved to the git repository.
2020-07-23 11:27:56 +03:00
Transporter
9c3eeffe2c
Bugfix TBB linking #5782
...
The query if(WIN32 AND CMAKE_BUILD_TYPE MATCHES Debug) only works if you call CMake explicitly with the build configuration Debug. But if you generate Debug and Release all libraries are linked to the release version.
2020-07-16 19:14:48 +02:00
Transporter
526191256c
Bugfix Lua 5.4 not working #5781
...
In Lua 5.4 the function lua_resume now has an extra parameter. This out parameter returns the number of values on the top of the stack that were yielded or returned by the coroutine (in previous versions, those values were the entire stack.). The constant LUA_ERRGCMM was removed. Errors in finalizers are never propagated; instead, they generate a warning.
2020-07-16 19:08:37 +02:00
Łukasz Jagielski
9861faa456
nodejs: user worker thread friendly initialization
2020-07-07 09:01:52 +02:00
Denis Chaplygin
919fe74c40
Fixes signed/unsigned comparision spotted by gcc10.
...
Fixed by moving assertion to the actual point where signed values are used.
2020-06-17 13:18:21 +03:00
张庚昕
365121dac4
add generate_hints parameter info to document ( #5754 )
2020-06-11 06:43:03 -07:00
Łukasz Jagielski
cbec111eb6
include/nodejs/node_osrm.hpp: clang-format
2020-05-12 15:16:38 +02:00
Łukasz Jagielski
7d369b9ab9
Try to fix node 12 compilation issues
2020-05-05 23:34:26 +02:00
Thanabodee Charoenpiriyakij
2c13f2f735
Fix profiles/debug_example.lua cannot interprete by lua
...
After run `lua5.1 profiles/debug_example.lua`, I got result:
```
lua5.1: debug_example.lua:41: attempt to call field 'way_function' (a nil value)
stack traceback:
debug_example.lua:41: in main chunk
[C]: ?
```
This is because Debug has not way_function in the module. This changes
change it to process_way and it's works!!
2020-04-09 16:05:37 +07:00
Lev Dragunov
15f0ca8dda
Merge pull request #5608 from mariusre/http_parsing_fix
...
made whitespace between Header-key and value otional
2019-12-18 11:32:00 +03:00
Marius Rescheleit
d59ecb321e
added complete link to issue
2019-12-11 13:28:57 +01:00
Lev Dragunov
404ebb1898
Merge pull request #5624 from arnekaiser/patch-1
...
Update profiles.md
2019-12-10 10:23:18 +03:00
Jay Zhang
11b0a2e02a
docs: update change log
2019-12-09 23:19:37 +08:00
Jay Zhang
1ada466081
chore: remove compile time debug log control
2019-12-09 17:53:28 +08:00
Arne
973722d0ec
Update profiles.md
2019-12-05 17:17:31 +01:00
Marius Rescheleit
ca5d17adab
Update CHANGELOG.md
2019-12-03 12:21:53 +01:00
Lev Dragunov
68dcab7c15
Merge pull request #5622 from jdhoek/bug/bicycle_use_sidepath
...
Bicycle: treat use_sidepath as no access
2019-12-02 14:32:30 +03:00
Jeroen Hoek
92406da194
Bicycle: treat use_sidepath as no access
...
Fixes #5557 .
2019-12-01 18:34:58 +01:00
marius
6d8cf826d7
modified FSM so that the whitespace between header-key and value is optional
2019-11-19 18:30:21 +01:00
Lev Dragunov
48be5a5622
Merge pull request #5604 from jdesgats/fix-guidance-so
...
fix: install the osrm_guidance library
2019-11-19 14:41:21 +03:00
Julien Desgats
46ab931c64
fix: install the osrm_guidance library
...
In the case of a shared object compilation, the resulting binaries need
that library. It was not installed along the others, leading to failures
when running osrm-extract.
Fixes #5603
2019-11-15 10:32:27 +00:00
Lev Dragunov
0b139ff05d
Merge pull request #5572 from Tomonobu3110/tomo_less_memory
...
Reduce memory usage for raster source handling.
2019-11-14 12:58:59 +03:00
Tomonobu Saito
9da6cf8764
add: comment for RasterCache class
2019-11-13 11:01:07 +09:00
Tomonobu Saito
ee177efe41
fix: remove unused include / add const for necessity portion
2019-11-08 16:15:38 +09:00
Tomonobu Saito
fd0f1b60bb
fix by revier comments
2019-11-06 11:06:29 +09:00
Tomonobu Saito
9c1c842b79
update CHANGELOG.md
2019-10-10 12:26:13 +09:00