mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-22 17:26:14 -04:00
Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f62d16d274 | ||
|
|
f175712d4b | ||
|
|
5f942d78e6 | ||
|
|
538c8885ad | ||
|
|
c8158c3d62 | ||
|
|
1f4762060f | ||
|
|
81c3682781 | ||
|
|
2e6e1fdd55 | ||
|
|
1a09cd560b | ||
|
|
8c9d2bc6f6 | ||
|
|
78ad5ca713 | ||
|
|
43c2e71b25 | ||
|
|
5b9f32fade | ||
|
|
76a1a6da34 | ||
|
|
a2b0abc90d |
13
CHANGELOG
13
CHANGELOG
@@ -1,3 +1,14 @@
|
||||
Hubzilla 8.8.2 (2023-12-06)
|
||||
- Fix missing includes - issue #1820
|
||||
- Addon logger_stats: mproved performance reading big log files
|
||||
|
||||
|
||||
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 +41,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 +55,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
|
||||
|
||||
4
boot.php
4
boot.php
@@ -58,9 +58,11 @@ require_once('include/hubloc.php');
|
||||
require_once('include/attach.php');
|
||||
require_once('include/bbcode.php');
|
||||
require_once('include/items.php');
|
||||
require_once('include/conversation.php');
|
||||
require_once('include/acl_selectors.php');
|
||||
|
||||
define('PLATFORM_NAME', 'hubzilla');
|
||||
define('STD_VERSION', '8.8');
|
||||
define('STD_VERSION', '8.8.2');
|
||||
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;
|
||||
}
|
||||
|
||||
@@ -1487,6 +1487,7 @@ dl.bb-dl > dd > li {
|
||||
|
||||
.onoffswitch-inner {
|
||||
display: block; width: 200%; margin-left: -100%;
|
||||
color: var(--bs-secondary-color);
|
||||
transition: margin 0.19s ease-in-out;
|
||||
}
|
||||
|
||||
@@ -1498,15 +1499,15 @@ dl.bb-dl > dd > li {
|
||||
.onoffswitch-inner:before {
|
||||
content: attr(data-on);
|
||||
padding-right: 21px;
|
||||
background-color: var(--bs-secondary-bg);
|
||||
text-align: right;
|
||||
background-color: var(--bs-tertiary-bg);
|
||||
}
|
||||
|
||||
.onoffswitch-inner:after {
|
||||
content: attr(data-off);
|
||||
padding-left: 21px;
|
||||
background-color: var(--bs-secondary-bg);
|
||||
text-align: left;
|
||||
background-color: var(--bs-tertiary-bg);
|
||||
}
|
||||
|
||||
.onoffswitch-switch {
|
||||
|
||||
Reference in New Issue
Block a user