Skip to content
This repository was archived by the owner on May 26, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
ddb52df
Add changes
StevenSYS Mar 9, 2025
76b312f
Fix workflow
StevenSYS Mar 9, 2025
57cde78
Update CMake files
StevenSYS Mar 9, 2025
07cf7e6
Fix mistake in the CMake files
StevenSYS Mar 9, 2025
473a67c
Change "AuriText" to "AuriText-SDL2"
StevenSYS Mar 9, 2025
f58227c
I forgot to change these
StevenSYS Mar 9, 2025
8681e02
Change "AuriText" to "AuriText-SDL2" in more places
StevenSYS Mar 11, 2025
3e5ef7a
Change "AuriText" to "AuriText-SDL2" in more places
StevenSYS Mar 11, 2025
7cf2bd6
Improve error message stuff
StevenSYS Mar 11, 2025
5e91997
I hate making commits on my phone
StevenSYS Mar 11, 2025
c60e10e
Now you no longer get warnings when compiling with a C++ compiler!
StevenSYS Mar 13, 2025
8537c7f
I forgot to remove these
StevenSYS Mar 13, 2025
3e21491
Add screenshot for the example program
StevenSYS Mar 14, 2025
ee27dcb
Maybe it'll look better if I do this
StevenSYS Mar 14, 2025
66993cd
Change "Example Program" to just "Example"
StevenSYS Mar 14, 2025
bb962ac
Remove the extra space because it looks the same with or without it
StevenSYS Mar 14, 2025
c6ec1e7
Stripped unneeded information and crushed the example screenshot
StevenSYS Mar 14, 2025
7f5d51e
Add `BUILD_SHARED_LIBS` option to the CMake file
StevenSYS Mar 23, 2025
9bd8fd8
Added "AURITEXT_" prefix to the text align enums
StevenSYS Mar 25, 2025
eeecca5
Changed version number from "1.2.3.1" to "1.3-pre"
StevenSYS Mar 25, 2025
9ddd01a
Change "libAuriText" or "libAuriText-SDL2" to "AuriText-SDL2"
StevenSYS Mar 26, 2025
c8230a0
I forgot to change this
StevenSYS Mar 26, 2025
3c6ccb1
Update the example program screenshot
StevenSYS Mar 26, 2025
6318417
I forgot to change these too
StevenSYS Mar 26, 2025
b97a19f
Changed a thing in some file
StevenSYS Mar 26, 2025
318f2e0
Added font size to `ComIO.h`
StevenSYS Mar 28, 2025
13df0a9
Changed ComIO's size array to macros
StevenSYS Mar 28, 2025
756bced
Added VSync to the example program
StevenSYS Mar 28, 2025
dec0617
Improved the code a bit, I guess
StevenSYS Mar 28, 2025
5a193bf
I forgot to change this back
StevenSYS Mar 28, 2025
1cdd834
Link SDL2 with AuriText-SDL2 on the example program
StevenSYS Apr 6, 2025
7c1a2e5
Updated the colon and semicolon on the ComIO font
StevenSYS Apr 23, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
106 changes: 106 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
name: Build
on: [push, pull_request]
env:
CODE_PATH: .
BUILD_PATH: build
SDL2_VERSION: 2.32.2
defaults:
run:
shell: bash
jobs:
build:
name: Build ${{matrix.build-targets.name}}
runs-on: ${{matrix.build-targets.os}}
strategy:
matrix:
build-targets:
- {
name: "Linux (x64 Static)",
os: "ubuntu-latest",
libPath: "lib",
cFlags: "",
shared: false,
compiler: "gcc",
output: "AuriText-SDL2-linux-x64-static"
}
- {
name: "Linux (x64 Shared)",
os: "ubuntu-latest",
libPath: "lib",
cFlags: "",
shared: true,
compiler: "gcc",
output: "AuriText-SDL2-linux-x64-shared"
}
- {
name: "Windows (x64)",
os: "windows-latest",
libPath: "lib",
cFlags: "",
shared: true,
compiler: "gcc",
output: "AuriText-SDL2-mingw-x64"
}
steps:
- uses: actions/checkout@v4

