Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrlanglois committed Sep 28, 2022
0 parents commit 81d8786
Show file tree
Hide file tree
Showing 8 changed files with 810 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
* text eol=crlf
*.gitmodules text eol=lf
*.sh text eol=lf
*.bat text eol=crlf

# Various misc binary files:

*.7z binary
*.a binary
*.aif binary
*.aiff binary
*.asf binary
*.bmp binary
*.crt binary
*.dll binary
*.dylib binary
*.eot binary
*.fla binary
*.flac binary
*.flv binary
*.gif binary
*.gz binary
*.ico binary
*.jpeg binary
*.jpg binary
*.la binary
*.lai binary
*.lib binary
*.mid binary
*.mov binary
*.mp2 binary
*.mp3 binary
*.mp4 binary
*.ogg binary
*.otc binary
*.otf binary
*.pdf binary
*.png binary
*.pyc binary
*.so binary
*.swf binary
*.tga binary
*.ttc binary
*.ttf binary
*.wav binary
*.webp binary
*.wm binary
*.wma binary
*.wmv binary
*.woff binary
*.zip binary
61 changes: 61 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
# Prerequisites
*.d

# Compiled object files
*.slo
*.lo
*.o
*.obj

# Precompiled headers
*.gch
*.pch

# Compiled dynamic libraries
*.so
*.dylib
*.dll

# Compiled static libraries
*.lai
*.la
*.a
*.lib

# Executables
*.exe
*.out
*.app

# Windows temp cache Files
[Tt]humbs.db

# macOS Finder and whatnot
.DS_Store
*.DS_Store
*.swp
*~

# IDE stuff
.vscode

# Fortran module files
*.mod
*.smod

# Other source repository archive directories (protects when importing)
.hg
.svn
CVS

# Various other file types
*.pkg
*.zip
*.exe
*.app
*.msi
*.vst3
*.component
*.vst
*.aax
*.aaxplugin
8 changes: 8 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Internet Systems Consortium license
===================================

Copyright (c) 2010 - present, SquarePine, Joël R. Langlois

Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# SquarePine Images

This JUCE/C++ module, `squarepine_images`, has the dream of wrangling several image codecs through JUCE:
* WebP
* TIFF
* RAW

# License

[The current license is ISC](https://github.com/SquarePine/squarepine_images/blob/main/LICENSE.md).

# Contributing

If you get snagged by anything or if you have suggestions -- let's have a look!

Simply make a GitHub Issue or a Pull Request, whatever's easier for you.
Loading

0 comments on commit 81d8786

Please sign in to comment.