MBS FileMaker Plugin Update 2022

A recording of our presentation from EngageU conference to talk about what is new in 2022 for MBS Plugin for Claris FileMaker.

All movies   Watch on YouTube.   FileMakerUpdate2022.m4v   Transcript


Thanksgiving Sale

For this year's Thanksgiving in America, we offer again discounted licenses for our MBS Plugins for FileMaker and Xojo.

Sale ended. Any pending order arriving before 1st Dec will still be honored. And then the coupon code is invalid.

SMTP with OAuth for Office 365 in FileMaker

For years we had the XOAuth2Bearer option in our CURL functions for our plugins. Any customer asking for how to use oAuth with Microsoft or Gmail got pointed to this property. Register an application with Microsoft or Google to get your client ID & secret. Then show a login screen in a browser for the user to login and grab the token. There are plenty of frameworks available and implementations in various programming languages. Once you got the access token, you can pass it to the CURL XOAuth2Bearer option. Since this is some work, we today like to show you sample scripts in FileMaker to do this:

 

App Setup

 

For the Office 365 access, please go the portal.azure.com website and login. Then go to Azure Active Directory (currently a blue pyramid icon). When you come there, you can copy your Tenant ID (an UUID) for later. 

 

Click on the left bar on the App Registrations section and then click there to add a new registration. Pick a name for your application and pick which account types you like to use. We picked the third one for multiple organizations and personal accounts. For the redirect URI, we pick web and then put in the "http://localhost:9999/". This is what we use with the WebHook functions later to catch the answer from the authentication. The port number can be chosen freely from 1025 to 65535 and 9999 is easy to remember for our example. 

 

After you created the application, please copy the application ID. That is the client ID (an UUID) in the scripts. For the secrets, pick second tab for client secrets and add a new client secret. Pick a nice name and a long expiration date, e.g. 24 months. Now copy the client secret, a string with random characters. 

 

Microsoft has an article to explain registration here. Since the exact steps may vary, please be prepared to look for the buttons on a new place, if you read this in a few months.


(more)

MBS FileMaker Plugin 12.5 News

In this article we want to introduce you the new functions from the MBS FileMaker Plugin in version 12.5.

One Plugin for FileMaker AND Claris

Recently, the first version of the Claris product line has been released. We are proud to announce that our plugin will also work on the new platform and you can use it there as usual.
The best thing is that you can use the same plugin file for FileMaker and the new Claris. This is the first and currently the only plugin worldwide that works on both platforms equally.

MongoDB

Watch video about MongoDB
Thumbnail
MongoDB and MBS - A look under the hood

Since version 12.3 there is the possibility to connect your FileMaker solution directly to a MongoDB and work with the data on both sides. Normally, each change in the database is immediately committed as soon as it has been made. But this is not always desirable, e.g. when it comes to security relevant things where multiple records have to be changed. If in the meantime the connection breaks we don't know in which state our database is, which records have been changed, which not. For this we have the so called transactions, with which we can command the database to make all changes at the same time. We have now implemented this transaction for you in context with MongoDB. With the function MongoDB.StartTransaction we start a transaction, then we can use the rest of the functions to make changes to the database. At the end we decide if we want to commit these changes to the database with the function MongoDB.CommitTransaction or if we want to abort the transaction. For this we use the MongoDB.AbortTransaction function. If a transaction is currently running in the database we can check with MongoDB.InTransaction. The current status of a transaction can be checked with the MongoDB.TransactionState function which distinguishes between None, Starting, InProgress, Committed or Aborted.

We are happy to report that some developers did speed testing and our plugin is certainly faster performing than using a web service to talk to MongoDB since we can cache some things locally and keep a connection for multiple requests. And in contrast to some other mongo DB connectors, we can write records.

(more)

JSON problem fixed

If you downloaded the plugins in version 12.5 for FileMaker or 22.5 for Xojo in the last days, we may ask you to download them again.

The build from Friday, 10th November 2022 has the fixes for the JSON parsing functions.

This affects in Xojo the JSONMBS class, the FMAPI classes and the WebView2 control. For FileMaker it affects JSON functions, LDAP functions taking JSON and WebView functions for Windows.

