-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improved version handling, added package target.
Version number has been moved to a separate file. Makefile has been updated to generate C header file from that version. Added making package, for both windows and unix-like OS.
- Loading branch information
1 parent
8663ed8
commit b8a5306
Showing
5 changed files
with
106 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
|
||
Best 8bpp palette selector for a series of PNG files (Png2bestPal) | ||
Created by Tomasz Lis; GNU General Public License | ||
---------------------------------------- | ||
usage: | ||
|
||
png2bestpal.exe [options] <filename> | ||
where <filename> should be the input BMP file, and [options] are: | ||
-v,--verbose Verbose console output mode | ||
-m<file>,--palmap<file> Static palette entries mapping file name | ||
-o<file>,--output<file> Output PAL file name |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
VER_MAJOR=1 | ||
VER_MINOR=0 | ||
VER_RELEASE=1 | ||
VER_BUILD=19 | ||
PACKAGE_SUFFIX=devel |