font2bitmap 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -65,8 +65,7 @@ The tool generates a C header file (e.g., `my_font.h`) that defines a `font_t` s
65
65
  Here's a brief example of what the generated C header file content looks like:
66
66
 
67
67
  ```c
68
- #ifndef FONT_MY_FONT_H
69
- #define FONT_MY_FONT_H
68
+ #pragma once
70
69
 
71
70
  #include <stdint.h>
72
71
  #include "font.h"
@@ -91,8 +90,6 @@ const font_t my_font = {
91
90
  }
92
91
  }
93
92
  };
94
-
95
- #endif // FONT_MY_FONT_H
96
93
  ```
97
94
 
98
95
  ## Limitations
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "font2bitmap",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Utility to convert font files to bitmap format",
5
5
  "main": "dist/cli.js",
6
6
  "type": "module",