diff options
-rw-r--r-- | gziplike.nimble (renamed from alagzip.nimble) | 2 | ||||
-rw-r--r-- | readme.md | 2 | ||||
-rw-r--r-- | src/bitreader.nim | 2 | ||||
-rw-r--r-- | src/bitwriter.nim | 2 | ||||
-rw-r--r-- | src/integers.nim | 2 | ||||
-rw-r--r-- | src/lzssblock.nim | 2 | ||||
-rw-r--r-- | src/main.nim | 2 | ||||
-rw-r--r-- | src/rawblock.nim | 2 | ||||
-rw-r--r-- | src/streamblock.nim | 2 | ||||
-rw-r--r-- | tests/tbitreader.nim | 2 | ||||
-rw-r--r-- | tests/tbitwriter.nim | 2 | ||||
-rw-r--r-- | tests/tintegers.nim | 2 | ||||
-rw-r--r-- | tests/trawblock.nim | 2 |
13 files changed, 13 insertions, 13 deletions
diff --git a/alagzip.nimble b/gziplike.nimble index 0db8cf4..b985f7d 100644 --- a/alagzip.nimble +++ b/gziplike.nimble | |||
@@ -2,7 +2,7 @@ | |||
2 | 2 | ||
3 | version = "0.1.0" | 3 | version = "0.1.0" |
4 | author = "pacien" | 4 | author = "pacien" |
5 | description = "a-la-gzip LZSS compressor" | 5 | description = "gzip-like LZSS compressor" |
6 | license = "AGPL-3.0-or-later" | 6 | license = "AGPL-3.0-or-later" |
7 | srcDir = "src" | 7 | srcDir = "src" |
8 | bin = @["main"] | 8 | bin = @["main"] |
@@ -1,4 +1,4 @@ | |||
1 | "À-la-gzip" LZSS compressor | 1 | gzip-like LZSS compressor |
2 | =========================== | 2 | =========================== |
3 | 3 | ||
4 | A toy implementation of a simple gzip-like LZSS text compressor written in Nim. | 4 | A toy implementation of a simple gzip-like LZSS text compressor written in Nim. |
diff --git a/src/bitreader.nim b/src/bitreader.nim index 35e9d57..757c1b3 100644 --- a/src/bitreader.nim +++ b/src/bitreader.nim | |||
@@ -1,4 +1,4 @@ | |||
1 | # "à-la-gzip" gzip-like LZSS compressor | 1 | # gzip-like LZSS compressor |
2 | # Copyright (C) 2018 Pacien TRAN-GIRARD | 2 | # Copyright (C) 2018 Pacien TRAN-GIRARD |
3 | # | 3 | # |
4 | # This program is free software: you can redistribute it and/or modify | 4 | # This program is free software: you can redistribute it and/or modify |
diff --git a/src/bitwriter.nim b/src/bitwriter.nim index aac96f9..4fe499a 100644 --- a/src/bitwriter.nim +++ b/src/bitwriter.nim | |||
@@ -1,4 +1,4 @@ | |||
1 | # "à-la-gzip" gzip-like LZSS compressor | 1 | # gzip-like LZSS compressor |
2 | # Copyright (C) 2018 Pacien TRAN-GIRARD | 2 | # Copyright (C) 2018 Pacien TRAN-GIRARD |
3 | # | 3 | # |
4 | # This program is free software: you can redistribute it and/or modify | 4 | # This program is free software: you can redistribute it and/or modify |
diff --git a/src/integers.nim b/src/integers.nim index 1f83488..fddbfdc 100644 --- a/src/integers.nim +++ b/src/integers.nim | |||
@@ -1,4 +1,4 @@ | |||
1 | # "à-la-gzip" gzip-like LZSS compressor | 1 | # gzip-like LZSS compressor |
2 | # Copyright (C) 2018 Pacien TRAN-GIRARD | 2 | # Copyright (C) 2018 Pacien TRAN-GIRARD |
3 | # | 3 | # |
4 | # This program is free software: you can redistribute it and/or modify | 4 | # This program is free software: you can redistribute it and/or modify |
diff --git a/src/lzssblock.nim b/src/lzssblock.nim index 959ad09..be8c4f0 100644 --- a/src/lzssblock.nim +++ b/src/lzssblock.nim | |||
@@ -1,4 +1,4 @@ | |||
1 | # "à-la-gzip" gzip-like LZSS compressor | 1 | # gzip-like LZSS compressor |
2 | # Copyright (C) 2018 Pacien TRAN-GIRARD | 2 | # Copyright (C) 2018 Pacien TRAN-GIRARD |
3 | # | 3 | # |
4 | # This program is free software: you can redistribute it and/or modify | 4 | # This program is free software: you can redistribute it and/or modify |
diff --git a/src/main.nim b/src/main.nim index a72e0c3..dbf331f 100644 --- a/src/main.nim +++ b/src/main.nim | |||
@@ -1,4 +1,4 @@ | |||
1 | # "à-la-gzip" gzip-like LZSS compressor | 1 | # gzip-like LZSS compressor |
2 | # Copyright (C) 2018 Pacien TRAN-GIRARD | 2 | # Copyright (C) 2018 Pacien TRAN-GIRARD |
3 | # | 3 | # |
4 | # This program is free software: you can redistribute it and/or modify | 4 | # This program is free software: you can redistribute it and/or modify |
diff --git a/src/rawblock.nim b/src/rawblock.nim index aa3e7ae..e45c83f 100644 --- a/src/rawblock.nim +++ b/src/rawblock.nim | |||
@@ -1,4 +1,4 @@ | |||
1 | # "à-la-gzip" gzip-like LZSS compressor | 1 | # gzip-like LZSS compressor |
2 | # Copyright (C) 2018 Pacien TRAN-GIRARD | 2 | # Copyright (C) 2018 Pacien TRAN-GIRARD |
3 | # | 3 | # |
4 | # This program is free software: you can redistribute it and/or modify | 4 | # This program is free software: you can redistribute it and/or modify |
diff --git a/src/streamblock.nim b/src/streamblock.nim index eef916f..10639ed 100644 --- a/src/streamblock.nim +++ b/src/streamblock.nim | |||
@@ -1,4 +1,4 @@ | |||
1 | # "à-la-gzip" gzip-like LZSS compressor | 1 | # gzip-like LZSS compressor |
2 | # Copyright (C) 2018 Pacien TRAN-GIRARD | 2 | # Copyright (C) 2018 Pacien TRAN-GIRARD |
3 | # | 3 | # |
4 | # This program is free software: you can redistribute it and/or modify | 4 | # This program is free software: you can redistribute it and/or modify |
diff --git a/tests/tbitreader.nim b/tests/tbitreader.nim index 6b3be2b..8285f63 100644 --- a/tests/tbitreader.nim +++ b/tests/tbitreader.nim | |||
@@ -1,4 +1,4 @@ | |||
1 | # "à-la-gzip" gzip-like LZSS compressor | 1 | # gzip-like LZSS compressor |
2 | # Copyright (C) 2018 Pacien TRAN-GIRARD | 2 | # Copyright (C) 2018 Pacien TRAN-GIRARD |
3 | # | 3 | # |
4 | # This program is free software: you can redistribute it and/or modify | 4 | # This program is free software: you can redistribute it and/or modify |
diff --git a/tests/tbitwriter.nim b/tests/tbitwriter.nim index cc7fdc5..2c570af 100644 --- a/tests/tbitwriter.nim +++ b/tests/tbitwriter.nim | |||
@@ -1,4 +1,4 @@ | |||
1 | # "à-la-gzip" gzip-like LZSS compressor | 1 | # gzip-like LZSS compressor |
2 | # Copyright (C) 2018 Pacien TRAN-GIRARD | 2 | # Copyright (C) 2018 Pacien TRAN-GIRARD |
3 | # | 3 | # |
4 | # This program is free software: you can redistribute it and/or modify | 4 | # This program is free software: you can redistribute it and/or modify |
diff --git a/tests/tintegers.nim b/tests/tintegers.nim index de43c09..c77abec 100644 --- a/tests/tintegers.nim +++ b/tests/tintegers.nim | |||
@@ -1,4 +1,4 @@ | |||
1 | # "à-la-gzip" gzip-like LZSS compressor | 1 | # gzip-like LZSS compressor |
2 | # Copyright (C) 2018 Pacien TRAN-GIRARD | 2 | # Copyright (C) 2018 Pacien TRAN-GIRARD |
3 | # | 3 | # |
4 | # This program is free software: you can redistribute it and/or modify | 4 | # This program is free software: you can redistribute it and/or modify |
diff --git a/tests/trawblock.nim b/tests/trawblock.nim index e789b4b..2544199 100644 --- a/tests/trawblock.nim +++ b/tests/trawblock.nim | |||
@@ -1,4 +1,4 @@ | |||
1 | # "à-la-gzip" gzip-like LZSS compressor | 1 | # gzip-like LZSS compressor |
2 | # Copyright (C) 2018 Pacien TRAN-GIRARD | 2 | # Copyright (C) 2018 Pacien TRAN-GIRARD |
3 | # | 3 | # |
4 | # This program is free software: you can redistribute it and/or modify | 4 | # This program is free software: you can redistribute it and/or modify |