
New in this prerelease of the 26.4 plugins:
New functions in documentation
Download Links: Download Mac dmg or Download Windows/Linux zip
Download: monkeybreadsoftware.de/xojo/download/plugin/Prerelease/.
Or ask us to be added to our shared DropBox folder.
You can subscribe to our Xojo mailing list to get notified for new pre-release and release versions.

New in this prerelease of version 16.4 of the
MBS FileMaker Plugin:
New functions in documentation
Download Links: Download Mac dmg or Download Windows/Linux zip
Downloads at monkeybreadsoftware.com/filemaker/files/Prerelease/:
You can subscribe to our FileMaker mailing list to get notified for new pre-release and release versions.
The [Full Access] conference started in Los Altos, California. Over 80 FileMaker developer join for a five day conference. The welcome session starts Thursday, 6th August 2026.
You can join the MBS Plugin related sessions:
(more)
In this article I want to introduce you the new functionalities from the MBS Xojo Plugins in version 26.3.
Mutex
With the release, we introduce a new helper class: AutoMutexMBS. This class makes working with mutexes safer and more convenient by automatically releasing locks when an object goes out of scope. More about this new class you find in our blogpost AutoMutexMBS: Automatic Mutex Management in MBS Plugins 26.3
For debugging, you can now also use the LockCount method from the MutexMBS class. It checks whether a mutex is locked.
// make a new mutex
Var m As New MutexMBS
// check lock count -> 0
Var l1 As Integer = m.LockCount
// we lock the mutex
m.Lock
// check lock count -> 1
Var l2 As Integer = m.LockCount
// we unlock the mutex
m.Unlock
// check lock count -> 0
Var l3 As Integer = m.LockCount
(more)
In this article we want to introduce you the new functions from the MBS FileMaker Plugin in version 16.3.
MongoDB
In this release, we are pleased to introduce a complete API for working with GridFS, made available through the MBS FileMaker Plugin. GridFS enables you to store large files in MongoDB by splitting them into blocks and storing them across two collections. This allows developers to use MongoDB as a scalable file storage backend for images, documents, and binary data. We'll show you exactly what to expect from the new API in the article MongoDB GridFS in the MBS FileMaker Plugin
Improved script search in FileMaker
We improved our search over all scripts in the Script Workspace:
- The tolerant search works better.
- The regular expression search got a help screen.
- There is an option to exclude comments and one for excluding disabled steps.
- You can switch to a compact result list.
- We can show exclude buttons to exclude entries. Like when you use the search as a todo list.
You find the new options in the popup menu:
(more)

New in this prerelease of the 26.4 plugins:
New functions in documentation
Download Links: Download Mac dmg or Download Windows/Linux zip
Download: monkeybreadsoftware.de/xojo/download/plugin/Prerelease/.
Or ask us to be added to our shared DropBox folder.
You can subscribe to our Xojo mailing list to get notified for new pre-release and release versions.

