Skip to content

Commit 4626439

Browse files
committed
update: flectar namespace
1 parent 72fd67b commit 4626439

File tree

12 files changed

+27
-26
lines changed

12 files changed

+27
-26
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 Tomás Romero (Darkle)
3+
Copyright (c) 2025 Flectar
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ In order to install the extension, you will need to follow these simple steps.
1414
#### 📥 Installation
1515

1616
```
17-
composer require darkle/fancybox
17+
composer require flectar/flarum-fancybox
1818
```
1919
#### ♻ Updating
2020

2121
```
22-
composer require darkle/fancybox
22+
composer update flectar/flarum-fancybox
2323
php flarum cache:clear
2424
```
2525
### License
@@ -28,14 +28,15 @@ Fancybox v5 is available under the Fancyapps UI license for all applications. Yo
2828

2929
You can explore the license details at fancyapps.com/license and find purchase options at fancyapps.com/pricing.
3030

31-
- darkle/fancybox - [MIT License](https://github.com/iamdarkle/fancybox/blob/main/LICENSE)
31+
- flectar/flarum-fancybox - [MIT License](https://github.com/flectar/flarum-ext-fancybox/blob/main/LICENSE)
3232
- Fancybox v5 (You need a Fancybox license for both non-commercial and commercial use) - [Fancyapps UI license](https://fancyapps.com/license)
3333

3434
### Useful Links
3535

36+
- [Flectar](https://flectar.com/)
3637
- [Fancyapps Web](https://fancyapps.com/)
3738
- [Fancyapps GitHub](https://github.com/fancyapps/ui)
3839
- [Flarum](https://flarum.org/)
39-
- [GitHub](https://github.com/iamdarkle/fancybox)
40+
- [GitHub](https://github.com/flectar/flarum-ext-fancybox)
4041
- [Composer](https://getcomposer.org/)
4142
- [Packagist](https://packagist.org/)

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "darkle/fancybox",
2+
"name": "flectar/flarum-fancybox",
33
"description": "Fancybox is a touch enabled and responsive tool for displaying images in a 'lightbox' that floats overtop of web page.",
44
"type": "flarum-extension",
55
"keywords": [
@@ -11,21 +11,21 @@
1111
"license": "MIT",
1212
"authors": [
1313
{
14-
"name": "Tomás Romero",
15-
"email": "tomasromero@outlook.com"
14+
"name": "Flectar",
15+
"email": "tomas@flectar.com"
1616
}
1717
],
1818
"support": {
19-
"issues": "https://github.com/iamdarkle/fancybox/issues",
20-
"source": "https://github.com/iamdarkle/fancybox",
19+
"issues": "https://github.com/flectar/flarum-ext-fancybox/issues",
20+
"source": "https://github.com/flectar/flarum-ext-fancybox",
2121
"forum": "https://discuss.flarum.org/d/29102"
2222
},
2323
"require": {
2424
"flarum/core": "^1.8.0"
2525
},
2626
"autoload": {
2727
"psr-4": {
28-
"Darkle\\Fancybox\\": "src/"
28+
"Flectar\\Fancybox\\": "src/"
2929
}
3030
},
3131
"extra": {

extend.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
<?php
22

33
/*
4-
* This file is part of iamdarkle/fancybox
4+
* This file is part of flectar/flarum-fancybox.
55
*
6-
* Copyright (c) 2024 Tomás Romero.
6+
* Copyright (c) 2025 Flectar.
77
*
88
* For the full copyright and license information, please view the LICENSE.md
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Darkle\Fancybox;
12+
namespace Flectar\Fancybox;
1313

1414
use Flarum\Extend;
15-
use Darkle\Fancybox\WrapImagesInGallery;
16-
use Darkle\Fancybox\DefineGalleryTemplate;
17-
use Darkle\Fancybox\AddExcerptToDiscussion;
15+
use Flectar\Fancybox\WrapImagesInGallery;
16+
use Flectar\Fancybox\DefineGalleryTemplate;
17+
use Flectar\Fancybox\AddExcerptToDiscussion;
1818

1919
return [
2020
(new Extend\Frontend('forum'))

js/dist/forum.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/dist/forum.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@darkle/fancybox",
2+
"name": "@flectar/flarum-fancybox",
33
"version": "0.0.0",
44
"private": true,
55
"prettier": "@flarum/prettier-config",

js/src/forum/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import Model from 'flarum/common/Model';
77

88
import {Carousel, Fancybox} from '@fancyapps/ui';
99

10-
app.initializers.add('darkle/fancybox', () => {
10+
app.initializers.add('flectar/flarum-fancybox', () => {
1111
extend(CommentPost.prototype, 'refreshContent', function () {
1212
if (this.isEditing()) return;
1313

src/AddExcerptToDiscussion.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Darkle\Fancybox;
3+
namespace Flectar\Fancybox;
44

55
use s9e\TextFormatter\Configurator;
66

0 commit comments

Comments
 (0)