David PHAM-VAN

Update format and changelog

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