Skip to content

Commit

Permalink
Add support for Beta 16 (#8)
Browse files Browse the repository at this point in the history
Updated to beta.16
  • Loading branch information
davwheat authored Mar 24, 2021
2 parents 55c7e9a + 0076560 commit ed1c7ce
Show file tree
Hide file tree
Showing 7 changed files with 5,289 additions and 147 deletions.
4 changes: 2 additions & 2 deletions LICENSE.md → LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2020 FriendsOfFlarum
Copyright (c) 2019-2021 FriendsOfFlarum
Copyright (c) 2016-2019 Flagrow

Permission is hereby granted, free of charge, to any person obtaining a copy
Expand All @@ -19,4 +19,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
SOFTWARE.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ A [Flarum](http://flarum.org) extension. Makes the human time (2 minutes ago) up

### Installation

Use [Bazaar](https://discuss.flarum.org/d/5151-flagrow-bazaar-the-extension-marketplace) or install manually with composer:
Install manually with composer:

```sh
composer require fof/realtimedate
Expand All @@ -26,4 +26,4 @@ composer update fof/realtimedate
- [Packagist](https://packagist.org/packages/fof/realtimedate)
- [GitHub](https://github.com/FriendsOfFlarum/realtimedate)

An extension by [FriendsOfFlarum](https://github.com/FriendsOfFlarum).
An extension by [FriendsOfFlarum](https://github.com/FriendsOfFlarum).
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
}
],
"require": {
"flarum/core": "^0.1.0-beta.14"
"flarum/core": "^0.1.0-beta.16"
},
"extra": {
"flarum-extension": {
Expand Down
13 changes: 11 additions & 2 deletions extend.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
<?php

/*
* This file is part of fof/realtimedate.
*
* Copyright (c) 2021 FriendsOfFlarum.
*
* For the full copyright and license information, please view the LICENSE.md
* file that was distributed with this source code.
*/

namespace FoF\RealTimeDate;

use Flarum\Extend\Frontend;
use Flarum\Extend;

return [
(new Frontend('forum'))
(new Extend\Frontend('forum'))
->js(__DIR__.'/js/dist/forum.js')
];
Loading

0 comments on commit ed1c7ce

Please sign in to comment.