MBS Plugin Quiz

Let us ask you a few questions and see how well you know our MBS FileMaker Plugin:

Which of the following functions is the oldest?

  • GMImage.Crop to crop an image
  • Schedule.StartScriptOnIdle to start a script when user takes a break
  • Process.List to list running applications on a Mac/PC.
  • Window.Hide to hide a window via plugin.
  • RegEx.Replace to make a replace with regular expression
  • (more)

    Customize your FileMaker solution

    When you deliver your FileMaker solution on macOS, you may customize the look of your application. This may include custom menus, toolbars and dock icons.

    Customize Menu

    You probably use a custom menu in FileMaker when you do a serious solution. Because you may not want to expose all the normal menu commands to your users, but reduce the feature set to what they actual need.

    Early in the start script you may want to call App.SetProcessName to set your solution name. This defines for example how the top left menu next to the Apple Menu is named on macOS.

    After you set the custom menu, you may further customize the menu and rename the content of the some menu entries. For example here we change the hide command to have a different name:

    MBS("Menubar.SetMenuCommandTitle"; "FileMaker Pro Advanced¶Hide FileMaker Pro Advanced"; "Hide MyApp")

    If you change the process name, you may need to change the menu path in the call. (more)

    Linux Compiler Upgrade

    After we updated compilers for macOS and Windows recently, it may be time for Linux.

    To build all our plugins for 64-bit Linux (x86_64) we moved to Ubuntu 18.04 this week.

    It turns out that updating to a new version of a compiler is easy. You rebuild everything, check new warnings and handle some error messages for changes in C++ frameworks.

    But then we tried the plugin on CentOS 7.9 and this was a disappointment. Tons of missing libraries. Well, looks like the c and c++ libraries in CentOS are a few years older than the one in Ubuntu 18.04. Now either we fix the dependencies or we have to redo with CentOS to have a common base.

    It turns out you can track down dependency by dependency and use various compiler options to disable newer features and stay with older C++ version 11 instead of 14 or 17. I'd wish this would be easier, but I had to recompile dozens of times to see what each changes causes. e.g. for a normal standard C++ string, you have nine ways to construct them. But we now have to avoid the newer variants and then it works.

    On the end the plugin now loads on CentOS 7.8 and Ubuntu 18.4.
    If you use an older version of Linux 64-bit, we may be able to avoid another function for you, but not a dozen!

    Our first build of the plugins required glibc version 2.27, glibcxx 3.4.21 and cxxabi 1.3.9 as those are the ones coming with Ubuntu 18.04.
    The final builds are down to glibc version 2.17, glibcxx 3.4.18 and cxxabi 1.3, which makes it compatible with CentOS 7.9.
    Ubuntu 16 comes with CXXABI 1.3.9 and glibc 2.23, so we expect the plugins load on Ubuntu 16, too.
    We also tried a fresh installed CentOS 7.7 and it seems like things work there, too.

    Coming soon for pr5. If you like to try before that, please let us know.

    Drei Monate bis zur Deutschen FileMaker Konferenz 2021 in Malbun

    Noch drei Monate bis zur FileMaker Konferenz 2021 in Malbun (Liechtenstein) und zur MBS Plugin Schulung Schulung am Mittwoch vorher.

    Vom 17. bis 19. Juni 2021 22. bis 24. Juli 2021 abgesagt findet die elfte deutschsprachige FileMaker Konferenz in Malbun, Liechtenstein statt. Aktuell läuft die Frühbucherphase bis 28. Februar mit vergünstigten Tickets.

    Die Veranstalter vom Verein FM Konferenz erwarten auch 2021 rund 120 Entwickler, Anwender, IT-Fachleute und Entscheidungsträger aus Wirtschaft, Bildung und Verwaltung. Rund um über 20 Fachvorträge und Workshops wird es viel Zeit zum Vernetzen in den gemeinsamen Pausen und beim Abendprogramm geben.

    Für den Deutschsprachigen Raum ist diese Konferenz das Treffen des Jahres. Hier finden Sie vom Anfänger bis zum Profi Kontakte zu anderen Entwicklern. Lernen Sie was es neues gibt, nehmen Sie Impulse mit für die eigene Arbeit und erfahren Sie mehr zu FileMaker von deutschsprachigen Experten!



    Die MBS Plugin Schulung vorher findet voraussichtlich am statt im gleichen Hotel am 16. Juni 2021 21. Juli 2021 abgesagt.

    Bitte planen Sie wenigstens einen extra Tag ein für ihren Besuch in Liechtenstein, damit Sie die Natur in dem schönen Tal geniessen können. Den Aufstieg auf den Sareis können Sie bequem zu Fuß vom Hotel aus starten und die Turnastraße hinauf spazieren bis zum Restaurant am Gipfel. Oder alternativ die Seilbahn nehmen.

    Hoffen wir, dass sich im Frühjahr die Corona Lage verbessert und die Konferenz stattfinden kann.

    Option Click for FileMaker Script Workspace

    We have a video to explain our new Option-Click feature coming to MBS FileMaker Plugin for version 11.2:

    So Option-Click on the gear icon will let FileMaker open the dialog or show the popover. The MBS Plugin notices the option key is down and then clicks for you the button to open the calculation dialog.

    The new MBS FileMaker Plugin 11.2 are coming in May 2021 and include this feature. We may tune it a bit more and if you like to try it, please play with 11.2pr4.


    MBS FileMaker Plugin, version 11.2pr4

    New in this prerelease of version 11.2 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.

    Query MBS Version from plugin in container

    If you use automatic plugin installation scripts, you may have the MBS Plugin in a container field in FileMaker. But how to automatically know the version number?

     

    Windows

     

    We got two short scripts to query the version from a container:

     

    # get temp path

    Set Variable [ $path ; Value: MBS( "Path.AddPathComponent"; MBS( "Folders.UserTemporary" ); "MBS.dll") ] 

    # write DLL file to disk

    Set Variable [ $r ; Value: MBS( "Container.WriteFile"; Install Plugin Update if needed::Plugin File Win 64bit; $path) ] 

    # Query file information

    Set Variable [ $version ; Value: MBS( "Files.FileInfo"; $Path; "version") ] 

    # Delete file

    Set Variable [ $version ; Value: MBS( "Files.Delete"; $Path) ] 

     

    As you see this script gets a temp path, writes the plugin there with DLL file extension and queries file information. Since MBS Plugin has all metadata in the right headers for DLL handler, the file information can be read by OS functions.

     

    Since this uses OS functions, it needs to run on Windows. Technically we could also do something cross platform, but that would need to read file in memory, scan for the version entry and return it.


    (more)

    MBS Plugin versions shipped

    Here is a table documenting the release versions of our MBS FileMaker Plugin from the last years. You see how regular we release and what the build number the final version had. If you still use an older one like 11.1.0.7, you may notice you have the pre-release version. Pre-release versions usually are not ready for new/changed features and contain some more debug code to do runtime checks. We disable those for final builds.

    DateVersionAdded support for FileMaker
    May 202111.2.0.9
    March 202111.1.0.9
    Januar 202111.0.0.919.2
    November 202010.5.0.1019.1
    September 202010.4.0.10
    July 202010.3.0.11
    May 202010.2.0.0919.0
    March 202010.1.0.08
    Januar 202010.0.0.09
    November 20199.5.0.09
    September 20199.4.0.11
    July 20199.3.0.0818
    May 20199.2.0.09
    March 20199.1.0.08
    Januar 20199.0.0.10
    November 20188.5.0.10
    September 20188.4.0.11
    July 20188.3.0.06
    May 20188.2.0.10
    March 20188.1.0.0717
    Januar 20188.0.0.10
    November 20177.5.0.10
    September 20177.4.0.09
    July 20177.3.0.08
    May 20177.2.0.0716
    March 20177.1.0.06
    Januar 20177.0.0.05
    November 20166.5.0.10
    September 20166.4.0.10
    July 20166.3.0.07
    May 20166.2.0.11
    March 20166.1.0.6
    Januar 20166.0.0.0915

    This table also lists which version introduces support for newer FileMaker version. Older plugins can't know what a newer FileMaker version brings, so while the plugin is usually ready in time, there are something breaking things. For example the 32 to 64 bit move, the addition of new Linux platform or upcoming Apple Silicon support. Sometimes things change in FileMaker like the Web Viewer switch to WebKit 2 in FileMaker 16, which caused us to rewrite those functions.

    A similar table could be assembled for operation system. On macOS you may prefer to use 11.0 or better 11.1 for Big Sur.

    Please do not hesitate to contact us if you have questions.


    GMail for emails with MBS Plugin

    As you may know we have support for sending and receiving emails with our MBS FileMaker Plugin and MBS Xojo Plugins. Using CURL functions we do the transfers for SMTP, POP3 and IMAP. Our SendMail functions help assemble emails including html content, inline graphics and multiple attachments. All with proper text encoding, so your umlauts or asian characters survive. The EmailParser functions help to parse emails and our IMAP Email example shows how to use them to load emails and preview them in a web viewer.

    Now Gmail has some security enhancements. And you can use a few ways. In general if you use an account for automating processing of emails, it may be good to make a separate account. Don't use your main account, but maybe have an extra gmail account to send your emails and process the bounces. Keep this separate to your other accounts.

    1. Access by less secure applications

    Gmail has an option to allow use of less secure applications.
    You can enable that option and then just use your login to gmail for our email functionality.
    Here are some sample script lines:

    # set server without SSL here, as we enable TLS later
    Set Variable [ $r ; Value: MBS("SendMail.SetSMTPServer"; $EmailID; "smtp.gmail.com" ) ]
    # put in your login here
    Set Variable [ $r ; Value: MBS("SendMail.SetSMTPUserName"; $EmailID; "monkeybreadsoftware@gmail.com") ]
    Set Variable [ $r ; Value: MBS("SendMail.SetSMTPPassword"; $EmailID; "MonkeyLikesToSendEmail") ]


    And later in the script configure CURL:

    # This turns TLS on and requires connection to be encrypted
    Set Variable [ $r ; Value: MBS("CURL.SetOptionUseSSL"; $curl; 3) ]
    # force TLS version 1.2 or newer
    Set Variable [ $r ; Value: MBS("CURL.SetOptionSSLVersion"; $curl; 6) ]
    # You may want to put in the root certificate related for google. We have the cacert-google.pem file on our blog, which contains the GlobalSign Root CA - R2 used by Google. By using only this certificate, you can avoid a man in the middle attack with a gmail.com certificate from another CA. Since the cacert expires someday, you may need to update that every few years.
    Set Variable [ $r ; Value: MBS( "CURL.SetOptionCAINFO"; $curl; "/Users/cs/Documents/cacert-google.pem") ]
    # now enable full verification:
    Set Variable [ $r ; Value: MBS("CURL.SetOptionSSLVerifyHost"; $curl; 2) ]
    Set Variable [ $r ; Value: MBS("CURL.SetOptionSSLVerifyPeer"; $curl; 1) ]


    This seems to work as of April 2021. But better use the following method:

    2. App Passwords

    Now you should have a 2 factor authentication enabled for your account. And once you have it, always be cautious if you see a request coming to your device. Whenever you login, you will be asked for a token, which comes via sms or app. Eventually someday there may be a hacker, who got your right password and tries to login. Then please don't grant access and don't tell anyone the code you get. Not that someone is on the phone and tells you to read the code google sends to you to enter a lottery.

    Once 2 factor authentication is enabled, the security settings website from Google shows App-Password section. There you can create a new one by selecting app and then device. I select Email in left and other use in right popup. Then it shows a text field and I just enter "FileMaker SMTP" and generate button. A new password like oagveoxdhvgzxnhr is created. We copy this password in our example and we can send emails. Once you send an email, the app password website shows the last usage time:



    Screenshot is in German, so your texts may be in a different language. The script to send emails with look same as above, just with a different password.

    3. oAuth

    You can also use oAuth to authenticate. Perform the login and get the bearer token, then pass it to CURL.SetOptionXOAuth2Bearer to do the login via CURL.

    Since MBS FileMaker Plugin an do various login options, you may want to use CURL.SetOptionLoginOptions to set which one to use. We can do PLAIN, LOGIN, XOAUTH2, XOAUTH or GSSAPI.
    e.g.
    Set Variable [ $r ; Value: MBS("CURL.SetOptionLoginOptions"; $curl; "AUTH=LOGIN") ]


    Let us know if you have questions. Please use 2 Factor authentication and be careful on when you grant access.

    Lost messages

    Client contact us in various ways. Mostly email, but some go via website chat, feedback form, text/iMessage/Signal messages, some use Skype or send private messages on LinkedIn, Facebook, Twitter or Xing. All the messages usually arrive and we get notified. But sometimes it fails.

    If you don't get an answer within a reasonable time, e.g. 2 days, please contact us again using an alternative way. The idea with 2 days is that there may always be a holiday or time in an airplane while traveling, where we have no chance to look into your message.

    Recently we had a client putting several support requests into a web form on our website which all were not delivered. Not sure what the outage was that let a few of many messages not come through. Other clients sent messages before, in-between and after and those worked. If the web form doesn't work, please come back via email. The client was of course very disappointed, but waited weeks before they contacted us via email about this. We could have helped quicker.

    One thing not to forget is to put our domain monkeybreadsoftware.de on a white list for your spam filter or add our support email address to your contacts. This may prevent spam filters to block us. Regularly our emails get blocked and answers or even license key delivery fails. A way to overcome that is to provide a second email for us, so we can answer to that one. And finally typing your own email address into a form can be difficult. If we have you in the database or a previous email, we can correct a typo, but for new clients, we often have no way to answer them.

    We also encourage users to post on the relevant forums. The community may help with questions about our plugins and often answer quicker than us. But even while we monitor a dozen forums for new posts regularly, we may still miss a message there. But feel free to refer to @Monkeybreadsoftware in your postings to call us specifically.

    As always, please don't hesitate to contact us if you have questions.

    MBS FileMaker Plugin, version 11.2pr3

    New in this prerelease of version 11.2 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.

    Claris switches to Ubuntu for Linux servers

    Today Claris International Inc. informed the public, that they switch from CentOS to Ubuntu for their favorited distribution for Linux servers.

    see community posting:
    Deprecation and removal of support for CentOS Linux from Claris FileMaker Server

    and the support article:
    Deprecation and removal of support for CentOS Linux from Claris FileMaker Server

    Claris FileMaker Server 19.2.1 is the last version on CentOS and will be supported till October 28, 2022. The next Claris FileMaker Server release will require Ubuntu. We expect this to be released within a few months.

    Our MBS FileMaker Plugin already runs fine on Ubuntu servers with pre-release FileMaker Server software. If you’re interested in testing FileMaker Server on Ubuntu, send an email to ets@claris.com to be considered for the External Testing Site (ETS) program. Then you can install a server in a VM and install our current MBS Plugin.

    If you have a Linux server, you may just spin up a new one later this year, install Ubuntu and a newer Claris FileMaker version. Then copy your database over and change DNS to point to the new server. Don't try to upgrade. Keep the old server as a backup, ready to take over if the setup of the new one fails. Once you migrated, you can then retire the old server (VM).

    In case Claris decides to support Linux on ARM 64-bit in the future, we can would be happy to build our plugin for such a platform.

    Thank you for the birthday cards

    For my birthday last Sunday I got a lot of nice emails, greetings and comments. But a few people went further and surprised me with letters, cards and even some presents!



    We collected them all and put them on a fish net in the hallway, so we can remember them.

    Thanks everyone for your good wishes and heart-warming texts. The Xojo people for example printed a special postcard with several pictures with me and staff on it.
    See you all soon on the next conferences!

    We are Claris Partner

    We continue to be a Claris Partner as we just renewed our FBA membership:

    It is already nine years since we applied for this and being a Claris Partner helps:

    The listing on the website as well as recommendations to prospects by Claris employers helps to bring business to your company. You get a discount for license purchase so you can make some money selling your solution bundled with the FileMaker licenses and offer one stop shopping to your clients. You can list your products on the marketplace and use Solution Bundle Agreement if you like to sell a lot of bundles. Access to beta versions, extra training sessions, exclusive partner meetings and a few test licenses are included. And you can bundle tools like the data migration utility with your solutions.

    If you like to become Claris Partner, you can read more on the Claris website.

    MBS FileMaker Plugin, version 11.2pr2

    New in this prerelease of version 11.2 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.

    Happy Eastern 2021


    MBS FileMaker Plugin, version 11.2pr1

    New in this prerelease of version 11.2 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.

    Company's 21st Birthday

    1st April 2000 I founded my company. Well, I registered as a business by getting my business registration (Gewerbeanmeldung) here in Germany.

    That was 2 months before I finished school (Gymnasium). While alternative civilian service (Zivildienst) and my time at the university, the company run well and I didn't have to depend on my parents or student loans. Actually the company got me so busy over the years, that I spend less time at university and since 2007 this is my full time job.

    I had a few clients in that time interested in development in REALbasic, a very young development environment which started two years earlier. At that time I had a website with a few freeware utilities, so people could see that I can do development. Two years later the demand for plugins got so high, that end of 2001 I started publishing my own plugins. And since 2006 I got into FileMaker Plugin development.

    Thanks everyone for supporting me over the years!

    PS: If you need a new license this weekend, use coupon code Birthday for an 21% discount.

    Archives

    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