diff --git a/main.cpp b/main.cpp index fa4db25..bd2701f 100644 --- a/main.cpp +++ b/main.cpp @@ -330,8 +330,7 @@ int main(int argc, char * argv[]) { return 0; } -/* -TODO: +/* TODO: * Remember window size and position * Add key to set zoom to 1:1 pixel ratio * Add key to change sampling mode @@ -341,4 +340,11 @@ int main(int argc, char * argv[]) { * Animated GIFs -> https://stackoverflow.com/questions/36267833/c-sdl2-how-do-i-play-a-gif-in-sdl2/36410301#36410301 * Zoom on mouse instead of window center * Stop image from being moved off-screen +* Possible: Image deletion? +* Possible: Image rotation? +*/ + +/* KNOWN PROBLEMS: +* ICO: Files stored as "NEW PNG" type do not load with SDL_image +* ICO: Files with partial transparent pixels do not render correctly. */ diff --git a/meta/meta.rc b/meta/meta.rc new file mode 100644 index 0000000..42d1541 --- /dev/null +++ b/meta/meta.rc @@ -0,0 +1,24 @@ +1 VERSIONINFO +FILEVERSION 0,1,0,0 +PRODUCTVERSION 0,1,0,0 +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904E4" + BEGIN + VALUE "CompanyName", "Fuelsoft Development" + VALUE "FileDescription", "Image Viewer" + VALUE "FileVersion", "0.1.0" + VALUE "InternalName", "viewer" + VALUE "LegalCopyright", "Nick Wilson OSS - 2020" + VALUE "OriginalFilename", "Viewer.exe" + VALUE "ProductName", "Image Viewer" + VALUE "ProductVersion", "0.1.0" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x0409, 1252 + END +END +2 ICON "viewer.ico" \ No newline at end of file diff --git a/meta/viewer.ico b/meta/viewer.ico new file mode 100644 index 0000000..6433300 Binary files /dev/null and b/meta/viewer.ico differ