Skip to content

Pakai Server v6.60

Choose a tag to compare

@pyhoon pyhoon released this 17 Apr 16:58
· 248 commits to main since this release
f8462a8

What's New

Template

  • Pakai Server (6.60).b4xtemplate

Changes

  1. Many parts of code are simplified
  2. Additional libraries updated to latest versions
  3. Added MiniORM error handling
  4. Added MH code module to replaced all MiniHtml CreateTag subs
  5. Updated HelpHandler
  6. Replaced SetApiMessage sub with HRM sub
  7. Renamed ConfigureDatabase sub to InitDatabase
  8. Renamed resources.json to res.json
  9. Added Macro for MiniORM Model Generator
  10. Breaking code changes for MiniORMUtils
- Public MS As ORMSettings
+ Public DBS As MiniORMSettings 
-DB.Join = Array("tbl_categories c", "p.category_id = c.id")
+DB.Join = DB.CreateJoin("", "tbl_categories AS c", Array("p.category_id = c.id"))