Commit Graph

655 Commits (89a2e9fe9a7309026d1c9eed681f8cb59b3c0709)

Author SHA1 Message Date
Laurent Cozic 0c09202950 Update website 2021-01-21 23:12:49 +00:00
Laurent Cozic 3ecf942b44 Merge branch 'release-1.6' into dev 2021-01-21 13:49:23 +00:00
Laurent Cozic 85355f8eda Android release v1.6.7 2021-01-21 11:25:45 +00:00
Daeraxa 197e43d78a
Doc: Documentation update (released version v1.5.14) (#4306) 2021-01-20 11:59:03 +00:00
Laurent Cozic 3c8d79975c Update website 2021-01-11 12:19:14 +00:00
JackGruber 047846a552
Doc: Add Synology WebDAV Server to WebDAV-compatible services (#4315) 2021-01-06 19:17:13 -05:00
Laurent Cozic 4f2d316db4 Doc: Fixed code block issue and cleaned up Download table 2021-01-03 15:55:47 +00:00
Helmut K. C. Tessarek 0be8cdf760
Update translations 2021-01-01 21:00:35 -05:00
Laurent Cozic d58f39823a Doc: Added link to new specs, and added more details to delta sync spec 2021-01-01 13:25:05 +00:00
Helmut K. C. Tessarek 24ec3b8897
Update translations (for new server code) 2020-12-28 15:17:17 -05:00
Laurent Cozic a97f25fd61 Update website 2020-12-27 19:55:34 +00:00
Laurent Cozic d202b6b5a9 Update website 2020-12-09 22:01:02 +00:00
Laurent Cozic f37224fc42 Desktop: Added doc about Rich Text editor and added way to dismiss warning banner 2020-12-09 15:58:15 +00:00
Helmut K. C. Tessarek 50f046ffc4
Update translations 2020-12-05 16:36:47 -05:00
Laurent Cozic 4b0d230815 Doc: Update installation info 2020-12-01 09:47:18 +00:00
Laurent Cozic d63378b4e3 Doc: Updated sponsors 2020-11-30 14:06:06 +00:00
Laurent Cozic a17b77b495 Update website 2020-11-30 12:06:32 +00:00
Laurent Cozic 40f6dcfb4c Android release 1.4 2020-11-26 19:42:05 +00:00
Laurent Cozic 7fa483d27c Doc: Organise community links 2020-11-25 14:50:27 +00:00
Laurent Cozic f45029b2e8 Doc: Added more info about the Joplin API 2020-11-15 19:45:35 +00:00
Laurent Cozic ce59d29bb3 Plugins: Added support app_min_version property and made it required 2020-11-15 14:18:46 +00:00
Helmut K. C. Tessarek e29e745b96
Desktop: add {{bowm}} and {{bows}} - Beginning Of Week (Monday/Sunday) (#4023)
* add {{bowm}} and {{bows}} - Beginning Of Week (Monday/Sunday)

In certain situation it is useful to reference the beginning of the week.
Unfortunately the current system does not allow to that, not even with a custom datetime format.

I've also added the 2 new template variables to the documentation.

* README: better wording
2020-11-12 18:41:37 +00:00
Laurent Cozic 04450a6464 Doc: Update sponsors 2020-11-09 12:19:40 +00:00
Johan Hammar 5079cd9ff2
Tools: Fix incorrect localization URLs (#4063) 2020-11-08 19:13:42 +00:00
Laurent Cozic a0f21796c2 Update website 2020-11-06 21:52:57 +00:00
Laurent Cozic 6856f84faa Doc: Update doc 2020-11-05 17:15:53 +00:00
Laurent Cozic cc07016b07 All: Use Lerna to manage monorepo 2020-11-05 16:58:23 +00:00
Laurent Cozic ff6cd57873 Android release v1.3.13 2020-11-05 13:46:19 +00:00
Helmut K. C. Tessarek 16c5ffadc7
Update translations 2020-10-29 10:34:31 -04:00
Laurent Cozic 1e3bd937ed Android release v1.3.10 2020-10-29 11:34:10 +00:00
Laurent Cozic 76063a6284 Android release v1.3.9 2020-10-23 16:03:13 +01:00
Laurent Cozic adad406696 Update translations 2020-10-21 21:54:47 +01:00
Laurent Cozic 0afd4a6234 Doc: Fixed typo 2020-10-21 21:23:31 +01:00
Laurent Cozic a721f170e4 Doc: Added info about search filters 2020-10-20 12:12:00 +01:00
Alkindi42 0f9d92dd3d
Doc: add archlinux package for pre-release in docs (#3875) 2020-10-20 11:42:41 +01:00
Laurent Cozic 02ed297529 tab 2020-10-11 19:27:33 +01:00
Laurent Cozic 30543104be Fixed translations 2020-10-11 16:18:58 +01:00
Laurent Cozic b6a004086c Doc: Changed GitHub links from master to dev 2020-10-11 16:17:51 +01:00
Laurent Cozic 871f8b3a72 Merge branch 'release-1.2' into dev 2020-10-11 15:22:11 +01:00
Laurent Cozic 2bb5acdfb1 Android release v1.2.6 2020-10-11 15:06:41 +01:00
Shawn Axsom 5eb0417b1a
All: Sort search results by average of multiple criteria, including 'Sort notes by' field setting (#3777)
* Weight search results by most recently updated

As discussed here: https://github.com/laurent22/joplin/pull/3777#issuecomment-696491859
Before this commit, results were rarely sorted by date. Content weights and fuzziness were
determined, and then the first criteria to differ would win in sort order (and user_updated_time
was the last criteria checked).

Now the weight score itself will also include age of user_updated_time, surfacing fresh content.
At the current alpha level, results are weighted logarithmically, prioritizing mostly within the
last 30 days, and especially heavily within the past week.

* Updated unit tests to weight search results by last updated date

* Updated unit test title

* Fixed issue with weighted search engine test, and made it more deterministic using mock date

Date was being calculated only at the start of the test suite. It also wasn't using a set mock date, so the milliseconds between the real search engine calculations and the test calculation caused differences in results

* Added initial Search Engine spec

* Added Search Engine spec to README.md

* Renamed Search Sorting spec per laurent22's mentioned naming

* Revised copy in search sorting spec

Co-authored-by: Laurent <laurent22@users.noreply.github.com>
2020-10-09 21:51:11 +01:00
Laurent Cozic 0bf74142ac Improved building website
- Added script to check links
- Moved plugin API doc to separate directory
- Added script to build website and plugin doc
- Moving static assets in separate directory
2020-10-09 21:29:16 +01:00
Helmut K. C. Tessarek b3bf7144ac
Update translations 2020-10-09 16:05:10 -04:00
Laurent Cozic 784851b217 Fixing links 2020-10-09 19:30:57 +01:00
Laurent Cozic e673ee97de Fixing links 2020-10-09 19:09:52 +01:00
Laurent Cozic 7cb55ffdc4 Fixing doc 2020-10-09 19:04:18 +01:00
Laurent fe41d37f8f
All: Add support for application plugins (#3257) 2020-10-09 18:35:46 +01:00
Laurent Cozic 73a39d36ea Update website 2020-10-09 14:58:06 +01:00
Laurent Cozic 7d68208cb4 Android release v1.2.1 2020-09-22 16:17:11 +01:00
Laurent Cozic 56c6cfc785 Update website 2020-09-21 17:53:14 +01:00