Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
0c150b9
Reorganized directory structure
Dove6 Nov 7, 2019
3250793
Translated README to English
Dove6 Nov 7, 2019
9e50722
Update README.md
Dove6 Nov 7, 2019
7e37db4
Finished primary API design
Dove6 Nov 14, 2019
3a20179
Merge branch 'library' of https://github.com/Dove6/AMkd into library
Dove6 Nov 14, 2019
f2e1224
Created documentation
Dove6 Nov 15, 2019
8ffaaa4
Improved documentation and created basic example of usage
Dove6 Nov 15, 2019
0e2dff6
Changed constants' and enumerators' naming convention, updated exampl…
Dove6 Nov 21, 2019
ad00f7c
Added static functions for calculating output string size and compari…
Dove6 Nov 24, 2019
8415254
Got rid of Aidem Media's license agreement translation
Dove6 Nov 24, 2019
4c21e75
Corrected footnotes
Dove6 Nov 24, 2019
156ad22
Implemented AMkd_calculate_size and AMkd_detect_encoding (partially)
Dove6 Nov 28, 2019
971059b
Implemented AMkd_decode, added comparison specification for AMkd_comp…
Dove6 Nov 28, 2019
c06aaf1
Implemented AMkd_encode
Dove6 Nov 29, 2019
d9d12d6
Rename amkd.c to AMkd.c
Dove6 Nov 29, 2019
42929dc
Removed binary executable from project tree
Dove6 Nov 29, 2019
4d07462
Fix bugs, add function for freeing result strings
Dove6 Feb 27, 2020
8fc0a2b
Update docs version and main page
Dove6 Feb 28, 2020
95019ec
Change the way of error handling, update docs
Dove6 Feb 28, 2020
c8b2f99
Add input line ending support, error codes translation, minor fixes
Dove6 Mar 4, 2020
0c0e481
Update docs
Dove6 Mar 4, 2020
135f762
Simplify error handling and encoding configuration
Dove6 Dec 21, 2021
fca18f7
Remove responsibility for line ending detection
Dove6 Dec 21, 2021
f9571d7
Fix minor errors and typos
Dove6 Dec 21, 2021
d509bb7
Add a basic Makefile
Dove6 Dec 29, 2021
32b0359
Bring back AMkd_config naming, add Makefile CFLAGS
Dove6 Dec 29, 2021
d72a629
Refactor `AMkd_calculate_size` function
Dove6 Dec 29, 2021
622c68a
Refactor `AMkd_decode` function
Dove6 Dec 29, 2021
547594a
Refactor `AMkd_encode` function
Dove6 Dec 30, 2021
35d31b3
Replace `AMkd_strip_header` function with `AMkd_parse_header`
Dove6 Dec 30, 2021
f8507a8
Rearrange OOM error handling to reduce nesting
Dove6 Dec 31, 2021
5e2aa66
Introduce `AMKD_ERROR_AMBIGUOUS_OUTPUT` error
Dove6 Jan 1, 2022
9c73787
Remove automatic encoding detection from `AMkd_decode`
Dove6 Jan 1, 2022
a8937db
Remove .cbp files and the redundant example
Dove6 Jan 1, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 12 additions & 35 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,26 +1,14 @@
# Prerequisites
*.d

# Object files
obj
*.o
*.ko
*.obj
*.elf

# Linker output
*.ilk
*.map
*.exp

# Precompiled Headers
*.gch
*.pch

# Libraries
*.lib
*.a
*.la
*.lo

# Shared objects (inc. Windows DLLs)
*.dll
Expand All @@ -29,31 +17,20 @@
*.dylib

# Executables
bin
build
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex

# Debug files
*.dSYM/
*.su
*.idb
*.pdb

# Kernel Module Compile Results
*.mod*
*.cmd
.tmp_versions/
modules.order
Module.symvers
Mkfile.old
dkms.conf

# Code Blocks helper files
*.depend
*.layout

# Windows Registry scripts
*.reg
bin

# Notepad++ backup directory
nppBackup
obj
!bin/Release/AMkd.exe

# backup files
*.bak
46 changes: 0 additions & 46 deletions AMkd.cbp

This file was deleted.

Loading