Compare commits

..

6 Commits
8.8 ... 8.8.1

Author SHA1 Message Date
Mario
8c9d2bc6f6 Merge branch 'dev' 2023-11-27 08:48:47 +00:00
Mario
78ad5ca713 changelog 2023-11-27 08:48:23 +00:00
Mario
43c2e71b25 Merge branch 'dev' 2023-11-27 08:45:19 +00:00
Mario
5b9f32fade Merge branch 'dev' into 'dev'
Update doubleleft.css and doubleright.css according to v.8.8 default.css

See merge request hubzilla/core!2074
2023-11-27 08:44:25 +00:00
Mario
76a1a6da34 version 8.8.1 2023-11-27 08:42:09 +00:00
zlaxy
a2b0abc90d Update doubleleft.css and doubleright.css according to v.8.8 default.css 2023-11-27 10:50:31 +03:00
4 changed files with 15 additions and 7 deletions

View File

@@ -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

View File

@@ -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);

View File

@@ -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;
}

View File

@@ -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;
}