The good thing with thousands of functions is, that the majority of plugin users may not be affected. But since this can be a surprise and people may want to enjoy our November release, we quickly uploaded a fixed plugin.

We are sorry about the problem introduced in pr4. In order to fix a problem with JSON parsing for a client, I accidentally changed code and that causes a NULL pointer in case of an error. Not always, but with one code path. As long as you pass valid JSON, it will work.

Everyone using 12.5/22.5 from build 4 to 8 is asked to move to build 9 from today.

PhotoPicker for iOS with FileMaker iOS SDK

Next to your container fields in iOS, you can show a button to insert a picture from the photo libraries. If you'd do this with our older ImagePicker functions, you may get a dialog about permissions to access the photos library. 

The new PhotoPicker functions allow you to access a dialog to pick photos from your app without such a dialog. The dialog runs as part of a background app included with iOS, which has all the permissions needed. It can show the whole photo library without your application having access to it. The user can select one or more pictures and have those being available to your applications. The images are then downloaded in the background if needed and you can check progress in a script. 


Here is a sample script:

 

If [ MBS( "PhotoPicker.Available") ] 

Set Variable [ $r ; Value: MBS( "PhotoPicker.Clear") ] 

# set trigger

Set Variable [ $r ; Value: MBS( "PhotoPicker.SetScript"; Get(FileName); "GotImage") ] 

# you can define a limit, 0 = no limit

Set Variable [ $r ; Value: MBS( "PhotoPicker.SetSelectionLimit"; 10) ] 

# show the picker!

Set Variable [ $r ; Value: MBS( "PhotoPicker.Present") ] 

End If


(more)

MBS Plugin 12.5 for Claris FileMaker - More than 6800 Functions In One Plugin

Nickenich, Germany - (November 8th, 2022) -- MonkeyBread Software today is pleased to announce MBS FileMaker Plugin 12.5 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 12.5 has been updated and now includes over 6800 different functions, and the versatile plugin has gained more new functions:

We are proud to have the first plugin version available for use with Claris Pro and Claris Server. While both product lines have their little differences, we managed to have a single plugin for both. You can use MBS FileMaker Plugin in Claris Pro locally on macOS or Windows as well as the Linux version of Claris Server.

Since transactions are quite useful in databases, we added those for our MongoDB functions. You can start a transaction, do a couple of changes and later decide whether you commit or revert changes. When you are not in a transaction, all changes are automatically committed.

For iOS we added new PhotoPicker functions to access the Photos database on the device. Without annoying permission dialogs, the user can select the photos to import and pass them into your FileMaker application.

Developers using Windows with FileMaker will be enlightened to find a little search box in the database design dialog when looking on the relationship graph. Please try it and let us know how it goes, so we may enhance it in the future.

The matrix functions got a few new tricks. First you can set column and row names with a list. The Matrix.ConvertDataType function can change the data type of values in the matrix, so they can be used better in SQL inserts later.

Developers on macOS will enjoy the new keyboard shortcuts command-[ and command-] in text views, so you can indent text of formulas. The code folding collapses in If blocks to the next else. And the URLs in comments can start with fmp://$/? to use current file name.

You can set which keys are binary data for LDAP with LDAP.SetBinaryKeys function. The CNContact.Show function works on macOS with a popover. The TOTP.Calculate function can use more algorithms for hashing, the BinaryFile.WriteInt function can specify the endian state, you can make a file on Windows read only with Files.SetReadOnly function and App.GetFocussedWindowTitle can give you the title of the front window.

Finally we updated the CURL library to version 7.86.0, DynaPDF to 4.0.70.200, LCMS to 2.14, openssl to 1.1.1s, SQLAPI to 5.2.2, SQLite to 3.39.4 and Xcode to 14.0.1.

See release notes for a complete list of changes.


Neues MBS Plugin 12.5 für Claris FileMaker

8. November 2022 - Monkeybread Software veröffentlicht heute das MBS FileMaker Plugin für Claris FileMaker in Version 12.5, mit inzwischen über 6800 Funktionen eines der größten FileMaker Plugins überhaupt. Hier einige der Neuerungen:

