Commit Graph

124 Commits

Author SHA1 Message Date
Toby Zerner
97c1472786 Remove sudo: false
See https://blog.travis-ci.com/2018-11-19-required-linux-infrastructure-migration
2018-11-21 18:57:14 +10:30
flarum-bot
6fb378cf98 Bundled output for commit b04eb88fa5 [skip ci] 2018-11-21 08:22:38 +00:00
Toby Zerner
b04eb88fa5 Make npm package private, update deps, change watch to dev 2018-11-21 18:45:58 +10:30
Toby Zerner
d79f36ceda Remove copyright year from LICENSE 2018-11-21 18:37:21 +10:30
Toby Zerner
23edafc47a Update dependencies 2018-11-17 18:53:38 +10:30
flarum-bot
9a9dc0e5e0 Bundled output for commit a570d41f68 [skip ci] 2018-10-21 04:51:59 +00:00
Toby Zerner
a570d41f68 Rename package 2018-10-21 15:16:21 +10:30
Toby Zerner
a30d89677b Rename package 2018-10-17 13:44:48 +10:30
Toby Zerner
aa386b2878 Add database indices. ref flarum/core#127 (#12) 2018-09-24 23:49:55 +02:00
Toby Zerner
41fd579963 Rename bootstrap.php 2018-09-21 11:47:36 +09:30
flarum-bot
b6715fb21c Bundled output for commit 2b5cf3a021 [skip ci] 2018-09-21 01:04:13 +00:00
Toby Zerner
2b5cf3a021 Update dependencies 2018-09-21 10:25:47 +09:30
flarum-bot
9d0a3d5101 Bundled output for commit c4692d2bcd [skip ci] 2018-09-16 18:52:33 +00:00
Toby Zerner
c4692d2bcd Database changes (#11)
* Update core references

* Update remaining core references
2018-09-16 20:50:31 +02:00
Franz Liedke
6b67263f01 Ensure compatibility with DB table prefix 2018-08-03 01:24:17 +02:00
Franz Liedke
716428882d Use new Frontend extender
See flarum/core#851.
2018-07-23 16:30:22 +02:00
flarum-bot
067df578c9 Bundled output for commit c89b4f79f7 [skip ci] 2018-06-20 05:23:22 +00:00
Toby Zerner
c89b4f79f7 Fix Travis' deploy key 2018-06-20 14:27:18 +09:30
Toby Zerner
d7b0d5c42c Remove progress flag 2018-06-20 13:54:01 +09:30
Toby Zerner
70f2b63bf5 Webpack (#10)
See https://github.com/flarum/core/pull/1367

* Replace gulp with webpack and npm scripts for JS compilation
* Set up Travis CI to commit compiled JS
* Restructure `js` directory; only one instance of npm, forum/admin are "submodules"
* Restructure `less` directory
2018-06-20 13:36:00 +09:30
Franz Liedke
27ea2f82f8 Merge pull request #9 from afrastgeek/master
Change fa icon prefix to fas
2018-05-10 21:21:40 +02:00
Ammar Fadhlur Rahman
28e4bfa409 Change fa icon prefix to fas 2018-05-10 15:03:19 +07:00
Toby Zerner
a3755e06f0 Only show sticky excerpt on unread discussions 2018-02-24 16:00:45 +10:30
AFR
d3baf624d1 Adapt to FontAwesome v5.0.6 icon name changes (#8) 2018-02-23 23:47:51 +01:00
Toby Zerner
8b5f1839b6 Recompile JS 2018-02-04 12:54:41 +10:30
Toby Zerner
6138794712 Excerpt added to core 2018-02-04 12:53:52 +10:30
Franz Liedke
4c8bea217b Extender: List all assets explicitly 2018-01-21 21:10:26 +01:00
Franz Liedke
a4c42dcfff Adapt new bootstrap format, use Asset extender 2018-01-16 23:19:29 +01:00
Toby Zerner
1a879ac59f Merge pull request #7 from milescellar/patch-1
Update license year range to 2018
2018-01-16 15:30:11 +10:30
Miles Cellar
b5460b6b59 Update license year range to 2018 2018-01-15 19:38:45 +01:00
Toby Zerner
cf0ae80691 Remove use of event priorities
Event priorities are no longer in Laravel - see dbbfc62bef
2018-01-11 14:22:43 +10:30
Toby Zerner
8bfaff339e Only pin to top if viewing a tag with no other filters 2018-01-11 12:28:35 +10:30
Toby Zerner
b58f97fd5e Require beta 8 2018-01-11 12:26:49 +10:30
Toby Zerner
57c730af29 Merge branch 'master' into next-back
# Conflicts:
#	src/Listener/PinStickiedDiscussionsToTop.php
2017-12-26 20:38:55 +10:30
Toby Zerner
20f6a256d5 Only touch orders property if we're going to add to it 2017-11-13 13:18:36 +10:30
Toby Zerner
c7d7b2d360 Fix subsequent pages of results not working properly 2017-11-13 09:17:55 +10:30
Toby Zerner
0ce00c6d16 Performance: Refactor SQL that pins unread sticky posts to the top
Ordering by `is_sticky and (unread subquery) desc` removes MySQL's
ability to use an index for ordering by `last_time`, which triggers a
filesort across the whole discussions table which is BAD.

This commit uses a union to add all stickied discussions to the query.
The results of the unioned queries are then ordered by the `is_sticky
and (unread subquery)` criteria, so the filesort only takes place on
a maximum of limit * 2 rows. Big performance win when you get up to
thousands of discussions!
2017-11-12 21:28:17 +10:30
Toby Zerner
7ff57e1ba4 Refactor sticky order clause into a subquery
Based on some limited testing, using a subquery seems to outperform a
join in this case (the join was invoking a temporary table, which is
always a bad sign).

This also adds logic to fix a bug where sticky discussions would remain
at the top even when marked as read using the "mark all as read" button.
I thought we had an open issue for this somewhere, but I can't seem to
find one. ref #988 #1003
2017-11-08 11:34:37 +10:30
Franz Liedke
b28f116b06 Fix class names 2017-10-03 19:45:54 +02:00
Franz Liedke
a8c43097d7 Update namespaces for beta 8
Refs flarum/core#1235.
2017-10-01 19:55:07 +02:00
Toby Zerner
86cc5fe9c8 Remove unused imports 2017-09-29 12:35:59 +09:30
Toby Zerner
5a9711fac9 Require b7 for new migration helper 2017-07-22 12:17:30 +09:30
Toby Zerner
9fb03d3549 Add default permissions 2017-07-22 12:09:36 +09:30
Franz Liedke
b775e59909 Merge pull request #6 from janga1997/patch-1
Hide diff for compiled diff files
2017-02-26 21:09:09 +01:00
VSN Reddy Janga
b7f2469523 Hide diff for compiled diff files 2017-02-20 19:28:13 +05:30
Franz Liedke
e3cd327d9f Merge pull request #5 from milescellar/patch-1
Update year
2017-01-02 20:04:47 +01:00
Miles Cellar
c1d7a2db51 Update year 2017-01-01 22:46:59 +01:00
Toby Zerner
bf71b101c2 Merge pull request #4 from flarum/analysis-z9nemo
Apply fixes from StyleCI
2016-11-29 16:01:22 +10:30
Toby Zerner
7564533d1d Apply fixes from StyleCI
[ci skip] [skip ci]
2016-11-29 05:29:44 +00:00
Toby Zerner
0653d74f0d Recompile JS 2016-11-19 22:09:38 +10:30