mirror of https://github.com/itflow-org/itflow
Update Changelog and version
This commit is contained in:
parent
75ed461c67
commit
923001928c
13
CHANGELOG.md
13
CHANGELOG.md
|
|
@ -2,6 +2,19 @@
|
||||||
|
|
||||||
This file documents all notable changes made to ITFlow.
|
This file documents all notable changes made to ITFlow.
|
||||||
|
|
||||||
|
## [25.03.5]
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Fixed the user listing issue when copying a trip.
|
||||||
|
- Corrected the display of recurring invoice amounts on the dashboard.
|
||||||
|
- Fixed the linking of entities with assets and contacts.
|
||||||
|
- Resolved the issue with displaying the correct mobile country code in the contact listing.
|
||||||
|
- Set the default date to `9999-12-31` to ensure future items (like invoices) are displayed by default.
|
||||||
|
- Fixed the display issue where file folders were not showing properly during document creation.
|
||||||
|
- Migrated from Dragula to SortableJS for a more modern, mobile-friendly solution.
|
||||||
|
- Added Handlebars icons for drag-and-drop items.
|
||||||
|
- Changed behavior to open Contact and Asset Details pages directly instead of using a modal.
|
||||||
|
|
||||||
## [25.03.4]
|
## [25.03.4]
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
|
||||||
|
|
@ -244,7 +244,7 @@ if (isset($_GET['asset_id'])) {
|
||||||
data-ajax-id="<?php echo $asset_id; ?>">
|
data-ajax-id="<?php echo $asset_id; ?>">
|
||||||
<i class="fas fa-fw fa-edit"></i>
|
<i class="fas fa-fw fa-edit"></i>
|
||||||
</button>
|
</button>
|
||||||
<h3 class="text-bold"><i class="fa fa-fw text-secondary fa-<?php echo $device_icon; ?> mr-3"></i><?php echo $asset_name; ?></h3>
|
<h4 class="text-bold"><i class="fa fa-fw text-secondary fa-<?php echo $device_icon; ?> mr-3"></i><?php echo $asset_name; ?></h4>
|
||||||
<?php if ($asset_photo) { ?>
|
<?php if ($asset_photo) { ?>
|
||||||
<img class="img-fluid img-circle p-3" alt="asset_photo" src="<?php echo "uploads/clients/$client_id/$asset_photo"; ?>">
|
<img class="img-fluid img-circle p-3" alt="asset_photo" src="<?php echo "uploads/clients/$client_id/$asset_photo"; ?>">
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
@ -405,7 +405,7 @@ if (isset($_GET['asset_id'])) {
|
||||||
|
|
||||||
<div class="card card-dark">
|
<div class="card card-dark">
|
||||||
<div class="card-header py-2">
|
<div class="card-header py-2">
|
||||||
<h3 class="card-title mt-2"><i class="fa fa-fw fa-ethernet mr-2"></i><?php echo $asset_name; ?> Network Interfaces</h3>
|
<h3 class="card-title mt-2"><i class="fa fa-fw fa-ethernet mr-2"></i>Interfaces</h3>
|
||||||
<div class="card-tools">
|
<div class="card-tools">
|
||||||
<div class="btn-group">
|
<div class="btn-group">
|
||||||
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#addAssetInterfaceModal">
|
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#addAssetInterfaceModal">
|
||||||
|
|
|
||||||
|
|
@ -5,4 +5,4 @@
|
||||||
* 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.
|
* 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.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
DEFINE("APP_VERSION", "25.03.4");
|
DEFINE("APP_VERSION", "25.03.5");
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue