Commit Graph

1900 Commits

Author SHA1 Message Date
Toby Zerner
07f38afc4d Tweak user email confirmation alert
- Make sure is_activated is serialized to a bool (otherwise "0" will evaluate to true)
- Remove "error" class from message so it's more friendly
- Make the alert more prominent by mounting it into a new div at the top of the page
- Add loading UX to the resend button
2016-03-23 22:17:42 +10:30
Franz Liedke
41cb9ea32e Make StyleCI happy 2016-03-23 19:54:04 +09:00
Toby Zerner
d158131b5b Merge pull request #862 from sijad/confirm-msg
Show alert for unverified User
2016-03-23 21:19:02 +10:30
Sajjad Hasehmian
74e1b14177 Show alert for unverified User 2016-03-22 18:52:32 +04:30
Franz Liedke
701ea5ed26 info: Show commit hashes for Flarum core and extensions 2016-03-22 00:55:10 +09:00
Franz Liedke
0175eb490b info: Show loaded PHP extensions 2016-03-22 00:33:39 +09:00
Franz Liedke
a8c1641066 info: Show installation path 2016-03-22 00:29:58 +09:00
Franz Liedke
c90bc3a753 info: Show base URL 2016-03-22 00:28:02 +09:00
Franz Liedke
fb954a0e0d info: Print PHP version, too 2016-03-22 00:22:40 +09:00
Franz Liedke
77b9669bba Travis: Do not run PhpUnit through Composer
We need to run PhpUnit with xDebug enabled in order to collect
code coverage information. It is disabled for performance reasons,
though: https://github.com/travis-ci/travis-ci/issues/5780.
2016-03-21 23:12:09 +09:00
Franz Liedke
42902f18b1 Travis: Generate code coverage report when running tests 2016-03-21 20:21:51 +09:00
Toby Zerner
0c624f6c45 Oops, back to Mithril 0.2.3! 2016-03-21 21:25:00 +10:30
Toby Zerner
b62e25218a Merge pull request #844 from Luceos/codecov
added integration with codecov to track coverage of tests
2016-03-21 20:19:15 +10:30
Franz Liedke
e3ddb8149d Make console command descriptions consistent 2016-03-20 23:16:08 +09:00
Franz Liedke
f2997322b0 Get rid of some repetition 2016-03-20 23:15:26 +09:00
Franz Liedke
fba4d982ba Add first, basic version of info command
This will hopefully help in debugging some problems.
2016-03-20 23:12:20 +09:00
Franz Liedke
e15653de1c Composer: Sort dependencies alphabetically 2016-03-20 22:27:43 +09:00
Franz Liedke
efb0e7e2b1 Update to latest version of text-formatter 2016-03-20 22:25:45 +09:00
Toby Zerner
42e1bd9e43 Merge pull request #882 from flarum/analysis-8PxnZR
Applied fixes from StyleCI
2016-03-20 20:37:03 +10:30
Toby Zerner
2c27b5c6d7 Applied fixes from StyleCI 2016-03-20 06:06:43 -04:00
Franz Liedke
68759bbc4a AbstractOAuth2Controller: Store provider and token in class properties
This way, they are available for subclasses to access them in one of
the template methods.

Refs #673.
2016-03-18 22:22:35 +09:00
Franz Liedke
f13956d94b Fix JSON serialization error on PHP 7
Closes #685.

