Compare commits

...

2 Commits

Author SHA1 Message Date
b2bf402e20 chore(master): release 0.8.1 2025-11-21 09:41:46 +02:00
c6d757bee6 fix: migration 2025-11-21 09:40:04 +02:00
5 changed files with 14 additions and 7 deletions

View File

@@ -1 +1 @@
{".":"0.8.0"}
{".":"0.8.1"}

View File

@@ -1,5 +1,12 @@
# Changelog
## [0.8.1](https://github.com/chenasraf/nextcloud-forum/compare/v0.8.0...v0.8.1) (2025-11-21)
### Bug Fixes
* migration ([c6d757b](https://github.com/chenasraf/nextcloud-forum/commit/c6d757bee606280061a3ba359d3137b95838f444))
## [0.8.0](https://github.com/chenasraf/nextcloud-forum/compare/v0.7.0...v0.8.0) (2025-11-21)

View File

@@ -36,7 +36,7 @@ This app is in early stages of development. While functional, you may encounter
The forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control.
]]></description>
<version>0.8.0</version>
<version>0.8.1</version>
<licence>agpl</licence>
<author mail="contact@casraf.dev" homepage="https://casraf.dev">Chen Asraf</author>
<namespace>Forum</namespace>

View File

@@ -74,15 +74,15 @@ class Version4Date20251120210339 extends SimpleMigrationStep {
// Light mode uses darker colors, dark mode uses lighter colors for better contrast
$roleColors = [
1 => [
'light' => '#dc2626', // Red 600
'light' => '#dc2626', // Red 600 - Admin
'dark' => '#f87171', // Red 400
],
2 => [
'light' => '#2563eb', // Blue 600
'light' => '#2563eb', // Blue 600 - Moderator
'dark' => '#60a5fa', // Blue 400
],
'User' => [
'light' => '#059669', // Emerald 600
3 => [
'light' => '#059669', // Emerald 600 - User
'dark' => '#34d399', // Emerald 400
],
];

View File

@@ -1 +1 @@
0.8.0
0.8.1