New in this prerelease of version 16.4 of the
MBS FileMaker Plugin:
- Fixed a parsing error for WebHook function. Broken in 16.3.
- Fixed RichText.ReadHTML to report an error in case of a parse failure instead of empty result.
- Improved initialization for CoreLocation functions and how we pass error to the fail handler script.
- Added ScriptWorkspace.CurrentTabPreview function to check if the current script is a preview and ScriptWorkspace.CurrentTabTogglePreview to click the preview button.
- Updated zxing-cpp to version 3.1.1.
- Updated Saxon libraries to version 12.10.
New functions in documentation
Download Links: Download Mac dmg or Download Windows/Linux zip
Downloads at monkeybreadsoftware.com/filemaker/files/Prerelease/:
You can subscribe to our FileMaker mailing list to get notified for new pre-release and release versions.
We recorded the presentations at the MBS Xojo Conference in April 2026 and here is the video about SQL via API: Remote Data, Local Feel with Dirk Cleenwerck.
(more)
Nickenich, Germany - (July 21st, 2026) -- Monkeybread Software today is pleased to announce MBS FileMaker Plugin 16.3 for Claris FileMaker for macOS, iOS, Linux and Windows, the latest update to their product that is easily the most powerful plugin currently available for Claris FileMaker produce line. As the leading database management solution for Windows, macOS, iOS and the web, the Claris FileMaker Pro Integrated Development Environment supports a plugin architecture that can easily extend the feature set of the application. MBS FileMaker Plugin 16.3 has been updated and now includes over 7900 different functions, and the versatile plugin has gained more new functions:
For MongoDB we added functions to store files in the database using GridFS functions. You can create a file and write container values. Later you can find files, read them back into a variable or delete them.
We got Keychain functions for macOS and iOS to store generic passwords. A way to have your FileMaker solution keep sensitive credentials in the system keychain.
The XL functions got updated with new sort options for auto filters. You can check data validations for a sheet, check whether a table has an auto filter and remove the filter.
Our WebView window can optionally show up as a popup window. You can close it in a script with WebView.Close or from JavaScript with window.close function.
For developers we have a display of the time needed by running a calculation with our tools in the calculation dialogs on macOS. You can use the Command-Option-T shortcut for the calculation editor to insert the current selected table occurrence in the popup menu. Or you select a table occurrence in the formula, press the shortcut and select the table occurrence in the popup menu.
We improved the script search. You have an option for a compact result view and to exclude entries in the search results. Search can skip disabled script steps and for regular expressions, we have a help screen.
The list functions can match values based on columns. Great to filter CSV text based on prefix, postfix or substring. The printer functions can list and cancel print jobs on Windows.
For DynaPDF we added the Sauvola filter to convert gray images to black & white. The CNContactPicker functions can return current properties and set which keys to display. SpeechRecognition.Recognize can return the result as JSON with more details, WebView.SetPrintParameter has more options for printing on Windows and ScriptWorkspace.Steps helps to read the list of script steps. Use Window.Screen to check which screen a window is on and use SystemInfo.isGoldenGate to detect the newest macOS version.
Finally we updated CURL library to version 8.21.0, DynaPDF to 5.0.3.12, expat to 2.8.2, jsoncons to 1.8.1, lcms to 2.19.1, libarchive to 3.8.8, LibXL to 5.2.0, mongo-c-driver to 2.3.1, openssl to 3.5.7, SQLite to 3.53.3 and Xcode to version 26.6.
See release notes for a complete list of changes.
Nickenich, Germany - (July 21st, 2026) -- Monkeybread Software today is pleased to announce MBS Xojo Plugins 26.3 for macOS, Linux and Windows, the latest update to their product that is easily the most powerful plugin collection currently available for Xojo. MBS Xojo Plugins have been updated and now includes over 3000 classes and 85,000 documented features, and the versatile plugins have gained more new functions:
The AtomicDictionaryMBS class provides a thread safe dictionary. Beside all the normal dictionary functionality we have special functions to do multiple operations together in a thread safe matter. You can iterate such a dictionary using AtomicDictionaryIteratorMBS and get entries with AtomicDictionaryEntryMBS class.
Use the AutoMutexMBS class to lock a mutex and automatically unlock it at the end of the method. Check the AutoLock and TryAutoLock methods in the MutexMBS class.
The Vision classes got new features to recognize human body and hand poses. The new observation classes provide the points for the joints.
Use the NLLanguageRecognizerMBS class to detect the dominant language of a text. You can limit the languages to consider and feed more text in chunks to get a more precise result with every chunk. Currently 58 languages are supported.
We added the WebView2BrowserMBS class to control both the WebView in a WebView2ControlMBS control or a HTMLViewer.
The XL classes got updated with new sort options for auto filters in XLAutoFilterMBS class. You can check data validations for a sheet in XLSheetMBS class, check whether a table has an auto filter and remove the filter.
With StringMBS and StringViewMBS classes we have our own class for UTF-32 strings. Enjoy efficient string operations using views to avoid copying data.
For macOS Golden Gate you can use NSRefreshControllerMBS class to allow the user to refresh a view with swiping down. For menu items you can specify whether to show the menu icon with preferredImageVisibility property in NSMenuItemMBS class. Check touch capabilities per screen with NSScreenMBS class.
For DynaPDF we added the Sauvola filter to convert gray images to black & white. The WinSparkleMBS class got a CanShutdown event, detect the new macOS version with isGoldenGate function in SystemInformationMBS module, and we added ResolveThreadsMax and QuickExit properties to CURLSMultiMBS class.
Finally we updated the CURL library to version 8.21.0, DynaPDF to 5.0.3.12, expat to 2.8.2, jsoncons to 1.8.1, lcms to 2.19.1, libarchive to 3.8.8, LibXL to 5.2.0, mongo-c-driver to 2.3.1, openssl to 3.5.7, SQLite to 3.53.3, the Argon2 code and Xcode to version 26.6.
See release notes for a complete list of changes.
21. Juli 2026 - Monkeybread Software veröffentlicht heute das MBS FileMaker Plugin für Claris FileMaker in Version 16.3, mit inzwischen über 7900 Funktionen eines der größten FileMaker Plugins überhaupt. Hier einige der Neuerungen:
Für MongoDB haben wir Funktionen hinzugefügt, mit denen Dateien mithilfe von GridFS-Funktionen in der Datenbank gespeichert werden können. Sie können eine Datei erstellen und Werte in den Container schreiben. Später können Sie Dateien suchen, sie in eine Variable zurücklesen oder löschen.
Für macOS und iOS gibt es Keychain-Funktionen zum Speichern allgemeiner Passwörter. So können Sie in Ihrer FileMaker-Lösung sensible Anmeldedaten im System-Keychain speichern.
Die XL-Funktionen wurden um neue Sortieroptionen für Autofilter erweitert. Sie können die Datenvalidierungen für ein Arbeitsblatt überprüfen, feststellen, ob eine Tabelle einen Autofilter enthält, und den Filter entfernen.
Unser WebView-Fenster kann optional als Popup-Fenster angezeigt werden. Sie können es in einem Skript mit „WebView.Close“ oder über JavaScript mit der Funktion „window.close“ schließen.
Für Entwickler wird in den Berechnungsdialogen unter macOS die Zeit angezeigt, die für die Ausführung einer Berechnung mit unseren Tools benötigt wird. Mit der Tastenkombination „Befehl-Option-T“ im Berechnungseditor können Sie das aktuell ausgewählte Tabellenobjekt in das Popup-Menü einfügen. Alternativ können Sie ein Tabellenobjekt in der Formel auswählen, die Tastenkombination drücken und das Tabellenobjekt im Popup-Menü auswählen.
Wir haben die Skriptsuche verbessert. Sie haben nun die Möglichkeit, die Ergebnisse kompakt anzuzeigen und Einträge aus den Suchergebnissen auszuschließen. Die Suche kann deaktivierte Skriptschritte überspringen, und für reguläre Ausdrücke steht Ihnen ein Hilfebildschirm zur Verfügung.
Mit den Listenfunktionen lassen sich Werte anhand von Spalten abgleichen. Ideal, um CSV-Text nach Präfix, Suffix oder Teilzeichenfolge zu filtern. Mit den Druckerfunktionen können unter Windows Druckaufträge aufgelistet und abgebrochen werden.
Für DynaPDF haben wir den Sauvola-Filter hinzugefügt, um Graustufenbilder in Schwarz-Weiß-Bilder umzuwandeln. Die CNContactPicker-Funktionen können aktuelle Eigenschaften zurückgeben und festlegen, welche Schaltflächen angezeigt werden sollen. SpeechRecognition.Recognize kann das Ergebnis als JSON mit weiteren Details zurückgeben, WebView.SetPrintParameter bietet mehr Optionen für den Druck unter Windows und ScriptWorkspace.Steps hilft beim Auslesen der Liste der Skriptschritte. Verwenden Sie `Window.Screen`, um zu prüfen, auf welchem Bildschirm sich ein Fenster befindet, und verwenden Sie `SystemInfo.isGoldenGate`, um die neueste macOS-Version zu ermitteln.
Schließlich haben wir die CURL-Bibliothek auf Version 8.21.0, DynaPDF auf 5.0.3.12, expat auf 2.8.2, jsoncons auf 1.8.1, lcms auf 2.19.1, libarchive auf 3.8.8, LibXL auf 5.2.0, mongo-c-driver auf 2.3.1, OpenSSL auf 3.5.7, SQLite auf 3.53.3 und Xcode auf Version 26.6.
Alle Änderungen in den Release Notes.

