Compare commits

..

8 Commits

Author SHA1 Message Date
Sami Mazouz e2eb532b31
chore: v2.0.0-beta.3 2025-05-02 09:52:45 +01:00
Daniël Klabbers 071217b736 fix: we need to include the gitignores
We need to include gitignores so that installations with composer will
include these files in storage. This will assist people in committing
new installs into git without losing those folders.

The previous commit was reverted because it would mark these folders to
be tracked by git again, which is not what we want.
2025-02-25 22:33:21 +01:00
Daniël Klabbers abe2774a71 Revert "fix: storage folders drop with composer install"
This reverts commit c5304b93f1.
2025-02-25 22:32:12 +01:00
Daniël Klabbers c5304b93f1 fix: storage folders drop with composer install
When you install using composer the .gitattributes causes the gitignore
files inside the storage folders (and the root) to disappear. If you
then try to commit the project to git it won't include these folders,
nor show you that you can include them.

With this change we renamed the gitignores to gitkeep to ensure these
files remain part of your installation when installing with composer.
They will then also show up in your git to be versioned.
2025-02-25 22:25:18 +01:00
Sami Mazouz 1f2c192401
chore: v2.0.0-beta.2 2025-01-17 10:24:42 +01:00
Daniël Klabbers 6199ee6b98
fix: screenshot link not working 2025-01-12 19:58:42 +01:00
Sami Mazouz 3de6d67fd7
fix: minimum stability beta 2024-12-12 18:04:53 +01:00
Sami Mazouz 9f018e8e6f
chore: 2.0.0-beta.1 preparations (#93) 2024-12-08 15:25:57 +01:00
4 changed files with 21 additions and 4 deletions

1
.gitattributes vendored
View File

@ -1,5 +1,4 @@
.gitattributes export-ignore
.gitignore export-ignore
.gitmodules export-ignore
composer.lock -merge

View File

@ -1,5 +1,19 @@
# Changelog
## [2.0.0-beta.3](https://github.com/flarum/flarum/compare/v2.0.0-beta.2...v2.0.0-beta.3)
No changes.
## [2.0.0-beta.2](https://github.com/flarum/flarum/compare/v2.0.0-beta.1...v2.0.0-beta.2)
No changes.
## [2.0.0-beta.1](https://github.com/flarum/flarum/compare/v1.8.0...v2.0.0-beta.1)
### Added
* Messages extension
* GDPR extension
## [1.8.0](https://github.com/flarum/flarum/compare/v1.7.0...v1.8.0)
No changes.

View File

@ -18,7 +18,7 @@
* **Powerful and extensible.** Customize, extend, and integrate Flarum to suit your community. Flarums architecture is amazingly flexible, with a powerful Extension API.
![screenshot](https://flarum.org/assets/img/home-screenshot.png)
![screenshot](https://flarum.org/assets/flarum/home-screenshot.png)
## Installation

View File

@ -21,16 +21,18 @@
"docs": "https://docs.flarum.org/"
},
"require": {
"flarum/core": "^1.8",
"flarum/core": "^2.0.0-beta.3",
"flarum/approval": "*",
"flarum/bbcode": "*",
"flarum/emoji": "*",
"flarum/lang-english": "*",
"flarum/flags": "*",
"flarum/gdpr": "*",
"flarum/likes": "*",
"flarum/lock": "*",
"flarum/markdown": "*",
"flarum/mentions": "*",
"flarum/messages": "*",
"flarum/nicknames": "*",
"flarum/pusher": "*",
"flarum/statistics": "*",
@ -42,5 +44,7 @@
"config": {
"preferred-install": "dist",
"sort-packages": true
}
},
"minimum-stability": "beta",
"prefer-stable": true
}