Thanks to @sijad.
2016-03-18 21:11:54 +09:00
Toby Zerner
3a8b11e389 Extract sortMap variable
Also revert previous uncommitted change in dist file
2016-03-18 10:06:58 +10:30
Toby Zerner
3d49fc1315 Prevent users from being incorrectly able to delete their own discussions 2016-03-18 09:39:41 +10:30
Toby Zerner
087ab3fa1f Lighten discussion list hover color
When the list is shown in the side-pane, the background of the currently-selected discussion is the @control-bg. The hover color shouldn't be quite as strong as that.
2016-03-18 09:38:37 +10:30
Toby Zerner
1a95764909 Fix "sort by" dropdown being empty
Must be something in the latest version of Chrome that caused this to start being a problem, because @franzliedke started experiencing it a few days ago, and I only just experienced it for the first time yesterday.
2016-03-18 09:37:25 +10:30
Toby Zerner
41f48deddc Fix regression with maintenance of scroll position when jumping between discussion list filters 2016-03-18 09:36:09 +10:30
Toby Zerner
0211e4539c Remove unmaintained changelog
We will look at reintroducing once out of beta.
2016-03-18 09:34:48 +10:30
Toby Zerner
b45bd3a581 Upgrade to flarum-gulp 0.2.0 / Babel 6 2016-03-18 09:31:01 +10:30
Franz Liedke
f7e2e14909 Merge pull request #858 from sijad/update-mithril
Update Mithril
2016-03-16 10:11:05 +09:00
Sajjad Hasehmian
cba1868d9f Update Mithril 2016-03-16 00:48:01 +03:30
Toby Zerner
4037fb566c Increase avatar upload max file size 2016-03-14 09:25:02 +10:30
Toby Zerner
8888fb2586 Add missing super.init calls 2016-03-11 13:45:38 +10:30
Toby Zerner
9e9ef6fe0f Dramatically improve performance when typing in a modal
Since Mithril doesn't really offer granular redraw control, typing in a text input on a modal would trigger a redraw for the whole page (including the page content behind the modal) on every keystroke. This commit allows components to be "paused" so that their vdom subtree will be retained instead of reconstructed on subsequent redraws. When a modal is opened, we pause the main page component, and when it's closed, we unpause it. This means that while a modal is visible, only the content inside of the modal will be redrawn, dramatically improving performance.
2016-03-11 13:18:16 +10:30
Toby Zerner
e46878902a Remove sudo mode and add password confirmation when changing email address
closes #674
2016-03-11 12:44:18 +10:30
Toby Zerner
c95dbc0cb4 Remove white border from badges, decrease overlap 2016-03-11 12:01:47 +10:30
Toby Zerner
66398d423e Add padding between items in fieldsets on the settings page 2016-03-10 17:56:18 +10:30
Toby Zerner
6351c2354f Fix browser back button losing scroll position. ref #835 2016-03-10 17:55:35 +10:30
Toby Zerner
7c25880806 Fix posts being incorrectly visible on user page. closes #680
- When no discussions are visible, the query that filters posts by discussion visibility was incorrectly making all posts visible.
- Also hide user profiles altogether if discussions are not visible.
2016-03-10 17:50:29 +10:30
Toby Zerner
001c21c329 Clean up linting stuff. closes #852 2016-03-10 17:13:30 +10:30
Franz Liedke
7e872cc213 Whoopsie, fix syntax error 2016-03-08 00:05:53 +09:00
Franz Liedke
a1f8651894 Add another migration shortcut for defining default settings 2016-03-08 00:02:33 +09:00
Toby Zerner
c05f598dd0 Merge pull request #846 from sijad/extension-path
Remove 'extensions' path for writable check
2016-03-04 17:04:01 +10:30
Sajjad Hasehmian
979fef1163 Remove 'extensions' path for writable check 2016-03-04 09:55:40 +03:30
Daniel Klabbers
f1236a90b1 added integration with codecov to track coverage of tests 2016-03-03 11:50:09 +01:00
Toby Zerner
0671c676b4 Merge pull request #843 from Luceos/add-tests
adding new tests to cover api handlers
2016-03-03 20:53:15 +10:30
Daniel Klabbers
7e65a7fd5b adding new tests to cover api handlers, part 1 of #245 and #74 2016-03-03 11:00:11 +01:00
Toby Zerner
f1fb33cc55 Fix fatal error when deleting a discussion forever. closes #842 2016-03-03 12:52:53 +10:30
Toby Zerner
4fa89dbb13 Merge pull request #841 from Luceos/drop-ext-dir
Refactoring to drop extensions dir, see #774
2016-03-02 18:46:08 +10:30
Daniel Klabbers
c151bc700a Refactoring to drop extensions dir, see #774
satisfy nitpick
2016-03-02 09:04:10 +01:00