Wir sind stolz darauf, die erste Plugin-Version für Claris Pro und Claris Server zur Verfügung zu stellen. Obwohl beide Produktlinien ihre kleinen Unterschiede haben, ist es uns gelungen, ein gemeinsames Plugin für beide Seiten zu haben. Sie können das MBS FileMaker Plugin sowohl in Claris Pro lokal auf macOS oder Windows als auch in der Linux-Version von Claris Server verwenden.

Da Transaktionen in Datenbanken sehr nützlich sind, haben wir diese für unsere MongoDB-Funktionen hinzugefügt. Sie können eine Transaktion starten, ein paar Änderungen vornehmen und später entscheiden, ob Sie die Änderungen committen oder rückgängig machen möchten. Wenn Sie sich nicht in einer Transaktion befinden, werden alle Änderungen automatisch übertragen.

Für iOS haben wir neue PhotoPicker-Funktionen für den Zugriff auf die Photos-Datenbank auf dem iOS Gerät hinzugefügt. Ohne lästige Berechtigungsdialoge kann der Anwender die zu importierenden Fotos auswählen und an Ihre FileMaker-Anwendung übergeben.

Entwickler, die Windows mit FileMaker verwenden, werden erfreut sein, ein kleines Suchfeld im Datenbankdesign-Dialog zu finden, wenn sie das Beziehungsdiagramm betrachten. Bitte probieren Sie es aus und lassen Sie uns wissen wie gut es funktioniert, damit wir es in Zukunft verbessern können.

Die Matrix Funktionen haben ein paar neue Tricks bekommen: Zunächst können Sie Spalten- und Zeilennamen mit einer Liste festlegen. Die Funktion Matrix.ConvertDataType kann den Datentyp von Werten in der Matrix ändern, so dass sie später besser in SQL-Inserts verwendet werden können.

Entwickler unter macOS werden sich über die neuen Tastenkombinationen command-[ und command-] in Textansichten freuen, mit denen Sie den Text von Formeln einrücken können. Das Code-Folding kollabiert in If-Blöcken bis zum nächsten Sonst. Und die URLs in Kommentaren können jetzt mit fmp://$/? beginnen, um den aktuellen Dateinamen zu verwenden.

Mit der Funktion LDAP.SetBinaryKeys können Sie festlegen, welche Schlüssel für LDAP binäre Daten sind. Die Funktion CNContact.Show funktioniert jetzt unter macOS mit einem Popover. Die Funktion TOTP.Calculate kann mehr Algorithmen für das Hashing verwenden, die Funktion BinaryFile.WriteInt kann den Endian-Status angeben, mit der Funktion Files.SetReadOnly können Sie eine Datei unter Windows schreibgeschützt machen und App.GetFocussedWindowTitle kann Ihnen den Titel des vorderen Fensters anzeigen.

Schließlich haben wir die CURL-Bibliothek auf Version 7.86.0, DynaPDF auf 4.0.70.200, LCMS auf 2.14, openssl auf 1.1.1s, SQLAPI auf 5.2.2, SQLite auf 3.39.4 und Xcode auf 14.0.1 aktualisiert.

Alle Änderungen in den Release Notes.


MBS FileMaker Plugin, version 12.5pr7

New in this prerelease of version 12.5 of the MBS FileMaker Plugin: Download at monkeybreadsoftware.com/filemaker/files/Prerelease/, in DropBox folder or ask for being added to the DropBox shared folder.

Search relationship graph for Windows

For years we have nice goodies for FileMaker developers on macOS and now we got one for Windows: You can search within a relationship with a search field:


I tried for years to do something there. But when the plugin asks Windows about what is on the window, the OS would say: zero controls. Yes, the normal Windows API doesn't see the controls since they are all done in C++ classes drawing directly into the window. Without a handle to work on, we gave up several attempts to do something.

But a few days ago I looked again on various windows and I noticed that the third tab actually uses a real Win32 control to show the graph for relationships. Probably because this part is older from FileMaker 7 times and didn't get updated with all the controls around. When you click on the relationships tab, FileMaker shows a control there, that the plugin can see.

Now when we have a target to send the search string, we need a field. But we can't see the other controls, so we just place a search field right of the tabs with enough space for all languages. Since we have to watch the current window in FileMaker regularly, it shows up a bit delayed and we remove it when you click to other windows. Please try it in 12.5 pre-release plugin (and update to final one next week).

