mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-24 10:15:47 -04:00
Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8c9d2bc6f6 | ||
|
|
78ad5ca713 | ||
|
|
43c2e71b25 | ||
|
|
5b9f32fade | ||
|
|
76a1a6da34 | ||
|
|
a2b0abc90d |
@@ -1,3 +1,9 @@
|
||||
Hubzilla 8.8.1 (2023-11-27)
|
||||
- Fix error in cards addon
|
||||
- Fix error in articles addon
|
||||
- Fix double left and right template css
|
||||
|
||||
|
||||
Hubzilla 8.8 (2023-11-25)
|
||||
- Add additional observer and channel info for nav templates
|
||||
- Do not provide confidential channel info for templates
|
||||
@@ -30,7 +36,6 @@ Hubzilla 8.8 (2023-11-25)
|
||||
- Transparent background for colorbox controls icons
|
||||
- Use body background color for colorboxes in redbasic
|
||||
|
||||
|
||||
Bugfixes
|
||||
- Remove fragment from actor urls
|
||||
- HTTPsig case insensitive digest algorithm
|
||||
@@ -45,7 +50,6 @@ Hubzilla 8.8 (2023-11-25)
|
||||
- Fix sabre/dav caldav php warnings
|
||||
- Fix public stream comments/reactions not allowed if item_fetched is set
|
||||
|
||||
|
||||
Addons
|
||||
- Superblock: fix php warnings
|
||||
- Pubcrawl: restrict mod ap_probe to admin and add checkbox for signed requests
|
||||
|
||||
2
boot.php
2
boot.php
@@ -60,7 +60,7 @@ require_once('include/bbcode.php');
|
||||
require_once('include/items.php');
|
||||
|
||||
define('PLATFORM_NAME', 'hubzilla');
|
||||
define('STD_VERSION', '8.8');
|
||||
define('STD_VERSION', '8.8.1');
|
||||
define('ZOT_REVISION', '6.0');
|
||||
|
||||
define('DB_UPDATE_VERSION', 1259);
|
||||
|
||||
@@ -19,13 +19,15 @@ main {
|
||||
#region_1 {
|
||||
position: relative;
|
||||
order: 1;
|
||||
padding: 4.5rem 7px 0px 7px;
|
||||
padding: 0 7px 0 7px;
|
||||
width: 25%;
|
||||
min-width: 300px;
|
||||
}
|
||||
|
||||
#region_2 {
|
||||
position: relative;
|
||||
flex: 1;
|
||||
order: 2;
|
||||
padding: 4.5rem 7px 200px 7px;
|
||||
padding: 0 7px 200px 7px;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
@@ -20,12 +20,14 @@ main {
|
||||
position: relative;
|
||||
flex: 1;
|
||||
order: 1;
|
||||
padding: 4.5rem 7px 200px 7px;
|
||||
padding: 0 7px 200px 7px;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
#region_2 {
|
||||
position: relative;
|
||||
order: 2;
|
||||
padding: 4.5rem 7px 0px 7px;
|
||||
padding: 0 7px 0 7px;
|
||||
width: 25%;
|
||||
min-width: 300px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user