MBS Plugin for Windows Server 2012

Recently we moved to require Windows 8 as minimum and drop Windows 7 support. Turns out a few customers still use Windows Server 2012 and the plugin won't load there.

For Windows 7 or Windows 2012, we need to turn off:

WindowsML functions
WindowsOCR functions
WinPDF functions
WindowsUserNotification functions.

In future, we may build a Windows 7 or Server 2012 variant of the MBS FileMaker Plugin if needed, but we highly recommend you change your Windows versions in order to not require one.

We got a Windows 7 build of MBS Plugin 13.2 here: MBSFMPlugin132-Windows7.zip

PS: For Xojo we don't have such a problem as you decide what plugin parts you reference and if you don't reference anything needing Windows 8, you can still use Windows 7.

MBS @ FMTraining.TV - PDF Management

Check out the FMTraining.tv website. Richard Carlton and his team do a daily free live stream about FileMaker to watch.

A few days ago Christian Schmitz from Monkeybread Software joined a live episode to talk a bit about the MBS FileMaker Plugin. Watch it on YouTube.

We talk about MBS FileMaker Plugin and the PDF related functions: WinPDF functions for Windows in upcoming version 13.2, PDFKit functions for macOS and DynaPDF functions for cross platform PDF features.

(more)

MBS Plugin for FileMaker Linux Server on ARM

The new 2023 version of the FileMaker platform includes server support for Linux on ARM with Ubuntu 22.

A brief history: We built software for Raspberry Pi for years and even started preparing the 64-bit branch for it years ago. Since we saw the train going to ARM, we started in November 2021 to prepare our MBS Plugin for Linux on ARM. Starting early gave us time to walk over all our used libraries and build them for the new platform and make all the changes in our code as needed.

Since spring 2022 we regularly build the Linux for ARM plugin with our normal building process. Just making sure it links and no compiler error prevents this. We made a dummy app and a dummy FMWrapper.so for this, so we could even test the plugin loading and see whether it shows any errors.

(more)

MBS FileMaker Plugin, version 13.2pr4

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

MBS Plugin changes for FileMaker 2023

Claris just released a new version of the Claris FileMaker platform, now labeled as version 2023, internally 20.1. This could also have been a 19.7 release, but they brought together so many new things over time, that they decided that it is time to move finally to a version 20. The new icon makes a difference visually:

FileMaker 14 FileMaker 16 FileMaker 18 FileMaker 19 FileMaker 2023

FileMaker developers and users coming from version 18 or older or even 19.0 will see all the changes from 19.1 to 19.6 as well as a few new things for FileMaker 20. Here your top 10 feature list:

  • Ubuntu 22 installer for ADM64 and ARM64. We can now run FileMaker Server in a VM on Macbooks with M1/M2 CPUs.
  • Perform Script on Server with Callback script step, so you can run something on server and trigger a script in FMP when finished.
  • SFTP support for Insert from URL *
  • AD support for Ubuntu via Directory Service
  • OnWindowTransaction trigger
  • Send Mail via OAuth 2.0 *
  • Trigger Claris Connect Flow script step, finally an integration between FMP and Claris Connect without .
  • ReadQRCode on all platforms using zbar library *
  • Get(LiveText) server side *
  • Java improvements with version 17 and better memory management.

* functions also available via MBS Plugin in all versions of FileMaker.

(more)

MBS @ FMTraining.TV - Progression of Managing Digital Documents with FileMaker

Check out the FMTraining.tv website. Richard Carlton and his team do a daily free live stream about FileMaker to watch.

A few days ago Christian Schmitz from Monkeybread Software joined a live episode to talk a bit about the MBS FileMaker Plugin. Watch it on YouTube.

Richard talks about document management and later we show how MBS Plugin can help to store documents in Amazon S3 service and our plugin can create previews for various image files.

(more)

MBS FileMaker Plugin, version 13.2pr3

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

Comparing DynaPDF vs PDFKit and WinPDF

Since we add Windows PDF functions to our plugins, we like to compare what's different between them compared to DynaPDF.

For FileMaker, please check DynaPDF, WinPDF and PDFKit functions in MBS FileMaker Plugin.

For Xojo, please check DynaPDF classes in MBS Xojo DynaPDF Plugin, Windows PDF classes in MBS Xojo WinFrameworks Plugin and PDFKit classes in MBS Xojo MacControls Plugin.

Below you find the table of DynaPDF features and the checkboxes we got for PDFKit and Windows PDF:

(more)

Create thumbnail with GraphicsMagick

Here is a snippet we showed on the FMTraining live stream yesterday and it may be interesting for everyone here:

Set Variable [ $image ; Value: MBS( "GMImage.NewFromContainer"; $input) ] 