- name: SDL2 - Install (Linux)
if: runner.os == 'Linux'
run: >
sudo apt install libsdl2-dev

- name: SDL2 - Install (Windows)
if: runner.os == 'Windows'
run: |
curl -L https://github.com/libsdl-org/SDL/releases/download/release-${{env.SDL2_VERSION}}/SDL2-devel-${{env.SDL2_VERSION}}-mingw.tar.gz -o SDL2-devel-${{env.SDL2_VERSION}}-mingw.tar.gz
tar xzvf SDL2-devel-${{env.SDL2_VERSION}}-mingw.tar.gz

cp -r SDL2-${{env.SDL2_VERSION}}/x86_64-w64-mingw32/* C:/mingw64
cp -r SDL2-${{env.SDL2_VERSION}}/x86_64-w64-mingw32/* C:/mingw64/x86_64-w64-mingw32

- name: Make Directories
run: >
mkdir -p "${{matrix.build-targets.output}}/include/AuriText-SDL2"
"${{matrix.build-targets.output}}/${{matrix.build-targets.libPath}}"
"${{matrix.build-targets.output}}/share/licenses/AuriText-SDL2"

- name: Make Directories (Windows)
if: runner.os == 'Windows'
run: >
mkdir -p "${{matrix.build-targets.output}}/bin"

- name: Configure CMake
run: >
cmake -S ${{env.CODE_PATH}}
-B ${{env.BUILD_PATH}}
-DCMAKE_C_COMPILER=${{matrix.build-targets.compiler}}
-DCMAKE_BUILD_TYPE=Release
-DBUILD_SHARED_LIBS=${{matrix.build-targets.shared}}
-DCMAKE_C_FLAGS=${{matrix.build-targets.cFlags}}
-G "Unix Makefiles"

- name: Build
run: cmake --build ${{env.BUILD_PATH}}

- name: Copy Files (Shared)
run: |
cp *.h "${{matrix.build-targets.output}}/include/AuriText-SDL2"
cp COPYING* "${{matrix.build-targets.output}}/share/licenses/AuriText-SDL2"

- name: Copy Files (Linux)
if: runner.os == 'Linux'
run: cp ${{env.BUILD_PATH}}/libAuriText-SDL2.* "${{matrix.build-targets.output}}/${{matrix.build-targets.libPath}}"

- name: Copy Files (Windows)
if: runner.os == 'Windows'
run: |
cp ${{env.BUILD_PATH}}/libAuriText-SDL2.dll.a "${{matrix.build-targets.output}}/${{matrix.build-targets.libPath}}"
cp ${{env.BUILD_PATH}}/libAuriText-SDL2.dll "${{matrix.build-targets.output}}/bin"

- name: Make Archive
run: tar -czvf "${{matrix.build-targets.output}}.tar.gz" "${{matrix.build-targets.output}}"

- uses: actions/upload-artifact@v4
with:
name: ${{matrix.build-targets.output}}
path: ${{matrix.build-targets.output}}.tar.gz
14 changes: 4 additions & 10 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,26 +1,20 @@
cmake_minimum_required(VERSION 3.25)
set(LIBRARY_NAME "AuriText")

project(AuriText LANGUAGES C)
option(BUILD_SHARED_LIBS "Build shared version of ${PROJECT_NAME}" on)

project(AuriText-SDL2 LANGUAGES C)

set(CMAKE_C_FLAGS_DEBUG "-g -Wall")
set(CMAKE_C_FLAGS_RELEASE "-s -O2")

file(GLOB SOURCE_FILES "*.c")

find_package(SDL2 REQUIRED)
find_package(SDL2_image REQUIRED)
include_directories(${SDL2_INCLUDE_DIRS})

if(BUILD_SHARED_LIBS)
add_library(${PROJECT_NAME} SHARED ${SOURCE_FILES})
else()
add_library(${PROJECT_NAME} STATIC ${SOURCE_FILES})
endif()
target_include_directories(${PROJECT_NAME} PRIVATE src/)
if (CMAKE_C_COMPILER_ID MATCHES "Clang")
target_link_libraries(${PROJECT_NAME}
${SDL2_LIBRARIES}
SDL2_image
)
endif()
target_link_libraries(${PROJECT_NAME} ${SDL2_LIBRARIES})
Binary file added Fonts/ComIO/Letters/Lower/a.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Fonts/ComIO/Letters/Lower/b.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Fonts/ComIO/Letters/Lower/c.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Fonts/ComIO/Letters/Lower/d.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Fonts/ComIO/Letters/Lower/e.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Fonts/ComIO/Letters/Lower/f.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Fonts/ComIO/Letters/Lower/g.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Fonts/ComIO/Letters/Lower/h.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Fonts/ComIO/Letters/Lower/i.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Fonts/ComIO/Letters/Lower/j.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Fonts/ComIO/Letters/Lower/k.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Fonts/ComIO/Letters/Lower/l.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Fonts/ComIO/Letters/Lower/m.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Fonts/ComIO/Letters/Lower/n.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Fonts/ComIO/Letters/Lower/o.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Fonts/ComIO/Letters/Lower/p.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Fonts/ComIO/Letters/Lower/q.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Fonts/ComIO/Letters/Lower/r.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Fonts/ComIO/Letters/Lower/s.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Fonts/ComIO/Letters/Lower/t.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Fonts/ComIO/Letters/Lower/u.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Fonts/ComIO/Letters/Lower/v.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Fonts/ComIO/Letters/Lower/w.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Fonts/ComIO/Letters/Lower/x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Fonts/ComIO/Letters/Lower/y.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Fonts/ComIO/Letters/Lower/z.png
Binary file added Fonts/ComIO/Letters/Upper/A.png
Binary file added Fonts/ComIO/Letters/Upper/B.png
Binary file added Fonts/ComIO/Letters/Upper/C.png
Binary file added Fonts/ComIO/Letters/Upper/D.png
Binary file added Fonts/ComIO/Letters/Upper/E.png
Binary file added Fonts/ComIO/Letters/Upper/F.png
Binary file added Fonts/ComIO/Letters/Upper/G.png
Binary file added Fonts/ComIO/Letters/Upper/H.png
Binary file added Fonts/ComIO/Letters/Upper/I.png
Binary file added Fonts/ComIO/Letters/Upper/J.png
Binary file added Fonts/ComIO/Letters/Upper/K.png
Binary file added Fonts/ComIO/Letters/Upper/L.png
Binary file added Fonts/ComIO/Letters/Upper/M.png
Binary file added Fonts/ComIO/Letters/Upper/N.png
Binary file added Fonts/ComIO/Letters/Upper/O.png
Binary file added Fonts/ComIO/Letters/Upper/P.png
Binary file added Fonts/ComIO/Letters/Upper/Q.png
Binary file added Fonts/ComIO/Letters/Upper/R.png
Binary file added Fonts/ComIO/Letters/Upper/S.png
Binary file added Fonts/ComIO/Letters/Upper/T.png
Binary file added Fonts/ComIO/Letters/Upper/U.png
Binary file added Fonts/ComIO/Letters/Upper/V.png
Binary file added Fonts/ComIO/Letters/Upper/W.png
Binary file added Fonts/ComIO/Letters/Upper/X.png
Binary file added Fonts/ComIO/Letters/Upper/Y.png
Binary file added Fonts/ComIO/Letters/Upper/Z.png
Binary file added Fonts/ComIO/Numbers/0.png
Binary file added Fonts/ComIO/Numbers/1.png
Binary file added Fonts/ComIO/Numbers/2.png
Binary file added Fonts/ComIO/Numbers/3.png
Binary file added Fonts/ComIO/Numbers/4.png
Binary file added Fonts/ComIO/Numbers/5.png
Binary file added Fonts/ComIO/Numbers/6.png
Binary file added Fonts/ComIO/Numbers/7.png
Binary file added Fonts/ComIO/Numbers/8.png
Binary file added Fonts/ComIO/Numbers/9.png
Binary file added Fonts/ComIO/Specials/1/1.png
Binary file added Fonts/ComIO/Specials/1/2.png
Binary file added Fonts/ComIO/Specials/1/3.png
Binary file added Fonts/ComIO/Specials/1/4.png
Binary file added Fonts/ComIO/Specials/1/5.png
Binary file added Fonts/ComIO/Specials/1/6.png
Binary file added Fonts/ComIO/Specials/1/7.png
Binary file added Fonts/ComIO/Specials/1/8.png
Binary file added Fonts/ComIO/Specials/1/9.png
Binary file added Fonts/ComIO/Specials/1/A1.png
Binary file added Fonts/ComIO/Specials/1/A2.png
Binary file added Fonts/ComIO/Specials/1/A3.png
Binary file added Fonts/ComIO/Specials/1/A4.png
Binary file added Fonts/ComIO/Specials/1/A5.png
Binary file added Fonts/ComIO/Specials/1/A6.png
Binary file added Fonts/ComIO/Specials/1/A7.png
Binary file added Fonts/ComIO/Specials/2/1.png
Binary file added Fonts/ComIO/Specials/2/2.png
Binary file added Fonts/ComIO/Specials/2/3.png
Binary file added Fonts/ComIO/Specials/2/4.png
Binary file added Fonts/ComIO/Specials/2/5.png
Binary file added Fonts/ComIO/Specials/2/6.png
Binary file added Fonts/ComIO/Specials/2/7.png
Binary file added Fonts/ComIO/Specials/3/1.png
Binary file added Fonts/ComIO/Specials/3/2.png
Binary file added Fonts/ComIO/Specials/3/3.png
Binary file added Fonts/ComIO/Specials/3/4.png
Binary file added Fonts/ComIO/Specials/3/5.png
Binary file added Fonts/ComIO/Specials/3/6.png
Binary file added Fonts/ComIO/Specials/4/1.png
Binary file added Fonts/ComIO/Specials/4/2.png
Binary file added Fonts/ComIO/Specials/4/3.png
Binary file added Fonts/ComIO/Specials/4/4.png
Binary file modified Fonts/InFont/Letters/Lower/a.png
Binary file modified Fonts/InFont/Letters/Lower/b.png
Binary file modified Fonts/InFont/Letters/Lower/c.png
Binary file modified Fonts/InFont/Letters/Lower/d.png
Binary file modified Fonts/InFont/Letters/Lower/e.png
Binary file modified Fonts/InFont/Letters/Lower/f.png
Binary file modified Fonts/InFont/Letters/Lower/g.png
Binary file modified Fonts/InFont/Letters/Lower/h.png
Binary file modified Fonts/InFont/Letters/Lower/i.png
Binary file modified Fonts/InFont/Letters/Lower/j.png
Binary file modified Fonts/InFont/Letters/Lower/k.png
Binary file modified Fonts/InFont/Letters/Lower/l.png
Binary file modified Fonts/InFont/Letters/Lower/m.png
Binary file modified Fonts/InFont/Letters/Lower/n.png
Binary file modified Fonts/InFont/Letters/Lower/o.png
Binary file modified Fonts/InFont/Letters/Lower/p.png
Binary file modified Fonts/InFont/Letters/Lower/q.png
Binary file modified Fonts/InFont/Letters/Lower/r.png
Binary file modified Fonts/InFont/Letters/Lower/s.png
Binary file modified Fonts/InFont/Letters/Lower/t.png
Binary file modified Fonts/InFont/Letters/Lower/u.png
Binary file modified Fonts/InFont/Letters/Lower/v.png
Binary file modified Fonts/InFont/Letters/Lower/w.png
Binary file modified Fonts/InFont/Letters/Lower/x.png
Binary file modified Fonts/InFont/Letters/Lower/y.png
Binary file modified Fonts/InFont/Letters/Lower/z.png
Binary file modified Fonts/InFont/Letters/Upper/A.png
Binary file modified Fonts/InFont/Letters/Upper/B.png
Binary file modified Fonts/InFont/Letters/Upper/C.png
Binary file modified Fonts/InFont/Letters/Upper/D.png
Binary file modified Fonts/InFont/Letters/Upper/E.png
Binary file modified Fonts/InFont/Letters/Upper/F.png
Binary file modified Fonts/InFont/Letters/Upper/G.png
Binary file modified Fonts/InFont/Letters/Upper/H.png
Binary file modified Fonts/InFont/Letters/Upper/I.png
Binary file modified Fonts/InFont/Letters/Upper/J.png
Binary file modified Fonts/InFont/Letters/Upper/K.png
Binary file modified Fonts/InFont/Letters/Upper/L.png
Binary file modified Fonts/InFont/Letters/Upper/M.png
Binary file modified Fonts/InFont/Letters/Upper/N.png
Binary file modified Fonts/InFont/Letters/Upper/O.png
Binary file modified Fonts/InFont/Letters/Upper/P.png
Binary file modified Fonts/InFont/Letters/Upper/Q.png
Binary file modified Fonts/InFont/Letters/Upper/R.png
Binary file modified Fonts/InFont/Letters/Upper/S.png
Binary file modified Fonts/InFont/Letters/Upper/T.png
Binary file modified Fonts/InFont/Letters/Upper/U.png
Binary file modified Fonts/InFont/Letters/Upper/V.png
Binary file modified Fonts/InFont/Letters/Upper/W.png
Binary file modified Fonts/InFont/Letters/Upper/X.png
Binary file modified Fonts/InFont/Letters/Upper/Y.png
Binary file modified Fonts/InFont/Letters/Upper/Z.png
Binary file modified Fonts/InFont/Numbers/0.png
Binary file modified Fonts/InFont/Numbers/1.png
Binary file modified Fonts/InFont/Numbers/2.png
Binary file modified Fonts/InFont/Numbers/3.png
Binary file modified Fonts/InFont/Numbers/4.png
Binary file modified Fonts/InFont/Numbers/5.png
Binary file modified Fonts/InFont/Numbers/6.png
Binary file modified Fonts/InFont/Numbers/7.png
Binary file modified Fonts/InFont/Numbers/8.png
Binary file modified Fonts/InFont/Numbers/9.png
Binary file modified Fonts/InFont/Specials/1/0.png
Binary file modified Fonts/InFont/Specials/1/1.png
Binary file modified Fonts/InFont/Specials/1/2.png
Binary file modified Fonts/InFont/Specials/1/3.png
Binary file modified Fonts/InFont/Specials/1/4.png
Binary file modified Fonts/InFont/Specials/1/5.png
Binary file modified Fonts/InFont/Specials/1/6.png
Binary file modified Fonts/InFont/Specials/1/7.png
Binary file modified Fonts/InFont/Specials/1/8.png
Binary file modified Fonts/InFont/Specials/1/9.png
Binary file modified Fonts/InFont/Specials/1/A0.png
Binary file modified Fonts/InFont/Specials/1/A1.png
Binary file modified Fonts/InFont/Specials/1/A2.png
Binary file modified Fonts/InFont/Specials/1/A3.png
Binary file modified Fonts/InFont/Specials/1/A4.png
Binary file modified Fonts/InFont/Specials/1/A5.png
Binary file modified Fonts/InFont/Specials/3/0.png
Binary file modified Fonts/InFont/Specials/3/1.png
Binary file modified Fonts/InFont/Specials/3/2.png
Binary file modified Fonts/InFont/Specials/3/3.png
Binary file modified Fonts/InFont/Specials/3/4.png
Binary file modified Fonts/InFont/Specials/3/5.png
Binary file modified Fonts/InFont/Specials/4/0.png
Binary file modified Fonts/InFont/Specials/4/1.png
Binary file modified Fonts/InFont/Specials/4/2.png
Binary file modified Fonts/InFont/Specials/4/3.png
Binary file modified Fonts/OutFont/Letters/Lower/a.png
Binary file modified Fonts/OutFont/Letters/Lower/b.png
Binary file modified Fonts/OutFont/Letters/Lower/c.png
Binary file modified Fonts/OutFont/Letters/Lower/d.png
Binary file modified Fonts/OutFont/Letters/Lower/e.png
Binary file modified Fonts/OutFont/Letters/Lower/f.png
Binary file modified Fonts/OutFont/Letters/Lower/g.png
Binary file modified Fonts/OutFont/Letters/Lower/h.png
Binary file modified Fonts/OutFont/Letters/Lower/i.png
Binary file modified Fonts/OutFont/Letters/Lower/j.png
Binary file modified Fonts/OutFont/Letters/Lower/k.png
Binary file modified Fonts/OutFont/Letters/Lower/l.png
Binary file modified Fonts/OutFont/Letters/Lower/m.png
Binary file modified Fonts/OutFont/Letters/Lower/n.png
Binary file modified Fonts/OutFont/Letters/Lower/o.png
Binary file modified Fonts/OutFont/Letters/Lower/p.png
Binary file modified Fonts/OutFont/Letters/Lower/q.png
Binary file modified Fonts/OutFont/Letters/Lower/r.png
Binary file modified Fonts/OutFont/Letters/Lower/s.png
Binary file modified Fonts/OutFont/Letters/Lower/t.png
Binary file modified Fonts/OutFont/Letters/Lower/u.png
Binary file modified Fonts/OutFont/Letters/Lower/v.png
Binary file modified Fonts/OutFont/Letters/Lower/w.png
Binary file modified Fonts/OutFont/Letters/Lower/x.png
Binary file modified Fonts/OutFont/Letters/Lower/y.png
Binary file modified Fonts/OutFont/Letters/Lower/z.png
Binary file modified Fonts/OutFont/Letters/Upper/A.png
Binary file modified Fonts/OutFont/Letters/Upper/B.png
Binary file modified Fonts/OutFont/Letters/Upper/C.png
Binary file modified Fonts/OutFont/Letters/Upper/D.png
Binary file modified Fonts/OutFont/Letters/Upper/E.png
Binary file modified Fonts/OutFont/Letters/Upper/F.png
Binary file modified Fonts/OutFont/Letters/Upper/G.png
Binary file modified Fonts/OutFont/Letters/Upper/H.png
Binary file modified Fonts/OutFont/Letters/Upper/I.png
Binary file modified Fonts/OutFont/Letters/Upper/J.png
Binary file modified Fonts/OutFont/Letters/Upper/K.png
Binary file modified Fonts/OutFont/Letters/Upper/L.png
Binary file modified Fonts/OutFont/Letters/Upper/M.png
Binary file modified Fonts/OutFont/Letters/Upper/N.png
Binary file modified Fonts/OutFont/Letters/Upper/O.png
Binary file modified Fonts/OutFont/Letters/Upper/P.png
Binary file modified Fonts/OutFont/Letters/Upper/Q.png
Binary file modified Fonts/OutFont/Letters/Upper/R.png
Binary file modified Fonts/OutFont/Letters/Upper/S.png
Binary file modified Fonts/OutFont/Letters/Upper/T.png
Binary file modified Fonts/OutFont/Letters/Upper/U.png
Binary file modified Fonts/OutFont/Letters/Upper/V.png
Binary file modified Fonts/OutFont/Letters/Upper/W.png
Binary file modified Fonts/OutFont/Letters/Upper/X.png
Binary file modified Fonts/OutFont/Letters/Upper/Y.png
Binary file modified Fonts/OutFont/Letters/Upper/Z.png
Binary file modified Fonts/OutFont/Numbers/0.png
Binary file modified Fonts/OutFont/Numbers/1.png
Binary file modified Fonts/OutFont/Numbers/2.png
Binary file modified Fonts/OutFont/Numbers/3.png
Binary file modified Fonts/OutFont/Numbers/4.png
Binary file modified Fonts/OutFont/Numbers/5.png
Binary file modified Fonts/OutFont/Numbers/6.png
Binary file modified Fonts/OutFont/Numbers/7.png
Binary file modified Fonts/OutFont/Numbers/8.png
Binary file modified Fonts/OutFont/Numbers/9.png
Binary file modified Fonts/OutFont/Specials/1/0.png
Binary file modified Fonts/OutFont/Specials/1/1.png
Binary file modified Fonts/OutFont/Specials/1/2.png
Binary file modified Fonts/OutFont/Specials/1/3.png
Binary file modified Fonts/OutFont/Specials/1/4.png
Binary file modified Fonts/OutFont/Specials/1/5.png
Binary file modified Fonts/OutFont/Specials/1/6.png
Binary file modified Fonts/OutFont/Specials/1/7.png
Binary file modified Fonts/OutFont/Specials/1/8.png
Binary file modified Fonts/OutFont/Specials/1/9.png
Binary file modified Fonts/OutFont/Specials/1/A0.png
Binary file modified Fonts/OutFont/Specials/1/A1.png
Binary file modified Fonts/OutFont/Specials/1/A2.png
Binary file modified Fonts/OutFont/Specials/1/A3.png
Binary file modified Fonts/OutFont/Specials/1/A4.png
Binary file modified Fonts/OutFont/Specials/1/A5.png
Binary file modified Fonts/OutFont/Specials/2/0.png
Binary file modified Fonts/OutFont/Specials/2/1.png
Binary file modified Fonts/OutFont/Specials/2/2.png
Binary file modified Fonts/OutFont/Specials/2/3.png
Binary file modified Fonts/OutFont/Specials/2/4.png
Binary file modified Fonts/OutFont/Specials/2/5.png
Binary file modified Fonts/OutFont/Specials/2/6.png
Binary file modified Fonts/OutFont/Specials/3/0.png
Binary file modified Fonts/OutFont/Specials/3/1.png
Binary file modified Fonts/OutFont/Specials/3/2.png
Binary file modified Fonts/OutFont/Specials/3/3.png
Binary file modified Fonts/OutFont/Specials/3/4.png
Binary file modified Fonts/OutFont/Specials/3/5.png
Binary file modified Fonts/OutFont/Specials/4/0.png
Binary file modified Fonts/OutFont/Specials/4/1.png
Binary file modified Fonts/OutFont/Specials/4/2.png
Binary file modified Fonts/OutFont/Specials/4/3.png
Binary file modified Fonts/Suoirua/Letters/Lower/a.png
Binary file modified Fonts/Suoirua/Letters/Lower/b.png
Binary file modified Fonts/Suoirua/Letters/Lower/c.png
Binary file modified Fonts/Suoirua/Letters/Lower/d.png
Binary file modified Fonts/Suoirua/Letters/Lower/e.png
Binary file modified Fonts/Suoirua/Letters/Lower/f.png
Binary file modified Fonts/Suoirua/Letters/Lower/g.png
Binary file modified Fonts/Suoirua/Letters/Lower/h.png
Binary file modified Fonts/Suoirua/Letters/Lower/i.png
Binary file modified Fonts/Suoirua/Letters/Lower/j.png
Binary file modified Fonts/Suoirua/Letters/Lower/k.png
Binary file modified Fonts/Suoirua/Letters/Lower/l.png
Binary file modified Fonts/Suoirua/Letters/Lower/m.png
Binary file modified Fonts/Suoirua/Letters/Lower/n.png
Binary file modified Fonts/Suoirua/Letters/Lower/o.png
Binary file modified Fonts/Suoirua/Letters/Lower/p.png
Binary file modified Fonts/Suoirua/Letters/Lower/q.png
Binary file modified Fonts/Suoirua/Letters/Lower/r.png
Binary file modified Fonts/Suoirua/Letters/Lower/s.png
Binary file modified Fonts/Suoirua/Letters/Lower/t.png
Loading