<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Development Archives - MIDAS - Room Booking System | Blog</title>
	<atom:link href="https://mid.as/blog/category/development/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>...Making your facilities work for you!</description>
	<lastBuildDate>Wed, 06 May 2026 22:17:05 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>Security Enhancements in MIDAS v4.42</title>
		<link>https://mid.as/blog/security-enhancements-in-midas-v4-42/</link>
		
		<dc:creator><![CDATA[midas]]></dc:creator>
		<pubDate>Wed, 29 Apr 2026 07:30:01 +0000</pubDate>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Tech Insight]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[v4.42]]></category>
		<guid isPermaLink="false">https://mid.as/blog/?p=5968</guid>

					<description><![CDATA[<p>MIDAS v4.42 upgrades password hashing to Argon2id, adds session termination controls, and fixes several security bugs. See what's changed.</p>
<p>The post <a href="https://mid.as/blog/security-enhancements-in-midas-v4-42/">Security Enhancements in MIDAS v4.42</a> appeared first on <a href="https://mid.as/blog">MIDAS - Room Booking System | Blog</a>.</p>
]]></description>
										<content:encoded><![CDATA[<figure class="wp-block-post-featured-image"><img fetchpriority="high" decoding="async" width="1920" height="400" src="https://mid.as/blog/wp-content/uploads/2020/07/password-storage.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Security Enhancements" style="object-fit:cover;" srcset="https://mid.as/blog/wp-content/uploads/2020/07/password-storage.jpg 1920w, https://mid.as/blog/wp-content/uploads/2020/07/password-storage-300x63.jpg 300w, https://mid.as/blog/wp-content/uploads/2020/07/password-storage-1024x213.jpg 1024w, https://mid.as/blog/wp-content/uploads/2020/07/password-storage-768x160.jpg 768w, https://mid.as/blog/wp-content/uploads/2020/07/password-storage-1536x320.jpg 1536w" sizes="(max-width: 1920px) 100vw, 1920px" /></figure>


<p>MIDAS v4.42 brings several important security enhancements. Here&#8217;s what&#8217;s changed and why it matters.</p>



<h2 class="wp-block-heading">Argon2id now the preferred method of password hashing</h2>



<p>For many years <a href="https://mid.as/blog/the-evolution-of-password-storage-in-midas/">MIDAS has utilized &#8220;bcrypt&#8221;</a> to store password hashes. While &#8220;bcrypt&#8221; is still accepted industry practice, newer encryption methods like &#8220;Argon2id&#8221; offer improved protection.</p>



<p>&#8220;bcrypt&#8221; is computationally expensive. This means it takes a significant amount of processing time to compute each password hash. bcrypt also includes a configurable &#8220;work factor&#8221; controlling how &#8220;computationally expensive&#8221; each calculation is.</p>



<p>Back in 2017, a &#8220;work factor&#8221; of 10 was widely considered by security experts to be sufficient at the time, and this is the factor we used in MIDAS.</p>



<p>By 2020, computing power had evolved and so &#8220;best practice&#8221; was to upgrade to a &#8220;work factor&#8221; of 12, which we transparently rolled out to MIDAS for our v4.25 update that year.</p>



<p>Now in 2026, we&#8217;re firmly in the quantum computing and AI age. While bcrypt is still considered secure, it is only &#8220;computationally expensive&#8221; from a processing (CPU) perspective.</p>



<p>Newer methods, like &#8220;Argon2id&#8221;, are both processor-intensive and memory-intensive, and so offer an even greater line of defense against brute-forcing password hashes.</p>



<p>We&#8217;ve implemented Argon2id for MIDAS v4.42. End users won&#8217;t see any difference, but password hashes stored in each MIDAS system&#8217;s database are now more secure than ever, and will be automatically updated the first time a user signs in to v4.42.</p>



<p><strong>Self-Hosted customers: </strong>You&#8217;ll need to <a href="https://mid.as/kb/00129/how-to-install-perl-modules">install the Perl module</a> &#8220;Crypt::Argon2&#8221; if you wish to take advantage of this security enhancement. If this module isn&#8217;t available on your server, MIDAS will fall back to using bcrypt.</p>



<h2 class="wp-block-heading">Option to sign out a user everywhere when maximum number of failed sign-in attempts reached</h2>



<p>One of the existing security features in MIDAS is the ability for the software to automatically &#8216;lock&#8217; accounts after a configurable number of failed sign-in attempts. Account access can then be quickly restored by an administrative user, or via a link that MIDAS will email to you if your account becomes locked in this way.</p>



<p>An account becoming &#8216;locked&#8217; due to a high number of failed sign-in attempts prevents further sign-in attempts being made on that account. Until now, any existing active sessions that the user may have were allowed to continue unaffected.</p>



<p>For MIDAS v4.42, we&#8217;ve introduced a new security setting (found under MIDAS Admin Options → Security) that, if enabled and a user account becomes automatically &#8216;locked&#8217; due to a high number of failed sign-in attempts, all active sessions for that account will be automatically terminated as well.</p>



<h2 class="wp-block-heading">Suspending a user account instantly expires all active sessions for the user</h2>



<p>If an administrator manually suspends a user account, MIDAS will now also expire all active sessions for that user. Previously, if an account was manually suspended, it wouldn&#8217;t affect any currently active sessions — now it does.</p>



<h2 class="wp-block-heading">Security Fixes</h2>



<p>We&#8217;ve also addressed a handful of security and account-related bugs for v4.42 which were discovered by our team…</p>



<h3 class="wp-block-heading">Fixed: Possible to bypass forced password expiry</h3>



<p>One of the &#8220;legacy&#8221; settings in MIDAS is the ability for administrators to routinely force users to change their password. Enabling this option isn&#8217;t something that we recommend. Indeed, this is considered bad practice, as forcing users to regularly change their passwords <a href="https://isecguy.com/the-uk-governments-contradictory-advice-how-frequently-should-you-change-your-password/">actually harms rather than improves security</a>.</p>



<p>Despite that, some organizations still insist on routine password change policies, and therefore, we&#8217;ve had to retain this option in MIDAS.</p>



<p>MIDAS v4.42 fixes a small issue related to this, whereby since v4.39, if a user is forced to change their password due to it having expired, the user could easily bypass this requirement by simply hitting reload/refresh in their browser when prompted to set a new password. We&#8217;ve resolved this for v4.42.</p>



<h3 class="wp-block-heading">Fixed: Weak passwords were allowed when passwords were reset</h3>



<p>MIDAS includes a visual strength indicator when entering a new password. Very Weak, Weak, and Common passwords are blocked and aren&#8217;t allowed. However, a small bug existed that could allow a weak password to be chosen during a password reset. This has been resolved for v4.42.</p>



<h3 class="wp-block-heading">Fixed: Not possible to add new user accounts in suspended state</h3>



<p>Administrators have extensive control over the <a href="https://mid.as/help/manage-users-and-permissions/list-of-available-user-permissions">permissions</a> that can be assigned to each individual user account. Individual user accounts can also be quickly &#8216;Suspended&#8217; by an administrator. Until now, however, a small bug prevented new user accounts from being added in an initial &#8216;suspended&#8217; state. This has now been resolved for v4.42.</p>



<h2 class="wp-block-heading">3rd Party Deprecations and Updates</h2>



<p>MIDAS includes a small number of 3rd party components, and it&#8217;s important to us that we use the latest versions of these wherever possible.</p>



<p>To that end, for MIDAS v4.42 we&#8217;ve updated <a href="https://jquery.com/">jQuery to v4.00</a> and <a href="https://github.com/devbridge/jQuery-Autocomplete">jQuery-Autocomplete to v1.5.0</a>.</p>



<p>We&#8217;ve also deprecated <a href="https://github.com/qTip2/qTip2">qTip2</a>, as this is no longer maintained by the developer. qTip2 was used in MIDAS for dynamic tooltips, like those you see when you &#8216;hover&#8217; over the name of a venue in the <a href="https://mid.as/help/the-main-window/the-booking-grid">booking grid</a>.</p>



<p>Instead, we&#8217;ve built our own dynamic tooltip system from the ground up for v4.42.</p>
<p>The post <a href="https://mid.as/blog/security-enhancements-in-midas-v4-42/">Security Enhancements in MIDAS v4.42</a> appeared first on <a href="https://mid.as/blog">MIDAS - Room Booking System | Blog</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>User Interface Improvements in MIDAS v4.42</title>
		<link>https://mid.as/blog/user-interface-improvements-in-v4-42/</link>
		
		<dc:creator><![CDATA[midas]]></dc:creator>
		<pubDate>Mon, 02 Mar 2026 09:08:21 +0000</pubDate>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[user interface]]></category>
		<category><![CDATA[v4.42]]></category>
		<guid isPermaLink="false">https://mid.as/blog/?p=5970</guid>

					<description><![CDATA[<p>MIDAS v4.42 introduces a range of user interface (UI) and user experience (UX) improvements designed to make our booking software even faster, clearer, and easier to use. In this post, we&#8217;ll highlight some of the UI and UX improvements introduced in MIDAS v4.42. If you follow our blog, you&#8217;ll already know about some of the [&#8230;]</p>
<p>The post <a href="https://mid.as/blog/user-interface-improvements-in-v4-42/">User Interface Improvements in MIDAS v4.42</a> appeared first on <a href="https://mid.as/blog">MIDAS - Room Booking System | Blog</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>MIDAS v4.42 introduces a range of user interface (UI) and user experience (UX) improvements designed to make our booking software even faster, clearer, and easier to use. In this post, we&#8217;ll highlight some of the UI and UX improvements introduced in MIDAS v4.42.</p>



<p>If you <a href="https://mid.as/blog/tag/v4-42">follow our blog</a>, you&#8217;ll already know about some of the new and improved features in v4.42. One example is the <a href="https://mid.as/blog/expanded-administrative-permissions-in-midas/">expansion of administrative permissions</a>.</p>



<h2 class="wp-block-heading">Administrative Area Improvements</h2>



<p>The old &#8220;Manage MIDAS&#8221; screen has been split into separate sections, each now controlled by its own dedicated permission and accompanied by a unique icon.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><a href="https://mid.as/blog/wp-content/uploads/2026/03/new-midas-admin-options-scaled.png"><img decoding="async" width="1024" height="535" src="https://mid.as/blog/wp-content/uploads/2026/03/new-midas-admin-options-1024x535.png" alt="Redesigned administrative area icons in MIDAS v4.42" class="wp-image-6136" srcset="https://mid.as/blog/wp-content/uploads/2026/03/new-midas-admin-options-1024x535.png 1024w, https://mid.as/blog/wp-content/uploads/2026/03/new-midas-admin-options-300x157.png 300w, https://mid.as/blog/wp-content/uploads/2026/03/new-midas-admin-options-768x401.png 768w, https://mid.as/blog/wp-content/uploads/2026/03/new-midas-admin-options-1536x802.png 1536w, https://mid.as/blog/wp-content/uploads/2026/03/new-midas-admin-options-2048x1070.png 2048w" sizes="(max-width: 1024px) 100vw, 1024px" /></a><figcaption class="wp-element-caption">Redesigned administrative area icons in MIDAS v4.42</figcaption></figure>
</div>


<p>Changes have also been made within each administrative area. We&#8217;ve moved the previous &#8220;Save Changes&#8221; button from underneath the settings to being fixed in the top-right corner. This eliminates the need to scroll through lengthy settings pages to save changes.</p>



<p>We&#8217;ve also refined the way changes are saved within administrative screens.</p>



<h2 class="wp-block-heading">Improved Save and Change Indicators</h2>



<p>The addition of a new &#8220;Unsaved Changes&#8221; indicator alongside the new save button draws user&#8217;s attention to changes they&#8217;ve made to settings which have yet to be saved.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img decoding="async" width="1024" height="463" src="https://mid.as/blog/wp-content/uploads/2026/03/unsaved-changes-1024x463.png" alt="Unsaved Changes indicator in MIDAS administrative settings" class="wp-image-6137" srcset="https://mid.as/blog/wp-content/uploads/2026/03/unsaved-changes-1024x463.png 1024w, https://mid.as/blog/wp-content/uploads/2026/03/unsaved-changes-300x136.png 300w, https://mid.as/blog/wp-content/uploads/2026/03/unsaved-changes-768x347.png 768w, https://mid.as/blog/wp-content/uploads/2026/03/unsaved-changes-1536x694.png 1536w, https://mid.as/blog/wp-content/uploads/2026/03/unsaved-changes.png 1678w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Unsaved Changes indicator in MIDAS administrative settings</figcaption></figure>
</div>


<p>In addition to the UI and UX improvements in the administrative area, we&#8217;ve also improved the &#8220;Quick Tour&#8221; in MIDAS v4.42.</p>



<h2 class="wp-block-heading">Enhanced Quick Tour Experience</h2>



<p>The &#8220;Quick Tour&#8221; is shown to new users by default upon their initial sign in. It provides a brief overview of the user interface and controls.</p>



<p>We have replaced outdated third-party code previously used to generate dynamic tooltips. In its place we&#8217;ve written new code for generating these tooltips. This has allowed us to make improvements, one of which is better highlighting of elements in the &#8220;Quick Tour&#8221;.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="1004" height="688" src="https://mid.as/blog/wp-content/uploads/2026/03/quick-tour-user-control-panel.png" alt="Quick Tour: User Control Panel" class="wp-image-6138" srcset="https://mid.as/blog/wp-content/uploads/2026/03/quick-tour-user-control-panel.png 1004w, https://mid.as/blog/wp-content/uploads/2026/03/quick-tour-user-control-panel-300x206.png 300w, https://mid.as/blog/wp-content/uploads/2026/03/quick-tour-user-control-panel-768x526.png 768w" sizes="auto, (max-width: 1004px) 100vw, 1004px" /><figcaption class="wp-element-caption">Quick Tour: User Control Panel</figcaption></figure>
</div></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="812" height="432" src="https://mid.as/blog/wp-content/uploads/2026/03/quick-tour-booking-requests.png" alt="Quick Tour: Pending Booking Requests" class="wp-image-6139" srcset="https://mid.as/blog/wp-content/uploads/2026/03/quick-tour-booking-requests.png 812w, https://mid.as/blog/wp-content/uploads/2026/03/quick-tour-booking-requests-300x160.png 300w, https://mid.as/blog/wp-content/uploads/2026/03/quick-tour-booking-requests-768x409.png 768w" sizes="auto, (max-width: 812px) 100vw, 812px" /><figcaption class="wp-element-caption">Quick Tour: Pending Booking Requests</figcaption></figure>
</div></div>
</div>



<p>These updates reflect our ongoing commitment to making MIDAS both powerful and easy to use. By continually refining the interface and enhancing usability, we help administrators and end users work more efficiently every day.</p>



<p>If you&#8217;re new to MIDAS, <a href="https://mid.as/free-trial">start your free trial today</a> and experience the improvements firsthand.</p>
<p>The post <a href="https://mid.as/blog/user-interface-improvements-in-v4-42/">User Interface Improvements in MIDAS v4.42</a> appeared first on <a href="https://mid.as/blog">MIDAS - Room Booking System | Blog</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Intelligent Data Imports</title>
		<link>https://mid.as/blog/intelligent-data-imports/</link>
		
		<dc:creator><![CDATA[midas]]></dc:creator>
		<pubDate>Fri, 27 Feb 2026 12:54:50 +0000</pubDate>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[import]]></category>
		<category><![CDATA[v4.42]]></category>
		<guid isPermaLink="false">https://mid.as/blog/?p=5966</guid>

					<description><![CDATA[<p>If you&#8217;re considering a new room booking system, one of your first concerns will likely be importing data from your current scheduling software. MIDAS allows you to import bookings and data from a range of applications, and we&#8217;re always looking to extend this support. In our last update, v4.41, we introduced better support for importing [&#8230;]</p>
<p>The post <a href="https://mid.as/blog/intelligent-data-imports/">Intelligent Data Imports</a> appeared first on <a href="https://mid.as/blog">MIDAS - Room Booking System | Blog</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>If you&#8217;re considering a new room booking system, one of your first concerns will likely be importing data from your current scheduling software.</p>



<p>MIDAS allows you to import bookings and data from a range of applications, and we&#8217;re always looking to extend this support.</p>



<p>In our last update, v4.41, we introduced better <a href="https://mid.as/blog/improved-booking-import-support/">support for importing bookings from Skedda</a>. This included support for &#8220;multi-room&#8221; bookings, as well as additional date and time formats.</p>



<p>In v4.42, we&#8217;ve introduced several additional improvements to make data imports even smoother.</p>



<h2 class="wp-block-heading">Automatic Field Detection and Mapping</h2>



<p>When importing data MIDAS needs to understand how fields in your source data correspond to fields in your MIDAS system. This process is known as field mapping.</p>



<p>After selecting a file to import, MIDAS offers a preview of your data in a table view. At the top of each column is a drop-down selector. This is used to inform MIDAS of the type of data contained in each column.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="118" src="https://mid.as/blog/wp-content/uploads/2026/02/import-field-mapping-1024x118.png" alt="Field mapping interface when importing booking data into MIDAS" class="wp-image-6003" srcset="https://mid.as/blog/wp-content/uploads/2026/02/import-field-mapping-1024x118.png 1024w, https://mid.as/blog/wp-content/uploads/2026/02/import-field-mapping-300x35.png 300w, https://mid.as/blog/wp-content/uploads/2026/02/import-field-mapping-768x89.png 768w, https://mid.as/blog/wp-content/uploads/2026/02/import-field-mapping-1536x177.png 1536w, https://mid.as/blog/wp-content/uploads/2026/02/import-field-mapping-2048x236.png 2048w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Field mapping interface when importing booking data into MIDAS</figcaption></figure>
</div>


<p>For example, if you&#8217;re importing bookings, one column in your source data will contain the room or space name. Setting that column’s drop-down selector to &#8220;Venue&#8221; ensures the data is imported correctly.</p>



<p>Until now, selecting the correct value from the drop-down selector at the top of each column was a manual process. For v4.42, MIDAS will now try and automatically detect the data in each column and suggest an appropriate value for its drop-down.</p>



<p>Of course, you should still check the drop-down for each column before continuing, but this new &#8216;auto detection&#8217; feature should make importing data into MIDAS easier.</p>



<h2 class="wp-block-heading">Support for Importing Split Client Names</h2>



<p>In many cases of data import, client names are contained within a single field of data.</p>



<p>For instance, if you&#8217;re importing a booking for &#8220;Joe Blogs&#8221;, it&#8217;s likely that there&#8217;ll be a single field containing the text &#8220;Joe Blogs&#8221; in your raw data.</p>



<p>Some booking systems however may split client names across multiple fields when exporting data. There may for example be separate fields for first (given) name and last (surname).</p>



<p>MIDAS typically expects a single field containing the client name, but for v4.42 we&#8217;ve added support for instances such as the one described above where names are split across fields.</p>



<p>This improvement makes it easier to migrate to MIDAS from booking systems such as Hallmaster.</p>



<p>Together, these improvements reduce manual setup and make transitioning to MIDAS faster and more efficient.</p>
<p>The post <a href="https://mid.as/blog/intelligent-data-imports/">Intelligent Data Imports</a> appeared first on <a href="https://mid.as/blog">MIDAS - Room Booking System | Blog</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Bulk Modify User Account Permissions</title>
		<link>https://mid.as/blog/bulk-modify-user-account-permissions/</link>
		
		<dc:creator><![CDATA[midas]]></dc:creator>
		<pubDate>Thu, 26 Feb 2026 11:21:16 +0000</pubDate>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[bulk modify]]></category>
		<category><![CDATA[user permissions]]></category>
		<category><![CDATA[v4.42]]></category>
		<guid isPermaLink="false">https://mid.as/blog/?p=5962</guid>

					<description><![CDATA[<p>If you&#8217;re familiar with MIDAS booking software you&#8217;ll know that it offers an extensive range of access controls and permissions. Permissions can be assigned on a per-user basis. In fact, if you&#8217;ve been following our blog, then you&#8217;ll have seen that we&#8217;re adding 14 new permissions for MIDAS v4.42 too! We’re now making it easier [&#8230;]</p>
<p>The post <a href="https://mid.as/blog/bulk-modify-user-account-permissions/">Bulk Modify User Account Permissions</a> appeared first on <a href="https://mid.as/blog">MIDAS - Room Booking System | Blog</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>If you&#8217;re familiar with MIDAS booking software you&#8217;ll know that it offers an extensive range of access controls and permissions. Permissions can be assigned on a per-user basis. In fact, if you&#8217;ve been following our blog, then you&#8217;ll have seen that we&#8217;re <a href="https://mid.as/blog/expanded-administrative-permissions-in-midas/">adding 14 new permissions</a> for MIDAS v4.42 too!</p>



<p>We’re now making it easier to apply bulk permission changes across multiple user accounts.</p>



<h2 class="wp-block-heading">Previous Behavior</h2>



<p>In previous versions, when adding or modifying a user account, an &#8220;assign permissions from group&#8221; drop-down was presented above the various user permissions that could be assigned:</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="536" src="https://mid.as/blog/wp-content/uploads/2026/02/assign-permissions-from-group-1024x536.png" alt="Previous permission assignment method using user groups in MIDAS" class="wp-image-5989" srcset="https://mid.as/blog/wp-content/uploads/2026/02/assign-permissions-from-group-1024x536.png 1024w, https://mid.as/blog/wp-content/uploads/2026/02/assign-permissions-from-group-300x157.png 300w, https://mid.as/blog/wp-content/uploads/2026/02/assign-permissions-from-group-768x402.png 768w, https://mid.as/blog/wp-content/uploads/2026/02/assign-permissions-from-group.png 1104w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Previous permission assignment method using user groups in MIDAS</figcaption></figure>
</div>


<p>This was a great way to quickly copy the current permissions from a user group to an individual user account.</p>



<p>However, this was a one-time action. MIDAS would snapshot the selected user group&#8217;s current permissions and apply them to the individual user account. Any subsequent changes to the group&#8217;s permissions would not affect existing user accounts.</p>



<h2 class="wp-block-heading">Introducing Permission Inheritance</h2>



<p>So we have re-worked this for MIDAS v4.42. The &#8220;Assign permissions from group&#8221; selector has been removed and replaced by a new role-based &#8220;Inherit Permissions from&#8221; selector.</p>



<p>When a user account is set to inherit permissions from a user group, any subsequent changes to that group&#8217;s permissions will automatically apply to all linked user accounts.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="285" src="https://mid.as/blog/wp-content/uploads/2026/02/inherit-permissions-1024x285.png" alt="User account inheriting permissions from a user group in MIDAS v4.42" class="wp-image-5988" srcset="https://mid.as/blog/wp-content/uploads/2026/02/inherit-permissions-1024x285.png 1024w, https://mid.as/blog/wp-content/uploads/2026/02/inherit-permissions-300x83.png 300w, https://mid.as/blog/wp-content/uploads/2026/02/inherit-permissions-768x214.png 768w, https://mid.as/blog/wp-content/uploads/2026/02/inherit-permissions-1536x427.png 1536w, https://mid.as/blog/wp-content/uploads/2026/02/inherit-permissions.png 1798w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">User account inheriting permissions from a user group in MIDAS v4.42</figcaption></figure>
</div>


<p>This now allows you to bulk modify user account permissions with ease!</p>



<h2 class="wp-block-heading">When to use manual permissions</h2>



<p>If you still want to grant or revoke individual permissions on a per-account basis, you can &#8211; simply set the &#8220;Inherit Permissions from&#8221; option to &#8220;[None]&#8221;. When you do this, MIDAS will display the complete list of current permissions for that user, allowing you to make individual changes as required.</p>



<p>User accounts set to ‘[None]’ will not be affected by changes to any user group permissions.</p>



<p>While this new feature may not be all that significant for customers with only a handful of user accounts, larger organizations with several hundred users will benefit greatly from the ability to modify user permissions in bulk.</p>
<p>The post <a href="https://mid.as/blog/bulk-modify-user-account-permissions/">Bulk Modify User Account Permissions</a> appeared first on <a href="https://mid.as/blog">MIDAS - Room Booking System | Blog</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Expanded Administrative Permissions in MIDAS v4.42</title>
		<link>https://mid.as/blog/expanded-administrative-permissions-in-midas/</link>
		
		<dc:creator><![CDATA[midas]]></dc:creator>
		<pubDate>Wed, 25 Feb 2026 12:47:04 +0000</pubDate>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[user permissions]]></category>
		<category><![CDATA[v4.42]]></category>
		<guid isPermaLink="false">https://mid.as/blog/?p=5960</guid>

					<description><![CDATA[<p>Administrators appreciate the extensive range of permissions that can be assigned on an account-by-account basis in their MIDAS booking software. These allow the creation of anything from fully privileged administrative accounts to ones with very limited &#8220;view only&#8221; permissions, and everything in between. To provide administrators with even greater control, we&#8217;ve extended the range of [&#8230;]</p>
<p>The post <a href="https://mid.as/blog/expanded-administrative-permissions-in-midas/">Expanded Administrative Permissions in MIDAS v4.42</a> appeared first on <a href="https://mid.as/blog">MIDAS - Room Booking System | Blog</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Administrators appreciate the <a href="https://mid.as/help/manage-users-and-permissions/list-of-available-user-permissions">extensive range of permissions</a> that can be assigned on an account-by-account basis in their MIDAS booking software.</p>



<p>These allow the creation of anything from fully privileged administrative accounts to ones with very limited &#8220;view only&#8221; permissions, and everything in between.</p>



<p>To provide administrators with even greater control, we&#8217;ve extended the range of available permissions for MIDAS v4.42 to now include 14 additional administrative permissions.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="677" height="1024" src="https://mid.as/blog/wp-content/uploads/2026/02/new-admin-permissions-677x1024.png" alt="New granular administrative permissions in MIDAS v4.42" class="wp-image-5985" srcset="https://mid.as/blog/wp-content/uploads/2026/02/new-admin-permissions-677x1024.png 677w, https://mid.as/blog/wp-content/uploads/2026/02/new-admin-permissions-198x300.png 198w, https://mid.as/blog/wp-content/uploads/2026/02/new-admin-permissions.png 678w" sizes="auto, (max-width: 677px) 100vw, 677px" /><figcaption class="wp-element-caption">New granular administrative permissions in MIDAS v4.42</figcaption></figure>
</div>


<p>These new permissions replace the previous &#8220;Can Manage MIDAS&#8221; permission. This generic permission controlled whether a user was able to access the &#8220;Manage MIDAS&#8221; configuration screens.</p>



<p>Over time the &#8220;Manage MIDAS&#8221; screens have grown to include a vast array of options and settings. These screens allowed users to change email settings, update templates, configure scheduled tasks, tweak invoice or database settings, and much more.</p>



<p>For v4.42, we have split up the old &#8220;Manage MIDAS&#8221; screen into separate sections. Access to each section is now controlled by its own dedicated permission. This means, for instance, that you can grant permission to a user to be able to modify your templates, but not allow them to adjust the email settings of your MIDAS system.</p>



<p>The 14 new administrative permissions added in v4.42 are:</p>



<ul class="wp-block-list">
<li><a href="https://mid.as/help/manage-appearance-settings">Can Manage Appearance Settings</a></li>



<li><a href="https://mid.as/help/manage-booking-settings">Can Manage Booking Settings</a></li>



<li><a href="https://mid.as/help/manage-database-settings">Can Manage Database Settings</a></li>



<li><a href="https://mid.as/help/manage-email-settings">Can Manage Email Settings</a></li>



<li><a href="https://mid.as/help/manage-fields">Can Manage Fields</a></li>



<li><a href="https://mid.as/help/manage-invoice-settings">Can Manage Invoice Settings</a></li>



<li><a href="https://mid.as/help/manage-miscellaneous-settings">Can Manage Miscellaneous Settings</a></li>



<li><a href="https://mid.as/help/manage-print-settings">Can Manage Print Settings</a></li>



<li><a href="https://mid.as/help/manage-public-settings">Can Manage Public Settings</a></li>



<li><a href="https://mid.as/help/manage-safety-settings">Can Manage Safety Settings</a></li>



<li><a href="https://mid.as/help/manage-scheduled-tasks">Can Manage Scheduled Tasks</a></li>



<li><a href="https://mid.as/help/manage-security-settings">Can Manage Security Settings</a></li>



<li><a href="https://mid.as/help/manage-templates">Can Manage Templates</a></li>



<li><a href="https://mid.as/help/check-for-updates">Can Update Software</a> (Not applicable in cloud-hosted systems)</li>
</ul>



<p>When updating from an earlier version to v4.42, any user account which held the &#8220;Can Manage MIDAS&#8221; permission will automatically be granted all 14 of the new administrative permissions during the update.</p>



<p>Administrators can then refine access for each user account via MIDAS Admin Options → Users.</p>



<p>These changes, together with the ability to <a href="https://mid.as/blog/bulk-modify-user-account-permissions/">make bulk permission changes</a>, provide administrators with significantly greater flexibility and control over who can access specific system settings.</p>
<p>The post <a href="https://mid.as/blog/expanded-administrative-permissions-in-midas/">Expanded Administrative Permissions in MIDAS v4.42</a> appeared first on <a href="https://mid.as/blog">MIDAS - Room Booking System | Blog</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Zero Configuration Email Delivery for Cloud-Hosted Customers</title>
		<link>https://mid.as/blog/zero-configuration-email-delivery/</link>
		
		<dc:creator><![CDATA[midas]]></dc:creator>
		<pubDate>Tue, 24 Feb 2026 08:24:10 +0000</pubDate>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[cloud hosted]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[smtp]]></category>
		<category><![CDATA[v4.42]]></category>
		<guid isPermaLink="false">https://mid.as/blog/?p=5958</guid>

					<description><![CDATA[<p>Learn how MIDAS v4.42 introduces zero configuration cloud email sending with improved deliverability and no SMTP setup required.</p>
<p>The post <a href="https://mid.as/blog/zero-configuration-email-delivery/">Zero Configuration Email Delivery for Cloud-Hosted Customers</a> appeared first on <a href="https://mid.as/blog">MIDAS - Room Booking System | Blog</a>.</p>
]]></description>
										<content:encoded><![CDATA[<figure class="wp-block-post-featured-image"><img loading="lazy" decoding="async" width="1200" height="310" src="https://mid.as/blog/wp-content/uploads/2026/02/zero-config-header.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Zero Configuration Email Delivery" style="object-fit:cover;" srcset="https://mid.as/blog/wp-content/uploads/2026/02/zero-config-header.jpg 1200w, https://mid.as/blog/wp-content/uploads/2026/02/zero-config-header-300x78.jpg 300w, https://mid.as/blog/wp-content/uploads/2026/02/zero-config-header-1024x265.jpg 1024w, https://mid.as/blog/wp-content/uploads/2026/02/zero-config-header-768x198.jpg 768w" sizes="auto, (max-width: 1200px) 100vw, 1200px" /></figure>


<p>The ability to send email is essential for any booking system.</p>



<p>From booking confirmations and reminders, to invoices, notifications, and password resets, booking and scheduling systems rely on email.</p>



<p>MIDAS naturally supports the sending of email, but we&#8217;ve made some exciting and significant improvements to email sending for our cloud-hosted customers for v4.42.</p>



<p>But first, let&#8217;s look at the existing ways in which MIDAS can send email.</p>



<p>Until now, the sending of email by MIDAS has been through a choice between &#8220;Sendmail&#8221; or &#8220;SMTP&#8221;.</p>



<h2 class="wp-block-heading">What is Sendmail?</h2>



<p>Available on Linux-based servers, Sendmail is a built-in server application for sending email directly from the server itself. <a href="https://mid.as/glossary/sendmail" class="dfn">Read more about Sendmail</a>.</p>



<h2 class="wp-block-heading">What is SMTP?</h2>



<p>SMTP (or Simple Mail Transfer Protocol) is the standard language used by computers to send emails across the internet. <a href="https://mid.as/glossary/smtp" class="dfn">Read more about SMTP</a>.</p>



<h2 class="wp-block-heading">Sendmail vs SMTP</h2>



<p>Both Sendmail and SMTP options have been available in both our cloud-hosted and self-hosted editions.</p>



<p>&#8220;Sendmail&#8221; has long been the default &#8216;out of the box&#8217; email transport setting for cloud-hosted customers. However, we&#8217;ve always encouraged customers to move over to SMTP as soon as possible.</p>



<p>That&#8217;s because generally email deliverability rates are <strong>substantially higher</strong> when MIDAS is configured to send email through a customer&#8217;s own SMTP server, than if instead sent directly through our own servers.</p>



<p>Whilst Sendmail is configured to work &#8216;out of the box&#8217; for cloud-hosted customers, SMTP requires a little more configuration.</p>



<p>To configure MIDAS to send email via SMTP, you will need:</p>



<ul class="wp-block-list">
<li>The address of your SMTP server</li>



<li>The correct port number</li>



<li>The SMTP username and password</li>



<li>The correct SSL, TLS, or STARTTLS encryption method setting</li>
</ul>



<p>You will also need to ensure that your SMTP server accepts connections from your cloud-hosted MIDAS system. In addition, your organization&#8217;s domain must be <a href="https://mid.as/kb/00152/fix-spf-fail-not-authorized-dmarc-evaluation-error">configured to allow MIDAS to send email</a> on behalf of your domain.</p>



<p>This requires significant configuration and setup. We want to simplify this for our cloud-hosted customers. That&#8217;s why we&#8217;re introducing cloud email sending.</p>



<h2 class="wp-block-heading">Introducing &#8220;Cloud Sending&#8221;</h2>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="652" height="435" src="https://mid.as/blog/wp-content/uploads/2026/02/zero-config-email.png" alt="New Zero Configuration Email Sending Option" class="wp-image-6001" srcset="https://mid.as/blog/wp-content/uploads/2026/02/zero-config-email.png 652w, https://mid.as/blog/wp-content/uploads/2026/02/zero-config-email-300x200.png 300w" sizes="auto, (max-width: 652px) 100vw, 652px" /><figcaption class="wp-element-caption">New Zero Configuration Email Sending Option</figcaption></figure>
</div>


<p>For MIDAS v4.42, we&#8217;ve introduced a new &#8220;Cloud&#8221; option for sending email. This new option is available to all cloud-hosted customers, and replaces the previous &#8220;Sendmail&#8221; option. (Sendmail continues to remain an option for self-hosted customers).</p>



<p>With the new cloud email option selected, you won&#8217;t need to specify an SMTP host, or enter credentials or specify ports &#8211; MIDAS will take care of all of that!</p>



<p>We have partnered with a dedicated transactional email provider specializing in high-deliverability email delivery services, to provide efficient and reliable email delivery for cloud-hosted customers who select the &#8220;Cloud&#8221; email sending option.</p>



<h2 class="wp-block-heading">Zero Configuration Email Sending</h2>



<p>To complement our new &#8220;cloud&#8221; email offering, we&#8217;ve also included a &#8220;Zero Configuration&#8221; option.</p>



<p>With this option enabled, MIDAS and Mailgun will seamlessly handle email delivery for your MIDAS system. You won&#8217;t need to configure an outgoing email address, nor will you need to update your organization&#8217;s domain&#8217;s SPF (<a href="https://mid.as/glossary/spf" class="dfn">Sender Policy Framework</a>) DNS record &#8211; email will just &#8216;work&#8217; right out of the box.</p>



<p>Of course, if you wish to customize the &#8220;send from&#8221; or &#8220;reply to&#8221; addresses, you can untick the &#8220;Zero Configuration&#8221; option and change those settings.</p>



<p>But in its simplest form, our new &#8220;cloud&#8221; email sending and &#8220;Zero Configuration&#8221; options mean that brand new cloud-hosted email systems can now reliably send email right from the outset.</p>



<h2 class="wp-block-heading">Migrating from Sendmail to Cloud email sending</h2>



<p>For our existing cloud-hosted customers, if you&#8217;re currently using the &#8220;Sendmail&#8221; option in your MIDAS system, you&#8217;ll be automatically migrated to &#8220;cloud&#8221; sending soon after we update you to v4.42.</p>



<p>If you do not wish to use the new &#8220;Cloud&#8221; sending option, you should update your MIDAS settings to instead send email via SMTP.</p>



<p>You can change your MIDAS email settings via MIDAS Admin Options → Manage MIDAS → Email.</p>



<p>If your cloud-hosted MIDAS system is currently configured to send email via SMTP, this setting will be unaffected when we update your booking system to v4.42. Of course, you can then always change over to use the cloud email sending option at any time.</p>
<p>The post <a href="https://mid.as/blog/zero-configuration-email-delivery/">Zero Configuration Email Delivery for Cloud-Hosted Customers</a> appeared first on <a href="https://mid.as/blog">MIDAS - Room Booking System | Blog</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Limit Printing Bookings Over a Date Range to Specific Days of the Week</title>
		<link>https://mid.as/blog/print-bookings-for-specific-days-over-date-range/</link>
		
		<dc:creator><![CDATA[midas]]></dc:creator>
		<pubDate>Mon, 23 Feb 2026 12:13:40 +0000</pubDate>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[v4.42]]></category>
		<guid isPermaLink="false">https://mid.as/blog/?p=5964</guid>

					<description><![CDATA[<p>MIDAS v4.42 introduces a new advanced print option that allows bookings to be printed for specific days of the week within a selected date range. The &#8220;Print&#8221; icon in the MIDAS toolbar allows for quick printing of bookings shown in the current booking grid. Right-clicking (or long-pressing on touch devices) this icon opens an advanced [&#8230;]</p>
<p>The post <a href="https://mid.as/blog/print-bookings-for-specific-days-over-date-range/">Limit Printing Bookings Over a Date Range to Specific Days of the Week</a> appeared first on <a href="https://mid.as/blog">MIDAS - Room Booking System | Blog</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>MIDAS v4.42 introduces a new advanced <a href="https://mid.as/help/printing-daily-bookings">print option</a> that allows bookings to be printed for specific days of the week within a selected date range.</p>



<p>The &#8220;Print&#8221; icon in the MIDAS toolbar allows for quick printing of bookings shown in the current booking grid.</p>



<p>Right-clicking (or long-pressing on touch devices) this icon opens an advanced print dialog.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="797" src="https://mid.as/blog/wp-content/uploads/2026/02/advanced-print-options-1024x797.png" alt="Advanced booking print settings dialog in MIDAS v4.42" class="wp-image-5980" srcset="https://mid.as/blog/wp-content/uploads/2026/02/advanced-print-options-1024x797.png 1024w, https://mid.as/blog/wp-content/uploads/2026/02/advanced-print-options-300x233.png 300w, https://mid.as/blog/wp-content/uploads/2026/02/advanced-print-options-768x597.png 768w, https://mid.as/blog/wp-content/uploads/2026/02/advanced-print-options.png 1486w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Advanced booking print settings dialog in MIDAS v4.42</figcaption></figure>
</div>


<p>From this dialog, you can customize the booking printout in a number of ways:</p>



<ul class="wp-block-list">
<li>Change the layout</li>



<li>Set the date range</li>



<li>Restrict to certain times</li>



<li>Restrict to certain rooms</li>



<li>Restrict to certain booking types</li>



<li>Filter bookings based on advanced criteria</li>
</ul>



<p>We&#8217;ve improved the date range customization section in MIDAS v4.42 to now also allow selection of specific days of the week across the selected date range.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="232" src="https://mid.as/blog/wp-content/uploads/2026/02/print-specific-days-1024x232.png" alt="Option to restrict printing of bookings over a date range to certain days of the week" class="wp-image-5981" srcset="https://mid.as/blog/wp-content/uploads/2026/02/print-specific-days-1024x232.png 1024w, https://mid.as/blog/wp-content/uploads/2026/02/print-specific-days-300x68.png 300w, https://mid.as/blog/wp-content/uploads/2026/02/print-specific-days-768x174.png 768w, https://mid.as/blog/wp-content/uploads/2026/02/print-specific-days.png 1486w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Option to restrict printing of bookings over a date range to certain days of the week</figcaption></figure>
</div>


<p>Previously, selecting a date range would simply include bookings for each and every day in the range. Now you can limit this to only include bookings on certain days of the week.</p>



<p>For instance, if you&#8217;re only interested in printing bookings that take place on Saturdays and Sundays over the next three months, you can now do so.</p>



<p>This makes it easier to generate focused and concise booking printouts without unnecessary information.</p>
<p>The post <a href="https://mid.as/blog/print-bookings-for-specific-days-over-date-range/">Limit Printing Bookings Over a Date Range to Specific Days of the Week</a> appeared first on <a href="https://mid.as/blog">MIDAS - Room Booking System | Blog</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>User Interface improvements in v4.41</title>
		<link>https://mid.as/blog/user-interface-improvements-in-v4-41/</link>
		
		<dc:creator><![CDATA[midas]]></dc:creator>
		<pubDate>Mon, 15 Dec 2025 08:03:01 +0000</pubDate>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[user interface]]></category>
		<category><![CDATA[v4.41]]></category>
		<guid isPermaLink="false">https://mid.as/blog/?p=5855</guid>

					<description><![CDATA[<p>Whilst we love adding new and improved features in every software update, we also know that user interface (UI) and user experience (UX) are important too! We&#8217;ve made a number of UI/UX improvements for our latest update. Some of these will be immediately noticeable, others are more subtle. In this post, we&#8217;ll highlight some of [&#8230;]</p>
<p>The post <a href="https://mid.as/blog/user-interface-improvements-in-v4-41/">User Interface improvements in v4.41</a> appeared first on <a href="https://mid.as/blog">MIDAS - Room Booking System | Blog</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Whilst we love adding new and improved features <a href="https://mid.as/kb/00162/how-frequently-are-updates-for-midas-released">in every software update</a>, we also know that user interface (UI) and user experience (UX) are important too!</p>



<p>We&#8217;ve made a number of UI/UX improvements for our latest update. Some of these will be immediately noticeable, others are more subtle.</p>



<p>In this post, we&#8217;ll highlight some of the UI and UX improvements in MIDAS v4.41.</p>



<h2 class="wp-block-heading">A more concise user bar</h2>



<p>If you&#8217;ve been using MIDAS for a while, you&#8217;ll be familiar with the &#8220;user bar&#8221; which is shown directly under the main date heading:</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="1100" height="132" src="https://mid.as/blog/wp-content/uploads/2025/12/previous-user-bar.png" alt="The &quot;user bar&quot; in previous versions of MIDAS" class="wp-image-5889" srcset="https://mid.as/blog/wp-content/uploads/2025/12/previous-user-bar.png 1100w, https://mid.as/blog/wp-content/uploads/2025/12/previous-user-bar-300x36.png 300w, https://mid.as/blog/wp-content/uploads/2025/12/previous-user-bar-1024x123.png 1024w, https://mid.as/blog/wp-content/uploads/2025/12/previous-user-bar-768x92.png 768w" sizes="auto, (max-width: 1100px) 100vw, 1100px" /><figcaption class="wp-element-caption">The previous &#8220;user bar&#8221; in earlier versions of MIDAS</figcaption></figure>
</div>


<p>The &#8220;user bar&#8221; indicated who was signed in, and provided options to sign out, change your password, access help, or make MIDAS go fullscreen. You could also click your name to show a list of all the devices you were currently signed in from.</p>



<p>We&#8217;ve decluttered this area for v4.41. Now, just your name will be shown under the main date. You can select your name and a new drop-down list will appear:</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="1208" height="578" src="https://mid.as/blog/wp-content/uploads/2025/12/your-details.png" alt="New User Drop-Down in MIDAS v4.41" class="wp-image-5859" srcset="https://mid.as/blog/wp-content/uploads/2025/12/your-details.png 1208w, https://mid.as/blog/wp-content/uploads/2025/12/your-details-300x144.png 300w, https://mid.as/blog/wp-content/uploads/2025/12/your-details-1024x490.png 1024w, https://mid.as/blog/wp-content/uploads/2025/12/your-details-768x367.png 768w" sizes="auto, (max-width: 1208px) 100vw, 1208px" /><figcaption class="wp-element-caption">New User Drop-Down in MIDAS v4.41</figcaption></figure>
</div>


<p>This new drop-down contains the following options:</p>



<ul class="wp-block-list">
<li><strong>Your Current Sessions</strong> &#8211; view details of all the devices you&#8217;re currently signed into MIDAS from, and remotely sign out any you&#8217;re not actively using.</li>



<li><strong>Your Details</strong> &#8211; as v4.41 introduces new permissions <a href="https://mid.as/blog/allow-users-to-change-their-name-or-email/">allowing users to change their name or email</a>, the previous &#8220;Change Password&#8221; link has now become a &#8220;Your Details&#8221; option in the new drop-down. Depending on the permissions assigned to your account, this option will allow you to change your display name, password, or the email address you use to access MIDAS.</li>



<li><strong>Full Screen</strong> &#8211; quickly enter or exit full screen mode.</li>



<li><strong>Help</strong> &#8211; open the help documentation.</li>



<li><strong>Sign out of MIDAS</strong> &#8211; instantly sign out at any time.</li>
</ul>



<h2 class="wp-block-heading">New icons</h2>



<p>You may have spotted some new icons alongside the options in that new user drop-down above.</p>



<p>Well, this isn&#8217;t the only place you&#8217;ll see some new icons in MIDAS v4.41. We&#8217;ve also created a new set of icons for the options on the main administration creen:</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="2436" height="882" src="https://mid.as/blog/wp-content/uploads/2025/12/midas-admin-options-icons.png" alt="New icons on the MIDAS Admin Options screen" class="wp-image-5890" srcset="https://mid.as/blog/wp-content/uploads/2025/12/midas-admin-options-icons.png 2436w, https://mid.as/blog/wp-content/uploads/2025/12/midas-admin-options-icons-300x109.png 300w, https://mid.as/blog/wp-content/uploads/2025/12/midas-admin-options-icons-1024x371.png 1024w, https://mid.as/blog/wp-content/uploads/2025/12/midas-admin-options-icons-768x278.png 768w, https://mid.as/blog/wp-content/uploads/2025/12/midas-admin-options-icons-1536x556.png 1536w, https://mid.as/blog/wp-content/uploads/2025/12/midas-admin-options-icons-2048x742.png 2048w" sizes="auto, (max-width: 2436px) 100vw, 2436px" /><figcaption class="wp-element-caption">New icons on the MIDAS Admin Options screen</figcaption></figure>
</div>


<p>Previously all the options on this screen used the &#8220;cog&#8221; icon used for the &#8220;Manage MIDAS&#8221; option. We felt it was about time for a refresh, and that each of the options on this screen deserved their own unique icons.</p>



<h2 class="wp-block-heading">Improved graphs with tooltips</h2>



<p>In case you <a href="https://mid.as/blog/improvements-to-graphs-in-reports/">missed our post a few days ago</a>, for v4.41 we&#8217;ve rewritten the graphics code that MIDAS uses to generate graphs on the statistics (reporting) screen.</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="2504" height="1038" src="https://mid.as/blog/wp-content/uploads/2025/12/graph-tooltips.png" alt="Graphs now have tooltips" class="wp-image-5880" srcset="https://mid.as/blog/wp-content/uploads/2025/12/graph-tooltips.png 2504w, https://mid.as/blog/wp-content/uploads/2025/12/graph-tooltips-300x124.png 300w, https://mid.as/blog/wp-content/uploads/2025/12/graph-tooltips-1024x424.png 1024w, https://mid.as/blog/wp-content/uploads/2025/12/graph-tooltips-768x318.png 768w, https://mid.as/blog/wp-content/uploads/2025/12/graph-tooltips-1536x637.png 1536w, https://mid.as/blog/wp-content/uploads/2025/12/graph-tooltips-2048x849.png 2048w" sizes="auto, (max-width: 2504px) 100vw, 2504px" /><figcaption class="wp-element-caption">Graphs now have tooltips</figcaption></figure>
</div>


<p>Bar graphs and pie charts now show tooltips when you move your cursor over each segment. Furthermore, we&#8217;ve also adjusted how dates are shown along the bottom axis in bar charts to prevent overcrowding.</p>



<h2 class="wp-block-heading">Info, Tips, Warnings, and More!</h2>



<p>The help documentation has also had a bit of makeover for v4.41. Not only have we improved its accessibility, we&#8217;ve also made some visual changes.</p>



<p>Throughout the documentation you&#8217;ll see coloured boxes with either additional information, helpful tips, warnings, or links to more resources.</p>



<p>Here&#8217;s how these looked in the documentation before v4.41:</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="1450" height="400" src="https://mid.as/blog/wp-content/uploads/2025/12/info-boxes-old.png" alt="Info Boxes pre-v4.41" class="wp-image-5894" srcset="https://mid.as/blog/wp-content/uploads/2025/12/info-boxes-old.png 1450w, https://mid.as/blog/wp-content/uploads/2025/12/info-boxes-old-300x83.png 300w, https://mid.as/blog/wp-content/uploads/2025/12/info-boxes-old-1024x282.png 1024w, https://mid.as/blog/wp-content/uploads/2025/12/info-boxes-old-768x212.png 768w" sizes="auto, (max-width: 1450px) 100vw, 1450px" /></figure>
</div>


<p>&#8230;and here how these look now:</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="1450" height="560" src="https://mid.as/blog/wp-content/uploads/2025/12/info-boxes-new.png" alt="New Info Boxes in MIDAS v4.41" class="wp-image-5895" srcset="https://mid.as/blog/wp-content/uploads/2025/12/info-boxes-new.png 1450w, https://mid.as/blog/wp-content/uploads/2025/12/info-boxes-new-300x116.png 300w, https://mid.as/blog/wp-content/uploads/2025/12/info-boxes-new-1024x395.png 1024w, https://mid.as/blog/wp-content/uploads/2025/12/info-boxes-new-768x297.png 768w" sizes="auto, (max-width: 1450px) 100vw, 1450px" /></figure>
</div>


<h2 class="wp-block-heading">It doesn&#8217;t end there!</h2>



<p>Whilst these might be the main UI/UX improvements we&#8217;ve made for v4.41, we&#8217;ve also made numerous other small improvements to the user interface and user experience in our latest update &#8211; too many to list here!</p>



<p>So whilst we&#8217;ll continue to add exciting new features and functionality with every new release, we&#8217;ll also be working to continually improve your user experience too!</p>
<p>The post <a href="https://mid.as/blog/user-interface-improvements-in-v4-41/">User Interface improvements in v4.41</a> appeared first on <a href="https://mid.as/blog">MIDAS - Room Booking System | Blog</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Improved Booking Import Support</title>
		<link>https://mid.as/blog/improved-booking-import-support/</link>
		
		<dc:creator><![CDATA[midas]]></dc:creator>
		<pubDate>Fri, 12 Dec 2025 13:19:21 +0000</pubDate>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[import]]></category>
		<category><![CDATA[v4.41]]></category>
		<guid isPermaLink="false">https://mid.as/blog/?p=5849</guid>

					<description><![CDATA[<p>The ability to import data from other software is crucial to those looking to change booking systems. This is especially true if they wish to retain existing data from their current scheduling solution. MIDAS supports importing data from a range of applications &#8211; if your current application can export bookings, clients, or users in common [&#8230;]</p>
<p>The post <a href="https://mid.as/blog/improved-booking-import-support/">Improved Booking Import Support</a> appeared first on <a href="https://mid.as/blog">MIDAS - Room Booking System | Blog</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>The ability to import data from other software is crucial to those looking to change booking systems. This is especially true if they wish to retain existing data from their current scheduling solution.</p>



<p>MIDAS supports importing data from a range of applications &#8211; if your current application can export bookings, clients, or users in common <a href="https://mid.as/glossary/csv" class="dfn">CSV</a> format, the chances are you can import this directly into MIDAS.</p>



<p>We&#8217;ve made some enhancements for v4.41 to better support those looking at MIDAS as an <a href="https://mid.as/skedda-alternative">alternative to Skedda</a>.</p>



<h2 class="wp-block-heading">Support for importing &#8220;Multi-Room&#8221; Bookings</h2>



<p>Traditionally, booking data in CSV format contains &#8220;one booking per line&#8221; in data file. That is to say that each &#8220;line&#8221; of data in the CSV relates to a single booking.</p>



<p>Data exported from Skedda is a little different. If a client has bookings in multiple spaces/rooms at the same time, Skedda sees these as a single &#8220;multi room&#8221; booking, rather than as individual bookings in each space.</p>



<p>Consequently, multi-room bookings continued within an exported Skedda CSV data file occupy a single &#8220;line&#8221; (or &#8220;row&#8221;) in the file.</p>



<p>We&#8217;re pleased to announce that MIDAS v4.41 now supports importing &#8220;multi room bookings&#8221;.</p>



<h2 class="wp-block-heading">Support for importing dates / times in additional formats</h2>



<p>Booking systems store dates and times in various formats. This means that when data is exported from them, there isn&#8217;t necessarily a standardized date format that they all follow.</p>



<p>When it comes to importing booking data into a MIDAS booking system, our software can recognize dates and times in a variety of formats. </p>



<p>Here&#8217;s a complete list of the date/time formats MIDAS supports when importing booking data &#8211; including two new ones for v4.41:</p>



<p><strong>Single Dates:</strong></p>



<ul class="wp-block-list">
<li><strong>DD.MM.YYYY</strong> (Example: 26/11/2025)</li>



<li><strong>DD.MM.YY</strong> (Example: 26/11/25)</li>



<li><strong>MM.DD.YYYY</strong> (Example: 11/26/2025)</li>



<li><strong>MM.DD.YY</strong> (Example: 11/26/25)</li>



<li><strong>YYYY.MM.DD</strong> (Example: 2025/11/26)</li>



<li><strong>YYYY.DD.MM</strong> (Example: 2025/26/11)</li>



<li><strong>YY.MM.DD</strong> (Example: 25/26/11)</li>



<li><strong>YY.DD.MM</strong> (Example: 25/11/26)</li>



<li><strong>DD.Mon.YYYY</strong> (Example: 26-Nov-2025)</li>



<li><strong>DD.Mon.YY</strong> (Example: 26-Nov-25)</li>
</ul>



<p><strong>Single Dates with Times:</strong></p>



<ul class="wp-block-list">
<li><strong>DD.MM.YYYY HH.MI</strong> (Example: 26/11/2025 16:30)</li>



<li><strong>MM.DD.YYYY HH.MI </strong>(Example: 11/26/2025 16:30)</li>



<li><strong>YYYY.MM.DD HH.MI</strong> (Example: 2025/11/26 16:30) <strong><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-luminous-vivid-amber-color">← NEW FOR MIDAS v4.41</mark></strong></li>



<li><strong>YYYY.DD.MM HH.MI</strong> (Example: 2025/26/11 16:30) <strong><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-luminous-vivid-amber-color">← NEW FOR MIDAS v4.41</mark></strong></li>



<li><strong>HH.MI.SS &#8211; Day DD Month YYYY</strong> (Example: 16:30:00 &#8211; Wednesday 26 November 2025)</li>
</ul>



<p><strong>Date / Time Ranges:</strong></p>



<ul class="wp-block-list">
<li><strong>HH.MI-HH:MI, Day DD Month YYYY</strong> (Example: 16:30-17:30, Wednesday 26 November 2025)</li>



<li><strong>Day DD Month YYYY HH.MI &#8211; Day DD Month YYYY HH.MI</strong> (Example: Wednesday 26 November 2025 16:30 &#8211; Wednesday 26 November 2025 17:30)</li>
</ul>



<p>The various date and time formats that MIDAS supports when importing data cover those used by many popular booking systems, including <a href="https://mid.as/mrbs-alternative">MRBS</a>, Skedda, and more.</p>



<p>So if you&#8217;re looking to move away from your current booking solution, and that system allows you to export booking data, you&#8217;ll likely be able to import it directly into MIDAS.</p>



<p>Not sure if your data is compatible? No problem! Just <a href="https://mid.as/contact">reach out to our sales team</a> (perhaps include a sample of the data you&#8217;d like to import), and they&#8217;ll be happy to advise!</p>
<p>The post <a href="https://mid.as/blog/improved-booking-import-support/">Improved Booking Import Support</a> appeared first on <a href="https://mid.as/blog">MIDAS - Room Booking System | Blog</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Improvements to graphs in reports</title>
		<link>https://mid.as/blog/improvements-to-graphs-in-reports/</link>
		
		<dc:creator><![CDATA[midas]]></dc:creator>
		<pubDate>Thu, 11 Dec 2025 13:42:09 +0000</pubDate>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[reporting]]></category>
		<category><![CDATA[statistics]]></category>
		<category><![CDATA[v4.41]]></category>
		<guid isPermaLink="false">https://mid.as/blog/?p=5853</guid>

					<description><![CDATA[<p>We&#8217;ve completely re-written the code which generates graphical reports and statistics in MIDAS for v4.41. Previously, bar graphs and pie charts were dynamically rendered within HTML &#60;canvas> elements. This had a number of limitations, and so starting with v4.41, we&#8217;ve switched to dynamically rendering graphs using SVG instead. The most notable benefit to this is [&#8230;]</p>
<p>The post <a href="https://mid.as/blog/improvements-to-graphs-in-reports/">Improvements to graphs in reports</a> appeared first on <a href="https://mid.as/blog">MIDAS - Room Booking System | Blog</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>We&#8217;ve completely re-written the code which generates graphical reports and statistics in MIDAS for v4.41.</p>



<p>Previously, bar graphs and pie charts were dynamically rendered within HTML &lt;canvas> elements. This had a number of limitations, and so starting with v4.41, we&#8217;ve switched to dynamically rendering graphs using <a class="dfn" href="https://mid.as/glossary/svg">SVG</a> instead.</p>



<p>The most notable benefit to this is that we can now show &#8220;tooltips&#8221; when you hover over elements within a graph.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="424" src="https://mid.as/blog/wp-content/uploads/2025/12/graph-tooltips-1024x424.png" alt="Graphs now have &quot;tooltips&quot; in MIDAS v4.41" class="wp-image-5880" srcset="https://mid.as/blog/wp-content/uploads/2025/12/graph-tooltips-1024x424.png 1024w, https://mid.as/blog/wp-content/uploads/2025/12/graph-tooltips-300x124.png 300w, https://mid.as/blog/wp-content/uploads/2025/12/graph-tooltips-768x318.png 768w, https://mid.as/blog/wp-content/uploads/2025/12/graph-tooltips-1536x637.png 1536w, https://mid.as/blog/wp-content/uploads/2025/12/graph-tooltips-2048x849.png 2048w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Graphs now have &#8220;tooltips&#8221; in MIDAS v4.41</figcaption></figure>
</div>


<p>Another issue we&#8217;ve addressed when rewriting graph code is that of x-axis scaling.</p>



<p>Most vertical bar graphs which MIDAS can generate have dates along their x-axis. As MIDAS allows you to select a date range for many generated reports, the resulting x-axis could represent a single date, or a very wide date range spanning several years.</p>



<p>Until now, MIDAS would label each date within the selected range on the X-axis. For larger date ranges, these labels would all overlap causing an illegible mess along the X-axis.</p>



<p>Now that we&#8217;re able to bring dynamic &#8220;tooltips&#8221; to graphs in v4.41, it&#8217;s no longer necessary to display labels for every date in the selected range along the bottom axis. That&#8217;s because these tooltips will show the date of the bar your cursor is &#8216;hovering&#8217; over.</p>



<p>Consequently, for large date ranges, the X-axis will now only be labelled with select dates within that range. This produces a far clearer bottom axis, which we&#8217;re sure you&#8217;ll appreciate.</p>



<p>Floating &#8220;tooltips&#8221; aren&#8217;t just confined to bar charts &#8211; they&#8217;ve also been added to pie charts too! </p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="921" src="https://mid.as/blog/wp-content/uploads/2025/12/pirchart-tooltips-1024x921.png" alt="Pie Charts also now have floating &quot;tool tips&quot; too!" class="wp-image-5882" srcset="https://mid.as/blog/wp-content/uploads/2025/12/pirchart-tooltips-1024x921.png 1024w, https://mid.as/blog/wp-content/uploads/2025/12/pirchart-tooltips-300x270.png 300w, https://mid.as/blog/wp-content/uploads/2025/12/pirchart-tooltips-768x691.png 768w, https://mid.as/blog/wp-content/uploads/2025/12/pirchart-tooltips.png 1154w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Pie Charts also now have floating &#8220;tool tips&#8221; too!</figcaption></figure>
</div><p>The post <a href="https://mid.as/blog/improvements-to-graphs-in-reports/">Improvements to graphs in reports</a> appeared first on <a href="https://mid.as/blog">MIDAS - Room Booking System | Blog</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Page Caching using Disk: Enhanced 
Lazy Loading (feed)
Database Caching 24/48 queries in 0.006 seconds using Disk

Served from: mid.as @ 2026-05-08 13:22:03 by W3 Total Cache
-->