David PHAM-VAN

Update format and changelog

... ... @@ -2,16 +2,13 @@
## 3.7.0
- Fix imports for Dart 2.15
- Move files
- Depreciate Font.stringSize
- Implement fallback font
- Implement Emoji support
- Improve outlines containing non-sequential level increments [Roel Spilker]
## 3.6.6
- Fix imports for Dart 2.15
## 3.6.5
- Update dependencies
... ...
... ... @@ -12,7 +12,7 @@
- Use RENDER_MODE_FOR_DISPLAY on Android
- Enable usage of printer's settings on Windows [Alban Lecuivre]
- Update android projects (mavenCentral, compileSdkVersion 30, gradle:4.1.0)
- Use syscall(SYS_memfd_create) instead of glibc function memfd_create
- Use syscall(SYS_memfd_create) instead of glibc function memfd_create [Obezyan]
## 5.6.6
... ...
... ... @@ -16,12 +16,12 @@
#include "print_job.h"
#include <linux/memfd.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/syscall.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <linux/memfd.h>
#include <unistd.h>
#include <cstring>
#include <string>
... ...