8498 Commits

Author SHA1 Message Date
Daniel Klabbers
6be9cb86c7 fix branch alias 2021-05-25 22:50:37 +02:00
Daniel Klabbers
8a93498b22 fix branch alias 2021-05-25 22:50:29 +02:00
Daniel Klabbers
a8c85314a8 fix branch alias 2021-05-25 22:46:03 +02:00
Daniel Klabbers
af940bf48e fix branch alias 2021-05-25 22:45:50 +02:00
Daniel Klabbers
122f1ff5e5 fix branch alias 2021-05-25 22:45:40 +02:00
Daniel Klabbers
19b87cf9ec fix branch alias 2021-05-25 22:45:31 +02:00
Daniel Klabbers
5d1c1ce998 fix branch alias 2021-05-25 22:45:02 +02:00
Daniel Klabbers
c8c3463e6d fix branch alias 2021-05-25 22:44:50 +02:00
Daniel Klabbers
a989ab040a fix branch alias 2021-05-25 22:44:28 +02:00
Daniel Klabbers
27f70c5df9 changes for stable 2021-05-25 18:51:56 +02:00
Daniel Klabbers
df02f22594 changes for stable 2021-05-25 17:10:18 +02:00
Daniel Klabbers
d01810f5a8 changes for stable 2021-05-25 16:51:08 +02:00
Daniel Klabbers
448d8401d4 changes for stable 2021-05-25 16:50:04 +02:00
Daniel Klabbers
15e5c9bf0f changes for stable 2021-05-25 16:36:04 +02:00
Daniel Klabbers
4dade0b078 changes for stable 2021-05-25 16:33:25 +02:00
Daniel Klabbers
03744e89a3 changes for stable 2021-05-25 16:32:16 +02:00
Daniel Klabbers
ddc49d8280 changes for stable 2021-05-25 16:29:56 +02:00
Daniel Klabbers
d37a43c795 changes for stable 2021-05-25 16:26:34 +02:00
Daniel Klabbers
1c2e96f30b changes for stable 2021-05-25 16:17:35 +02:00
Daniel Klabbers
8ad2f77cff changes for stable 2021-05-25 16:03:01 +02:00
Daniel Klabbers
30e21d29f6 changes for stable 2021-05-25 16:01:45 +02:00
Daniel Klabbers
b28e6c510f changes for stable 2021-05-25 15:58:02 +02:00
Daniel Klabbers
9222e93135 remove phpunit cache 2021-05-25 15:49:32 +02:00
Daniel Klabbers
222584b814 remove ide file 2021-05-25 15:41:21 +02:00
Daniel Klabbers
cf6e1e5a5a changes for stable 2021-05-25 15:31:57 +02:00
Daniel Klabbers
a20651617e changes for stable 2021-05-25 15:28:08 +02:00
Daniel Klabbers
5634d61f27 changes for stable 2021-05-25 15:27:04 +02:00
Daniel Klabbers
cce3e072fb changes for stable 2021-05-25 15:13:30 +02:00
Daniel Klabbers
b67889f56e use shorter constraint 2021-05-25 15:07:57 +02:00
Daniel Klabbers
72dedbda42 updated changelog 2021-05-25 15:06:30 +02:00
Daniel Klabbers
fa23443528 npm audit fix 2021-05-25 15:03:21 +02:00
Daniël Klabbers
db7c7911d4 Version constant for 1.0.0 (#2885) 2021-05-25 15:00:21 +02:00
flarum-bot
37c1933d37 Bundled output for commit 07e93747be3625e7d12f8dadad4577aa11ebffac
Includes transpiled JS/TS.

[skip ci]
2021-05-25 07:03:39 +00:00
Daniël Klabbers
07e93747be Merge pull request #70 from flarum/sm/2879-support-smart-quotes
Support smart quotes in mentions format
2021-05-25 09:02:38 +02:00
SychO9
b0a301229a Tweak test name and add posts mention equivalent test 2021-05-25 00:15:10 +01:00
SychO9
cc62044e6f Support smart quotes in mentions format 2021-05-24 21:49:31 +01:00
David Wheatley
df4b5969e3 Add missing typing packages as dependencies
These are required for core's global packages shim to work.
2021-05-20 22:51:33 +01:00
David Wheatley
819e2e1d33 Change first line to be a heading 2021-05-20 22:09:15 +01:00
Alexander Skvortsov
99ecc6f917 Apply fixes from StyleCI
[ci skip] [skip ci]
2021-05-18 07:08:50 +00:00
Alexander Skvortsov
2042eed99f Fix onOneServer, withoutOverlapping console scheduling options
Flarum doesn't fully use Laravel's cache system, but rather
creates and binds a single cache store.
See \Flarum\Foundation\InstalledSite::registerCache
Since certain config options (e.g. withoutOverlapping, onOneServer)
need the cache, we must override the cache factory we give to the scheduling
mutexes so it returns our single custom cache.
2021-05-18 03:08:32 -04:00
flarum-bot
09615f1a85 Bundled output for commit 2b3691e7cc1831e5a7cb9c8fc3ccbfee4a6c269d
Includes transpiled JS/TS, and Typescript declaration files (typings).

[skip ci]
2021-05-18 05:39:33 +00:00
Alexander Skvortsov
2b3691e7cc Fix insertText
In 60dea59815e10d453421117fa681a6474eb29ec8, insertText was modified from the original to work with reply mentioning. This was done due to a misunderstanding of the API: the selection range isn't the selection to replace, but rather the final selection state after replacing the *current* selection with the text. This commit restores the original, correct implementation of insertText and instead adjusts the `insertBetween`method of BasicEditorDriver to set selection state before executing `insertText`.

Fixes https://github.com/flarum/core/issues/2877
2021-05-18 01:37:19 -04:00
flarum-bot
5ccac5d607 Bundled output for commit 7f37e36241c324710422b0bb07380c232ccd32d9
Includes transpiled JS/TS.

[skip ci]
2021-05-18 05:20:53 +00:00
Alexander Skvortsov
7f37e36241 Avoid submitting forms with MarkdownButton
Add type="button" to the component so that it won't submit if placed inside a form.

Fixes https://github.com/flarum/core/issues/2875
2021-05-18 01:19:52 -04:00
Alexander Skvortsov
c39724eae2 Fix filesystem wrong method call
The proper method is `exists`, not `has`.
2021-05-17 18:04:08 -04:00
Sami Mazouz
a311edf106 Update tests to use setting method (#68) 2021-05-17 22:46:02 +01:00
Sami Mazouz
a6695e10cd Check that included array exists (#132) 2021-05-17 16:16:00 -04:00
Daniel Klabbers
54b52051a9 fix missing import of container for resolving the queue connection from ioc 2021-05-17 21:13:30 +02:00
flarum-bot
f9d97b60d5 Bundled output for commit f076329636819d45a4e2533c873f589124f8d154
Includes transpiled JS/TS.

[skip ci]
2021-05-17 13:44:50 +00:00
David Wheatley
f076329636 Fix tooltip deprecation warning 2021-05-17 14:43:35 +01:00