Skip to content

Commit 1b00051

Browse files
committed
BMO
1 parent f663535 commit 1b00051

File tree

5 files changed

+92
-68
lines changed

5 files changed

+92
-68
lines changed

Cargo.lock

Lines changed: 41 additions & 41 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Changelog.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
- Replaced `pdf-rs` with the more popular `lopdf` library, which also has fewer dependencies - [#1566](https://github.com/qarmin/czkawka/pull/1566)
2525
- Replaced `imagepipe` + `rawloader` with `rawler` which is still supported and faster to decode raw files - [#1572](https://github.com/qarmin/czkawka/pull/1572)
2626
- Added more configuration options in video finder - [#1578](https://github.com/qarmin/czkawka/pull/1578)
27+
- `fast_image_resize` feature is removed and `image_hasher/fast_resize_unstable` is enabled unconditionally - [#1586](https://github.com/qarmin/czkawka/pull/1586)
2728

2829
### CLI
2930
- Improved logic for deleting files and added progress bar for this operation - [#1571](https://github.com/qarmin/czkawka/pull/1571)
@@ -49,7 +50,7 @@
4950
- Progress information is shown when removing, renaming, or moving files, with the ability to stop the process - [#1565](https://github.com/qarmin/czkawka/pull/1565)
5051
- Folders to scan can be now set via cli e.g. `krokiet /home/rafal` - for more info see `krokiet --help` - [#1566](https://github.com/qarmin/czkawka/pull/1566)
5152
- Improved appearance of bottom directories panel - [#1569](https://github.com/qarmin/czkawka/pull/1569)
52-
- Some buttons, are disabled, when there is no files selected - [#]()
53+
- Some buttons, are disabled, when there is no files selected - [#1586](https://github.com/qarmin/czkawka/pull/1586)
5354

5455
### External
5556
- There is a new unofficial Tauri-based frontend for Czkawka - [Czkawka Tauri](https://github.com/shixinhuang99/czkawka-tauri)

misc/generate_md_and_plots.py

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,29 @@
1313

1414
os.makedirs("charts", exist_ok=True)
1515

16+
# Sort and plot Compilation Time
17+
df_sorted = df.sort_values("Compilation Time (seconds)", ascending=False)
1618
plt.figure(figsize=(12, 6))
17-
plt.barh(df["Config"], df["Compilation Time (seconds)"])
19+
plt.barh(df_sorted["Config"], df_sorted["Compilation Time (seconds)"])
1820
plt.xlabel("Compilation Time (seconds)")
1921
plt.title("Compilation Time by Config")
2022
plt.tight_layout()
2123
plt.savefig("charts/complation_time.png")
2224

25+
# Sort and plot Output File Size
26+
df_filtered = df.dropna(subset=["Output File Size (bytes)"])
27+
df_sorted = df_filtered.sort_values("Output File Size (bytes)", ascending=False)
2328
plt.figure(figsize=(12, 6))
24-
plt.barh(df["Config"], df["Output File Size (bytes)"] / (1024**2))
29+
plt.barh(df_sorted["Config"], df_sorted["Output File Size (bytes)"] / (1024**2))
2530
plt.xlabel("Output File Size (MB)")
2631
plt.title("Output File Size by Config")
2732
plt.tight_layout()
2833
plt.savefig("charts/output_file_size.png")
2934

35+
# Sort and plot Target Folder Size
36+
df_sorted = df.sort_values("Target Folder Size (bytes)", ascending=False)
3037
plt.figure(figsize=(12, 6))
31-
plt.barh(df["Config"], df["Target Folder Size (bytes)"] / (1024**3))
38+
plt.barh(df_sorted["Config"], df_sorted["Target Folder Size (bytes)"] / (1024**3))
3239
plt.xlabel("Target Folder Size (GB)")
3340
plt.title("Target Folder Size by Config")
3441
plt.tight_layout()

0 commit comments

Comments
 (0)