1
0
mirror of https://github.com/flarum/core.git synced 2025-07-16 14:26:25 +02:00
Commit Graph

4299 Commits

Author SHA1 Message Date
fbc000d445 Bundled output for commit 31c6bae4d5
Includes transpiled JS/TS, and Typescript declaration files (typings).

[skip ci]
2021-06-06 01:50:56 +00:00
31c6bae4d5 npm audit fix 2021-06-06 02:47:58 +01:00
f14c6b1285 Update changelog 2021-06-06 02:44:32 +01:00
5ae2eb9f1e Fix XSS vulnerability 2021-06-06 02:41:48 +01:00
571e9c95d3 Update version constant to 1.0.2 2021-06-06 02:09:03 +01:00
688ca6ad3d update version constant for 1.0.2-dev 2021-06-02 09:10:01 +02:00
0bb0797245 v1.0.1 changelog and constant 2021-06-02 09:05:36 +02:00
3865fc21f9 Apply fixes from StyleCI
[ci skip] [skip ci]
2021-05-31 14:08:49 +00:00
f229e3478e ref #2890, no longer using process and dump 2021-05-31 16:08:15 +02:00
795918c274 Revert "Revert "Squash core migrations (#2842)""
This reverts commit 3a524e6845.
2021-05-31 15:49:20 +02:00
11c66f52b9 updated version constraint string 2021-05-29 22:42:28 +02:00
3a524e6845 Revert "Squash core migrations (#2842)"
This reverts commit 03e4f31bda.
2021-05-29 22:38:25 +02:00
322b1a083b changelog and version constraint fix for flarum/testing 2021-05-25 23:01:54 +02:00
db7c7911d4 Version constant for 1.0.0 (#2885) 2021-05-25 15:00:21 +02:00
99ecc6f917 Apply fixes from StyleCI
[ci skip] [skip ci]
2021-05-18 07:08:50 +00:00
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
09615f1a85 Bundled output for commit 2b3691e7cc
Includes transpiled JS/TS, and Typescript declaration files (typings).

[skip ci]
2021-05-18 05:39:33 +00:00
2b3691e7cc Fix insertText
In 60dea59815, 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
c39724eae2 Fix filesystem wrong method call
The proper method is `exists`, not `has`.
2021-05-17 18:04:08 -04:00
54b52051a9 fix missing import of container for resolving the queue connection from ioc 2021-05-17 21:13:30 +02:00
4db6810e40 Bundled output for commit fbe6beef28
Includes transpiled JS/TS, and Typescript declaration files (typings).

[skip ci]
2021-05-17 00:29:54 +00:00
fbe6beef28 Fix Badge className not being correctly set
Fixes group icons on Admin permissions page
2021-05-17 01:27:30 +01:00
1785e6b8cb Update copyright date (#2863) 2021-05-16 19:10:33 -04:00
f41c22df6f Bundled output for commit 3b52df1d5d
Includes transpiled JS/TS, and Typescript declaration files (typings).

[skip ci]
2021-05-16 23:04:41 +00:00
3b52df1d5d Remove Beta leftover warning code 2021-05-17 00:02:21 +01:00
f9c0bda172 Bump composer reqs for 1.0.0 2021-05-16 18:27:36 -04:00
2ab5bb26eb Bundled output for commit 130a07df78
Includes transpiled JS/TS, and Typescript declaration files (typings).

[skip ci]
2021-05-16 00:14:08 +00:00
130a07df78 Drop JS copyright blocks 2021-05-15 20:11:38 -04:00
48344069a9 Bundled output for commit a325444799
Includes transpiled JS/TS, and Typescript declaration files (typings).

[skip ci]
2021-05-15 23:09:46 +00:00
a325444799 Merge pull request #2867 from flarum/as/1.0-qa-fixes
Assorted 1.0 QA fixes
2021-05-15 19:07:41 -04:00
e835e36b8e Fix glitchy group editing
Currently, when groups are edited, the new groups flicker, but the UI soon reverts to the old groups. This is because the returned API response has the old group values. This, in turn, is because we eager load groups, and when we sync the new group relation, that doesn't update the groups saved in memory. By unsetting the relation, we make sure the right groups are returned (and also available to the GroupsChanged event).

See https://github.com/flarum/core/issues/2514
2021-05-15 02:30:03 -04:00
4436d82c36 Fix CustomFooterModal Appearance
The textarea in the CustomFooterModal was much larger than in the other appearance page modals, and did not use a monospaced font. Turns out the other 2 were explicitly specified in the less. This commit adds a class that can be applied to all these modals for simpler maintenance.

Fixes https://github.com/flarum/core/issues/2865
2021-05-14 21:36:06 -04:00
c90f05cb94 Fix KeyboardNavigatable
In acd3873bbd, I tried to be clever and create a new KeyboardNavigatable object as a return value for `when`. My approach to cloning was incorrect, and caused the util to break entirely.

My original intent for having this "clone"-based behavior is that a single KeyboardNavigatable instance could be created with multiple listeners, and then "cloned" like this with different "activators" registered via "then" calls. In hindsight, this change introduces more issues than it solves: outside of just not working, the cloned "KeyboardNavigatable" instances have shared internal state (the set of callbacks), and each has write access to this internal state. This is a recipe for unpredictable behavior and confusing bugs, so best to keep things simple for now, and maybe introduce more functional behavior in later releases.

Fixes https://github.com/flarum/QualityAssurance/issues/25
2021-05-14 21:21:58 -04:00
0289a3b714 Fix 0s in notification dropdown
By casting the length int to a bool, if there are no badges, we don't display a  0. It seems that mithril will render integers, but not booleans.

Fixes https://github.com/flarum/QualityAssurance/issues/28
2021-05-14 21:08:48 -04:00
99deb2514d NotificationListState separate content method
This fixes an error where an empty notification list wouldn't show the "empty" text.

It also simplifies flow of logic and breaks the component up a bit for readability.
2021-05-14 21:04:26 -04:00
a2e5b30f37 Update copyright year 2021-05-15 00:45:09 +01:00
21e251599a Bundled output for commit a012029521
Includes transpiled JS/TS, and Typescript declaration files (typings).

[skip ci]
2021-05-14 22:37:39 +00:00
a012029521 Use slugs for user pages (#2864) 2021-05-14 23:35:50 +01:00
ef64c2ab35 Fix "add numbered list" styleSelectedText action
Looks like I missed the `numberedLines` function used by the `orderedList` function in 60dea59815
2021-05-14 18:35:11 -04:00
aa7ea1940f Fix version update page (#2862)
* Binding closures only get the container instance as argument
2021-05-14 16:10:05 +01:00
ccc7a43913 Update Application version constant to 1.0.0-dev 2021-05-13 22:19:01 +01:00
b7ad30833a Bundled output for commit 40f9d2213f
Includes transpiled JS/TS, and Typescript declaration files (typings).

[skip ci]
2021-05-13 19:58:41 +00:00
40f9d2213f Replace removed hasDiscussions method from DiscussionListPane (#2860) 2021-05-13 15:56:55 -04:00
db4216eb47 Backend cleanup (#2859)
* Extender docblocks cleanup
* Excplicit type hinting in extenders
* Bring method under constructor
* Mark some classes and methods as internal
* Remove beta references

Co-authored-by: Clark Winkelmann <clark.winkelmann@gmail.com>
2021-05-13 15:26:24 +01:00
09be7ff3b3 Bundled output for commit d0829bc3a4
Includes transpiled JS/TS, and Typescript declaration files (typings).

[skip ci]
2021-05-13 00:03:24 +00:00
d0829bc3a4 hasDiscussions method of DiscussionListState has been removed 2021-05-12 19:41:28 -04:00
12abec475f Bundled output for commit 9b21d05207
Includes transpiled JS/TS, and Typescript declaration files (typings).

[skip ci]
2021-05-12 23:29:46 +00:00
9b21d05207 Update core to use new Webpack config, flarum-tsconfig, and build action (#2856)
* Update core to use new Webpack and TSConfig

* Bump webpack dep

* Update JS build action

* Copy custom `.d.ts` files to `dist-typings` folder on typings compile

* Run workflow against action v2

This allows us to have a moving tag, like first party actions have.

* Remove bundle analyzer from core

* Use webpack config 0.1.0-beta.16.2

* Add note about checking flarum-tsconfig
2021-05-13 00:28:17 +01:00
5f2978d81f Bundled output for commit 896e1ec8ff
Includes transpiled JS/TS.

[skip ci]
2021-05-12 23:12:10 +00:00
896e1ec8ff Use proper attrs for viewForum and searchUsers 2021-05-12 18:49:11 -04:00