Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
9 changes: 9 additions & 0 deletions data/dev.geopjr.Collision.metainfo.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,15 @@
<color type="primary" scheme_preference="dark">#26a269</color>
</branding>
<releases>
<release version="3.14.0" date="2026-02-07">
<description translate="no">
<ul>
<li>Added the ability to export the results as a markdown table</li>
<li>Added the ability to disable hash functions</li>
<li>Updated translations</li>
</ul>
</description>
</release>
<release version="3.13.0" date="2026-01-19">
<description translate="no">
<ul>
Expand Down
2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: collision
version: 3.13.0
version: 3.14.0

authors:
- GeopJr <evan@geopjr.dev>
Expand Down
2 changes: 1 addition & 1 deletion src/collision/window.cr
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ module Collision
# IF the file is smaller than the size below.
# We want to avoid loading a huge file in
# memory but also avoid false-positives.
MAX_COMPARE_READ_SIZE = 10000 # in bytes
MAX_COMPARE_READ_SIZE = 1000 # in bytes

def comparefile=(file : Gio::File)
Collision::LOGGER.debug { "Begin comparing tool" }
Expand Down