New in this prerelease of the 26.3 plugins:
- Added NodeIDMBS method for FolderItem class.
- Fixed an issue with ShellMBS class not finding our shared NSDictionary code.
- Updated mongo-c-driver to version 2.3.3.
New functions in documentation
Download Links: Download Mac dmg or Download Windows/Linux zip
Download: monkeybreadsoftware.de/xojo/download/plugin/Prerelease/.
Or ask us to be added to our shared DropBox folder.
You can subscribe to our Xojo mailing list to get notified for new pre-release and release versions.

New in this prerelease of version 16.3 of the
MBS FileMaker Plugin:
New functions in documentation
Download Links: Download Mac dmg or Download Windows/Linux zip
Downloads at monkeybreadsoftware.com/filemaker/files/Prerelease/:
You can subscribe to our FileMaker mailing list to get notified for new pre-release and release versions.
Based on the feedback we got, the upcoming MBS FileMaker Plugin 16.3 version will have a few improvements:
- The tolerant search works better.
- The regular expression search got a help screen.
- There is an option to exclude comments and one for excluding disabled steps.
- You can switch to a compact result list.
- We can show exclude buttons to exclude entries. Like when you use the search as a todo list.
You find the new options in the popup menu:
The compact list view looks like this:
Please try the 16.3 beta versions if you like to test this.
We recorded the presentations at the MBS Xojo Conference in April 2026 and here is the video about Sparkler App — update Desktop or Web Apps to new Version with David Cox.
(more)
The upcoming MBS FileMaker Plugin 16.3 version will have a few improvements to the calculation dialog for macOS.
(more)
The first batches of
OmegaBundle orders are in delivery.
(more)
Download, Release Notes and Announcement.
This release fixed a lot of issues and adds some cool new features. But let us check these two, that are related to our plugins:
(more)
We have a few functions in the MBS FileMaker Plugin to convert things to HTML. That is useful to visualize HTML or JSON. You may convert text, styled text or MarkDown to HTML.
(more)
We recorded the presentations at the MBS Xojo Conference in April 2026 and here is the video about Framework and IDE enhancements with Javier Menéndez.
(more)