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

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-05-08Merge remote-tracking branch 'origin/3.x-dev' into 4.x-devsgiehl
2020-04-29Updates device detector to 3.12.5 (#15883)Stefan Giehl
2020-04-27Improve generated docs on extending profile summary (#15864)Stefan Giehl
* Improve generated docs on extending profile summary * submodule update
2020-04-25language update (#15858)github-actions[bot]
Co-authored-by: tsteur <tsteur@users.noreply.github.com>
2020-04-24Update doc blocks with new name (#15857)Stefan Giehl
* update doc blocks with new name * submodule updates * updates expected UI files
2020-04-23Refactores the way segments are configured in dimensions (#15836)Stefan Giehl
* Improve naming of methods for segments to rescrict access for anonymous user * Introduce new classes SegmentsList nad DimensionSegmentFactory * removes SegmentEditor\SegmentList and adds some tests * submodule updates
2020-04-19language update (#15826)github-actions[bot]
Co-authored-by: tsteur <tsteur@users.noreply.github.com>
2020-04-08many typo fixes in the code thanks to codespell (#15730)Lukas Winkler
* many typo fixes in the code thanks to codespell * reset submodules I really need to stop using `git commit -a` * reset change in library * rebuilt piwik.js * fix test * updates expected UI file Co-authored-by: sgiehl <sgiehl@users.noreply.github.com> Co-authored-by: Stefan Giehl <stefan@matomo.org>
2020-03-07language update (#15682)github-actions[bot]
Co-authored-by: tsteur <tsteur@users.noreply.github.com>
2020-02-27Update to PHPUnit 8.5 (#15581)Stefan Giehl
* use latest phpunit/phpunit ~8.5 * submodule updates * fixes
2020-01-27Support goal metrics for browser name dimension (#15409)Thomas Steur
2019-12-19language update (#15289)Stefan Giehl
2019-11-25language update (#15195)Stefan Giehl
2019-11-10language update (#15140)Stefan Giehl
2019-11-04Updates device detector to 3.12.1 (#15055)Stefan Giehl
* updates device detector to 3.12.1 * adds new device type smart speaker * updates expected test files * updates UI files
2019-10-30Revert umlaut icons (#15079)Lukas Winkler
* revert umlauts in icons * update icons
2019-10-28language update (#15064)Stefan Giehl
2019-10-24language update (#15052)Stefan Giehl
2019-10-03Removed closing PHP tag due to PSR-2 definition (#14929)Kai Neuwerth
2019-09-27language update (#14916)Stefan Giehl
2019-09-05language update (#14861)Stefan Giehl
2019-09-05Show detected bots in device detection (#14853)Stefan Giehl
2019-08-26Cache parsed device detection info to file (#14751)Kate Butler
* Create a file cache for parsed device info * Tests for device detection file cache * Move device detector cache into separate plugin * Move WarmDeviceDetectorCache to separate plugin * Use DI to get the DeviceDetectorFactory * add device detector cache as a submodule * update submodule * update submodule * fix BC break * System test, deal with useragent strings > 500 characters long * update submodule * Update submodule
2019-08-25language update (#14807)Stefan Giehl
2019-08-14update matomo-icons (#14765)Lukas Winkler
2019-08-02language update (#14726)Stefan Giehl
2019-07-22language update (#14684)Stefan Giehl
2019-07-16Keep top level nb_visits_converted metric (#14253)diosmosis
* Do not remove nb_visits_converted when archiving goal reports since it should differ from sum of conversions. * If metric is not available, compute dynamically by using max nb_visits_converted. * Ignore abandoned cart conversions when calculating visit converted. * In case goals column is empty. * remove processed metric code since it is not correct * do not remove visits converted metric for overview * fix tests * Fixing test * fix test * update test files * update submodules * Update expected screenshots & try to fix some random failures. * Update expected UI test export results. * two ui test fixes * Fix couple UI test failures. * fix random php test failure
2019-07-05Update the link tag for all php files (#14635)Luca
I updated the link tag for all php files with the new matomo link. Not sure if it is realistic that this will get merged but I though that someday someone has to do this(?)
2019-06-29language update (#14592)Stefan Giehl
2019-06-29Fix Browser and OS name segments (#14589)Stefan Giehl
2019-05-31language update (#14505)Stefan Giehl
2019-05-28Ensure each plugin has a config.php and tracker.php file (#14430)Kate Butler
* Add empty config.php and tracker.php files to each plugin that doesn't have them; add to whitelist of files that are included in new plugins generated by generate:plugin * Add plugin files for plugins which were missing them
2019-05-11Fixes various misspellings of Matomo (and Piwik) (#14443)Stefan Giehl
2019-05-10language update (#14441)Stefan Giehl
2019-05-09Ensure segment definitions doen't regress (#14372)Stefan Giehl
2019-04-10Readable segment values for browser, os and country segments (#13929)Stefan Giehl
* Use readable segment value for browser and os segments instead of short codes * readds original segments using short codes * Adds additional segment country name to segment by (english) country name * compare browser and os names case sensitive for segments * use correct segments for reports * update tests
2019-03-13Couple assorted changes (#13935)diosmosis
* Allow annotations API to accept multiple periods, so evolution graphs that use multiple periods work. * Remove warning when rows_to_display viewdatatable config property is left at its default value. * Allow individual cells in an html visualization to be styled (if the visualization is extended). * Remove unneeded TODO. * In series picker encode picked rows in case the labels have commas. * Must decode the rows value as well (as it is not handled by API, must be done in plugin). * Allow joins to specified through LogAggregator::queryConversionsByDimension(). * Add safety check to _idts processing: if visitor is unknown, ignore _idts value, since it is their first visit. * In the tracker when searching by visitor ID, search through entire log_visit table instead of just in the last 30 mins. * When tracking visitor days since first, do not round since this can result in inaccurate data when rounding up. Which can cause trouble when finding the start visit for a log. * Allow HtmlTable descendants to add any html attributes to cells. * Allow derived Visualizations to add custom parameters to API requests via a new RequestConfig method. * Tweak to TODO. * Add test for annotations API change & get to pass. * Apply more review feedback * Update INI config docs for window_look_back_for_visitor. * Only copy visitor properties if action is part of an existing visit. * Some more properties that should be copied over from known visitor even if new visit. * Fixing some tests. * update test * Fix CustomEventsTest test failures. * Fixing more tests. * update rest of tests * Fixing tests. * Update some test files. * Fix log statements. * To better handle out of order actions, add part of last_action_time check to visitor ID search. * Update tests. * Updating expected screenshots. * Fix ArchiveCronTest. * Throw exception if idorder not unique. * Only throw exception if idorder specified. * Fixing a couple tests. * Fix another test.
2019-03-09language update (#14170)Stefan Giehl
2019-01-27language update (#14030)Stefan Giehl
2019-01-14language update (#13956)Stefan Giehl
2018-12-27language update (#13915)Stefan Giehl
2018-12-17language update (#13871)Stefan Giehl
2018-11-05Only show default number of rows for devices report (#13541)Thomas Steur
fix https://github.com/matomo-org/matomo/issues/12266 fyi @mattab couldn't make it work to show `0` instead of `-`. Now all the reports have the same length by default on the devices page. If someone wants to see more, they can increase the limit. Or if many are `-` then they can choose only `5` in the limit selection and it will apply this setting next time.
2018-10-09translation updatessgiehl
2018-10-08language update (#13560)Stefan Giehl
2018-09-01Adds new language Spanish (Argentina) (#13350)Stefan Giehl
2018-08-19language update (#13316)Stefan Giehl
2018-07-25language update (#13209)Stefan Giehl
2018-06-18language update (#13072)Stefan Giehl