Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-11-06[pybindings] Fix linking on MacVictor Popov
Mac has different linker defaults than linux, and by default it does not allow undefined symbols to be left in resulting pybinding library. To allow it, we specifically pass linker argument when linking final pybinding object. This is done to avoid linking excessively to libpythonX.Y since at the time pybinding is loaded into Python process, all libpython symbols would be immediately available.
2020-09-22[pybindings] remove linking to libpythonVictor Popov
2020-06-03[pybindings] PR review improvementsVictor Popov
- docs refinements - python style fixes
2020-06-03[pybindings] setup.py for building pybindings with easeVictor Popov
- build boost_python from our bundled boost - configure omim, build single binding - build all bindings in one run - install, create wheels
2020-03-18[bindings] Refactored functions in vector_list_conversion.hpp; added a ↵Maksim Andrianov
namespace.
2020-03-13[local_ads] Fixed the statistics event.Maxim Pimenov
2020-03-04[local_ads] Truncate the old file when writing metadata.Maxim Pimenov
2020-03-04[local_ads] A statistics event to track corrupted files.Maxim Pimenov
2020-02-11[coding] Removed namespace coding::url to url, and "url_helpers" files to "url".Maxim Pimenov
2020-02-11[base] [coding] Moved together several functions that work with urls.Maxim Pimenov
2019-12-16[map][tracking] Archieve tracker - bicycles, pedestrians, cars.Olga Khlopkova
2019-11-01[geometry] Get rid of MercatorBounds, refactor to namespace mercatorMikhail Gorbushin
2019-09-30[android] Fixed some warnings.Maxim Pimenov
2019-05-21[base] [coding] Moved file_name_utils.{c,h}pp from coding/ to base/.Maxim Pimenov
2019-05-15Fixed some warnings.Maxim Pimenov
2019-04-15Several explicit constructors per the Cppcheck report.Maxim Pimenov
2019-03-19[coding] Removed JoinFoldersToPath.Maxim Pimenov
2019-01-15Add version to all PYBINDINGS modules.Victor Popov
Make all modules have externally-specified (by build script) version. It must be externally specified since we can't know which tag the code was checked out from.
2018-12-13[coding] Renamed the StringUtf8Multilang files.Maxim Pimenov
Also added some documentation on how StringUtf8Multilang is stored.
2018-11-23Review fixes.Maxim Pimenov
2018-11-23[coding] Moved functions that encode points to one common file.Maxim Pimenov
2018-10-30Use hash as user id in statistics.Daria Volvenkova
2018-10-29Review fixes.Vladimir Byko-Ianko
2018-10-29Local ads release build warning fix.Vladimir Byko-Ianko
2018-10-24Review fixes.Daria Volvenkova
2018-10-24Local ads features processing for geofencing.Daria Volvenkova
2018-09-18[base] Replaced the namespace my with base.Maxim Pimenov
2018-09-14[base] Unified stl_add and stl_helpers.Maxim Pimenov
2018-08-31remove my::make_uniqueMikhail Gorbushin
2018-08-17[Core] Added subscriptionr.kuznetsov
2018-08-10Review fixesr.kuznetsov
2018-08-10[Core] Added user agent for http requestsr.kuznetsov
2018-06-21[coding] Default cache params in FileReader's constructor.Maxim Pimenov
Now that we know all the places that depended on the implicit params, fall back to the simple constructor. The main problem here was that there used to be a component in generator/intermediate_data.hpp where the same field could be used both as a reader and as a writer via template metaprogramming. This effectively forced the constructors of FileReader and FileWriter to have the same parameter list. Three default parameters in FileReader's constructor that could be implicitly cast to one another only complicated the matters, so once we have removed the |withException| param an extra check was needed that all the constructors are now used as intended.
2018-06-21[coding] FileReader now always throws exception on an out-of-bounds access.Maxim Pimenov
2018-06-19Added offline id for local ads statisticsr.kuznetsov
2018-06-15[cmake] Add precompiled headers supportgreshilov
2018-05-24Better calculation outgoing route points for turn generation and fixing some ↵Vladimir Byko-Ianko
turn generation issues.
2018-05-15Fixed disabled exceptions in FileReader for client-side coder.kuznetsov
2018-04-10[coding] [geometry] Deprecated PointToInt.Maxim Pimenov
For some reason we have been using bitwise merge to store a pair of 32-bit unsigned integer coordinates. Since the width of the coordinates is fixed and storage in general has nothing to do with the Z-order curve where bitwise merge is appropriate, this commit marks this method of storage as obsolete (and effectively deprecated). The functions to convert between PointD and PointU are still serviceable. Their usage is slightly refactored.
2018-03-06Added support of 3G awareness in core platformRoman Kuznetsov
2018-03-06local_ads_tests build bug fix.Vladimir Byko-Ianko
2018-03-06Using _t suffix instead of ::type in whole project + using std:: somewhere.VladiMihaylenko
2018-03-05Review fixesr.kuznetsov
2018-03-05Redesigned local ads statisticsRoman Kuznetsov
2018-03-05[local_ads] set network timeout to 5 secondsArsentiy Milchakov
2017-12-28[qmake] Goodbye QMake!greshilov
+3party dirs +Rebased
2017-12-19[local_ads] review fixesArsentiy Milchakov
2017-12-19[local_ads][user] reduced number of threadsArsentiy Milchakov
2017-11-17[platform] [tests] Added an option to ScopedFile.Maxim Pimenov
The option allows one to push responsibility on the user of the ScopedFile, that is, enables a scenario where a ScopedFile does not try to create the file on disk but only assures the cleanup.
2017-11-15[local_ads] campaign serialization testArsentiy Milchakov