Compare commits

...

9 Commits
8.8.1 ... 8.8.2

Author SHA1 Message Date
Mario
f62d16d274 Merge branch 'dev' 2023-12-06 11:27:54 +00:00
Mario
f175712d4b typo 2023-12-06 11:27:35 +00:00
Mario
5f942d78e6 Merge branch 'dev' 2023-12-06 11:23:21 +00:00
Mario
538c8885ad changelog 2023-12-06 11:23:02 +00:00
Mario
c8158c3d62 vesrion 8.8.2 2023-12-06 11:14:00 +00:00
Mario
1f4762060f Merge branch 'dev' 2023-12-06 11:12:25 +00:00
Mario
81c3682781 more issue #1820 2023-12-06 09:47:13 +00:00
Mario
2e6e1fdd55 css fixes 2023-12-04 09:28:16 +00:00
Mario
1a09cd560b require acl_selectors.php - fix issue #1820 2023-11-30 08:02:33 +00:00
3 changed files with 11 additions and 3 deletions

View File

@@ -1,3 +1,8 @@
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

View File

@@ -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.1');
define('STD_VERSION', '8.8.2');
define('ZOT_REVISION', '6.0');
define('DB_UPDATE_VERSION', 1259);

View File

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