Skip to content

Commit 9230019

Browse files
committed
Update Changelog and version
1 parent 75ed461 commit 9230019

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
This file documents all notable changes made to ITFlow.
44

5+
## [25.03.5]
6+
7+
### Fixed
8+
- Fixed the user listing issue when copying a trip.
9+
- Corrected the display of recurring invoice amounts on the dashboard.
10+
- Fixed the linking of entities with assets and contacts.
11+
- Resolved the issue with displaying the correct mobile country code in the contact listing.
12+
- Set the default date to `9999-12-31` to ensure future items (like invoices) are displayed by default.
13+
- Fixed the display issue where file folders were not showing properly during document creation.
14+
- Migrated from Dragula to SortableJS for a more modern, mobile-friendly solution.
15+
- Added Handlebars icons for drag-and-drop items.
16+
- Changed behavior to open Contact and Asset Details pages directly instead of using a modal.
17+
518
## [25.03.4]
619

720
### Fixed

asset_details.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@
244244
data-ajax-id="<?php echo $asset_id; ?>">
245245
<i class="fas fa-fw fa-edit"></i>
246246
</button>
247-
<h3 class="text-bold"><i class="fa fa-fw text-secondary fa-<?php echo $device_icon; ?> mr-3"></i><?php echo $asset_name; ?></h3>
247+
<h4 class="text-bold"><i class="fa fa-fw text-secondary fa-<?php echo $device_icon; ?> mr-3"></i><?php echo $asset_name; ?></h4>
248248
<?php if ($asset_photo) { ?>
249249
<img class="img-fluid img-circle p-3" alt="asset_photo" src="<?php echo "uploads/clients/$client_id/$asset_photo"; ?>">
250250
<?php } ?>
@@ -405,7 +405,7 @@
405405

406406
<div class="card card-dark">
407407
<div class="card-header py-2">
408-
<h3 class="card-title mt-2"><i class="fa fa-fw fa-ethernet mr-2"></i><?php echo $asset_name; ?> Network Interfaces</h3>
408+
<h3 class="card-title mt-2"><i class="fa fa-fw fa-ethernet mr-2"></i>Interfaces</h3>
409409
<div class="card-tools">
410410
<div class="btn-group">
411411
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#addAssetInterfaceModal">

includes/app_version.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
* Update this file each time we merge develop into master. Format is YY.MM (add a .v if there is more than one release a month.
66
*/
77

8-
DEFINE("APP_VERSION", "25.03.4");
8+
DEFINE("APP_VERSION", "25.03.5");

0 commit comments

Comments
 (0)