For the 12.5 release next week, we try to fix all bugs. But for the future we have a few ideas to enhance this. e.g. we may do a popup like on macOS, try to define a shortcut to continue search or try to get it working with asian characters. If you find an issue, please let us know.

Known problems: Seems like you cannot use underscore or point in the search text.

MBS FileMaker Plugin, version 12.5pr6

New in this prerelease of version 12.5 of the MBS FileMaker Plugin:
  • Added App.GetFocussedWindowTitle function.
  • Improved EventMonitor functions for Windows to recognize better 3rd, 4th or 5th mouse button.
  • Added a search field for relationship graph on Windows for European languages.
  • Updated LCMS library to version 2.14.
  • Updated openssl to version 1.1.1s.
  • Improved memory management for ProgressDialog functions on iOS.
Download at monkeybreadsoftware.com/filemaker/files/Prerelease/, in DropBox folder or ask for being added to the DropBox shared folder.

Archives

Apr 2024
Mar 2024
Feb 2024
Jan 2024
Dec 2023
Nov 2023
Oct 2023
Sep 2023
Aug 2023
Jul 2023
Jun 2023
May 2023
Apr 2023
Mar 2023
Feb 2023
Jan 2023
Dec 2022
Nov 2022
Oct 2022
Sep 2022
Aug 2022
Jul 2022
Jun 2022
May 2022
Apr 2022
Mar 2022
Feb 2022
Jan 2022
Dec 2021
Nov 2021
Oct 2021
Sep 2021
Aug 2021
Jul 2021
Jun 2021
May 2021
Apr 2021
Mar 2021
Feb 2021
Jan 2021
Dec 2020
Nov 2020
Oct 2020
Sep 2020
Aug 2020
Jul 2020
Jun 2020
May 2020
Apr 2020
Mar 2020
Feb 2020
Jan 2020
Dec 2019
Nov 2019
Oct 2019
Sep 2019
Aug 2019
Jul 2019
Jun 2019
May 2019
Apr 2019
Mar 2019
Feb 2019
Jan 2019
Dec 2018
Nov 2018
Oct 2018
Sep 2018
Aug 2018
Jul 2018
Jun 2018
May 2018
Apr 2018
Mar 2018
Feb 2018
Jan 2018
Dec 2017
Nov 2017
Oct 2017
Sep 2017
Aug 2017
Jul 2017
Jun 2017
May 2017
Apr 2017
Mar 2017
Feb 2017
Jan 2017
Dec 2016
Nov 2016
Oct 2016
Sep 2016
Aug 2016
Jul 2016
Jun 2016
May 2016
Apr 2016
Mar 2016
Feb 2016
Jan 2016
Dec 2015
Nov 2015
Oct 2015
Sep 2015
Aug 2015
Jul 2015
Jun 2015
May 2015
Apr 2015
Mar 2015
Feb 2015
Jan 2015
Dec 2014
Nov 2014
Oct 2014
Sep 2014
Aug 2014
Jul 2014
Jun 2014
May 2014
Apr 2014
Mar 2014
Feb 2014
Jan 2014
Dec 2013
Nov 2013
Oct 2013
Sep 2013
Aug 2013
Jul 2013
Jun 2013
May 2013
Apr 2013
Mar 2013
Feb 2013
Jan 2013
Dec 2012
Nov 2012
Oct 2012
Sep 2012
Aug 2012
Jul 2012
Jun 2012
May 2012
Apr 2012
Mar 2012
Feb 2012
Jan 2012
Dec 2011
Nov 2011
Oct 2011
Sep 2011
Aug 2011
Jul 2011
Jun 2011
May 2011
Apr 2011
Mar 2011
Feb 2011
Jan 2011
Dec 2010
Nov 2010
Oct 2010
Sep 2010
Aug 2010
Jul 2010
Jun 2010
May 2010
Apr 2010
Mar 2010
Feb 2010
Jan 2010
Dec 2009
Nov 2009
Oct 2009
Sep 2009
Aug 2009
Jul 2009
Apr 2009
Mar 2009
Feb 2009
Dec 2008
Nov 2008
Oct 2008
Aug 2008
May 2008
Apr 2008
Mar 2008
Feb 2008