If [ MBS("IsError") = 0 ] 

# limit size to maximum 1000 pixels in width

Set Variable [ $scale ; Value: MBS("GMImage.Scale";$Image; "1000>") ] 

# remove metadata

Set Variable [ $r ; Value: MBS( "GMImage.SetProfile"; $image; "IPTC"; "" ) ] 

Set Variable [ $r ; Value: MBS( "GMImage.SetProfile"; $image; "EXIF"; "" ) ] 

Set Variable [ $r ; Value: MBS( "GMImage.SetProfile"; $image; "XMP"; "" ) ] 

# save

Set Variable [ $NewImage ; Value: MBS("GMImage.WriteToJPEGContainer"; $Image) ] 

If [ MBS("IsError") = 0 ] 

Set Field [ Get Preview::Preview ; $NewImage ] 

Set Field [ Get Preview::Made using ; "GraphicsMagick" ] 

Set Variable [ $r ; Value: MBS("GMimage.Release";$Image) ] 

Exit Script [ Text Result:    ] 

End If

Set Variable [ $r ; Value: MBS("GMimage.Release";$Image) ] 

End If

 

As you see we load an image from a container field or a variable with a container value. Then we scale it to a maximum width of 1000 pixels. We remvoe metadata and then write out a JPEG image.

We could add a call to GMImage.SetDensity in order to change resolution metadata if needed.


MBS FileMaker Plugin, version 13.2pr2

New in this prerelease of version 13.2 of the MBS FileMaker Plugin:
  • Updated Xcode to version 14.3.
  • Changed minimum version of macOS to 10.13.
  • Improved EmailParser.Attachment function to better handle PDF documents and return them as PDF container with preview.
  • Adjusted plugin for the next version of FileMaker.
  • Fixed a bug in MessageComposer functions on newer iOS versions.
  • Changed container handler to only put in MAIN item for FileMaker 13 or newer.
  • Changed default for CURL.SetOptionConnectionTimeout to 10 seconds (unless you change it) to avoid long stalls in your application of 2 minutes when server is not reachable.
  • Updated SQLAPI to version 5.2.4b3.
  • Added identifier value to the JSON returned by CNContact.JSON function.
  • Added root name parameter to Dictionary.ToXML function.
  • Changed Audit.Delete and Audit.Delete2 to record new fields found before deleting with Delete instead of Create.
Download at monkeybreadsoftware.com/filemaker/files/Prerelease/, in DropBox folder or ask for being added to the DropBox shared folder.

Windows PDF Functions

Since Microsoft added some PDF functions to their frameworks in Windows 10, we can now implement this to our MBS FileMaker Plugin. That got possible since we dropped Windows 7 and require newer functions for component management in Windows 8. For MBS FileMaker Plugin 13.2, we add the new functions for you to try out:

(more)

Company's 23rd Birthday

Once again we have April and thus we celebrate the 23rd anniversary of our company this weekend.



Time flies and it wasn't long ago, where we had to cancel the 20th anniversary party. Looks like it may be time to start planning the 25th birthday!

Thanks everyone for supporting us over the years and see you at the next conference!
If you need a new license this week, you can use coupon code Birthday for a little discount.

If you have a wish for a new plugin function, feel free to send us a message.

MBS FileMaker Plugin, version 13.2pr1

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

FileMaker Conference dotfmp.berlin 2023

Did you sign up for FileMaker Conference dotfmp.berlin 2023?

Just two months until the conference organized by Egbert Friedrich takes place from 1st to 3rd June 2023 in Berlin, Germany.

As the conference is in English, this is your chance to meet people from around the world at a conference in Europe. And for a lot of people it's easier to get to Berlin than to cross the atlantic and deal with US immigration officers.

Who
dotfmp is an effort of various leading European FileMaker Developers. It is meant to bring all kinds of higher level developers together to share knowledge, educate and challenge each other.
When
dotfmp starts at the 30th May 2023 in the later afternoon with a relaxed "Beer and Sausages" in one of the most famous Berlin Beergarden. The session days itself last from 1st until 3rd June with various socializing events in the evenings. Additionally you may stay the Sunday 4th June to see more from Berlin and its surroundings.
What
dotfmp is a 3 Day-Unconference, Meetup, Hangout or Barcamp. It is an informal and self-organized effort to meet on a personal base.
Where
dotfmp takes place in one of the most famous spots in Berlin. The Schankhalle Pfefferberg is located in a vibrant area with a very short walking distance to all the famous restaurants.
Why
We feel there are far too few possibilities to talk to, learn from, and hangout with fellow developers in a relaxed and informal environment. And we'd like to share work and get feedback from people chewing on similar challenges.


If you like to join the conference and present something, please register soon.

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