Skip to content

Releases: bc-m/fm-xml-export-exploder

v0.3.1

04 May 20:32
Compare
Choose a tag to compare

Generalized script-step parsing

Before

Prior to this release, the tool skipped parsing script steps that weren't marked as "supported" and printed only the script-step name and a warning to the sanitised script text file (the text files that look the same as the script in the FileMaker script workspace).

Example: Aus URL einfügen ⚠️⚠️⚠️ FM-XML-EXPORT-EXPLODER: UNKNOWN SCRIPT-STEP [ ID: "160" ] ⚠️⚠️⚠️

After

Starting with this release, the fm-xml-export-exploder parses each script step with a generalized script-step-parser and try to read each parameter. Not all parameters can be parsed yet, but unsupported ones will be marked in the sanitized script output.

Example: Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ]

As you can see, the already supported parameters are now present, instead of hiding them all and just adding a warning for the hole script step as before. This change also means that we now support many more steps than before, and can more easily add support for the missing ones. You can follow the progress of supported script-steps here: #28

What's Changed

  • feat: parse commit transaction by @bc-m in #37
  • feat: parse open transaction by @bc-m in #38
  • feat: parse revert transaction by @bc-m in #39
  • feat: parse set error logging by @bc-m in #40
  • feat: parse insert current date/time by @bc-m in #41
  • feat: merge parse commit with generic parser by @bc-m in #42
  • feat: parse all steps with generic parser by @bc-m in #43

Full Changelog: v0.2.1...v0.3.1

v0.2.1

03 May 18:05
Compare
Choose a tag to compare

What's Changed

  • chore: enable dependabot by @bc-m in #19
  • chore(deps): bump clap from 4.5.2 to 4.5.4 by @dependabot in #20
  • chore(deps): bump regex from 1.10.3 to 1.10.4 by @dependabot in #21
  • chore(deps): bump rayon from 1.9.0 to 1.10.0 by @dependabot in #22
  • chore(deps): bump anyhow from 1.0.81 to 1.0.82 by @dependabot in #23
  • chore(deps): bump insta from 1.36.1 to 1.38.0 by @dependabot in #24
  • feat: use strum to better manage string enums by @bc-m in #25
  • feat: decode html entities in comments by @bc-m in #26
  • refactor: use FromRepr instead EnumString for enum simplification by @bc-m in #27
  • feat: drop html-escape in favor of quick_xml unescape by @bc-m in #29
  • feat: parse repetition from field references by @bc-m in #30
  • feat: format variable repetition like filemaker by @bc-m in #31
  • feat: parse insert text script step by @bc-m in #32
  • feat: add parse boolean parameter util by @bc-m in #33
  • refactor: reformat files by @bc-m in #34
  • feat: parse truncate table and generalization by @bc-m in #35
  • feat: support more steps by @bc-m in #36

New Contributors

Full Changelog: v0.1.5...v0.2.1

v0.1.5

12 Mar 18:34
Compare
Choose a tag to compare

What's Changed

  • feat: introduce clap to parse cli arguments by @bc-m in #10
  • feat: introduce anyhow for better error handling by @bc-m in #11
  • feat: parse find script steps by @bc-m in #12
  • feat: parse privilege set catalog by @bc-m in #13
  • refactor: write elements to file by @bc-m in #14
  • feat: parse extended privileges catalog by @bc-m in #15
  • feat: parse custom menu set catalog by @bc-m in #16
  • feat: parse custom menu catalog by @bc-m in #17

Full Changelog: v0.1.4...v0.1.5

v0.1.4

06 Mar 08:38
Compare
Choose a tag to compare

What's Changed

  • fix: support dots in entity names by @bc-m in #9

Full Changelog: v0.1.3...v0.1.4

v0.1.3

04 Mar 19:52
Compare
Choose a tag to compare

What's Changed

  • chore(ci): add lint and test by @bc-m in #5
  • feat: add support for more open menu script steps by @bc-m in #6
  • feat: parse relationship catalog by @bc-m in #7
  • feat: parse table occurrences catalog by @bc-m in #8
  • feat: extend template init script by new folders

Full Changelog: v0.1.2...v0.1.3

v0.1.2

04 Mar 11:03
Compare
Choose a tag to compare

What's Changed

  • fix: parse fm18 tables by @bc-m in #4

Full Changelog: v0.1.1...v0.1.2

v0.1.1

03 Mar 20:47
Compare
Choose a tag to compare

What's Changed

  • feat: support fm18-xml-export by @bc-m in #2

Full Changelog: v0.1.0...v0.1.1

v0.1.0

01 Mar 22:59
Compare
Choose a tag to compare
chore(cd): add release github-action