Update Changelog

This commit is contained in:
johnnyq 2025-01-29 15:22:52 -05:00
parent ffca7ff445
commit c4980a1241
2 changed files with 53 additions and 51 deletions

View File

@ -2,19 +2,19 @@
This file documents all notable changes made to ITFlow.
## [UNRELEASED]
## [25.01.01]
### Added / Changed
- Greatly Improved MFA Setup Flow UI/UX
- Fixed Client Portal redirect whgen login key is enabled
- Completely redesigned the Multi-Factor Authentication (MFA) Setup and Enforcement Flow UI/UX for a more intuitive user experience.
- Added a "Member" column in the roles listing for improved visibility.
- General UI/UX improvements, along with minor performance optimizations and cleanups.
### Fixed
- Stripe now shows as a payment option in the add recurring payment modal
- Fixed Inaccurate Quarter 2 results in Profit & Loss Report
- Fixed OTP not showing on hover when in contact or asset details section
### BREAKING CHANGES
- Completely removed old cron scripts along with cron key, new cron scripts are located in /scripts/ directory, no cron key rrequired.
- Fixed an issue where Stripe was not appearing as a payment option in the "Add Recurring Payment" modal.
- Corrected inaccurate Quarter 2 results in the Profit & Loss Report.
- Resolved the issue where OTP was not displaying correctly on hover in the Contact or Asset Details sections.
- Archived contacts no longer appear in the Bulk Mail section.
- Fixed an issue where the Ticket Assign Modal was showing only ITFLOW users and not Client Portal users.
## [25.01]

View File

@ -2,7 +2,7 @@
require_once "config.php";
require_once "functions.php";
require_once "check_login.php";
require_once 'plugins/totp/totp.php';
require_once 'plugins/totp/totp.php'; //TOTP MFA Lib
// Get Company Logo
$sql = mysqli_query($mysqli, "SELECT company_logo FROM companies");
@ -97,61 +97,63 @@ $data = "otpauth://totp/ITFlow:$session_email?secret=$token";
</div>
<!-- /.login-box -->
<!-- REQUIRED SCRIPTS -->
<!-- REQUIRED SCRIPTS -->
<!-- Bootstrap 4 -->
<script src="plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Bootstrap 4 -->
<script src="plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Custom js-->
<script src="plugins/clipboardjs/clipboard.min.js"></script>
<!-- Custom js-->
<script src="plugins/clipboardjs/clipboard.min.js"></script>
<script>
<script>
// Slide alert up after 4 secs
$("#alert").fadeTo(5000, 500).slideUp(500, function(){
// Slide alert up after 4 secs
$("#alert").fadeTo(5000, 500).slideUp(500, function(){
$("#alert").slideUp(500);
});
});
// ClipboardJS
// ClipboardJS
// Tooltip
// Tooltip
$('button').tooltip({
$('button').tooltip({
trigger: 'click',
placement: 'bottom'
});
});
function setTooltip(btn, message) {
function setTooltip(btn, message) {
$(btn).tooltip('hide')
.attr('data-original-title', message)
.tooltip('show');
}
}
function hideTooltip(btn) {
function hideTooltip(btn) {
setTimeout(function() {
$(btn).tooltip('hide');
}, 1000);
}
}
// Clipboard
// Clipboard
var clipboard = new ClipboardJS('.clipboardjs');
var clipboard = new ClipboardJS('.clipboardjs');
clipboard.on('success', function(e) {
clipboard.on('success', function(e) {
setTooltip(e.trigger, 'Copied!');
hideTooltip(e.trigger);
});
});
clipboard.on('error', function(e) {
clipboard.on('error', function(e) {
setTooltip(e.trigger, 'Failed!');
hideTooltip(e.trigger);
});
});
// Enable Popovers
$(function () {
// Enable Popovers
$(function () {
$('[data-toggle="popover"]').popover()
});
});
</script>
</script>
</body>
</html>