Skip to content

Commit ae87489

Browse files
committed
Release hotfix 5.0.1 version
1 parent 7d654a7 commit ae87489

14 files changed

+60
-59
lines changed

Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Changelog.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
## Version 5.0.1 - .08.2022r
2-
- Fixed problem with removing ending slash with empty disk window path
3-
- Added to CLI bad extensions mode
4-
- Fixed default sorting method in CLI where finding biggest files
5-
- Added tests to CI
6-
- Show error message when all directories are set as reference folders
1+
## Version 5.0.1 - 03.08.2022r
2+
- Fixed problem with removing ending slash with empty disk window path - [975](https://github.com/qarmin/czkawka/commit/97563a7b2a70fb5fcf6463f28069e6ea3b0ff5c2)
3+
- Added to CLI bad extensions mode - [#795](https://github.com/qarmin/czkawka/pull/795)
4+
- Restore default sorting method in CLI where finding biggest files - [5d7](https://github.com/qarmin/czkawka/commit/5d79dc7ccfee6d5426e37c4e6a860fa555c5927a)
5+
- Added tests to CI - [#791](https://github.com/qarmin/czkawka/pull/791)
6+
- Show error message when all directories are set as reference folders - [#795](https://github.com/qarmin/czkawka/pull/795)
7+
- Added more info about new requirements on Linux - [#795](https://github.com/qarmin/czkawka/pull/795)
78

89
## Version 5.0.0 - 28.07.2022r
910
- GUI ported to use GTK 4 - [#466](https://github.com/qarmin/czkawka/pull/466)

czkawka_cli/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "czkawka_cli"
3-
version = "5.0.0"
3+
version = "5.0.1"
44
authors = ["Rafał Mikrut <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.60"
@@ -17,7 +17,7 @@ image_hasher = "1.0.0"
1717

1818
[dependencies.czkawka_core]
1919
path = "../czkawka_core"
20-
version = "5.0.0"
20+
version = "5.0.1"
2121
features = []
2222

2323
[features]

czkawka_core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "czkawka_core"
3-
version = "5.0.0"
3+
version = "5.0.1"
44
authors = ["Rafał Mikrut <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.60"

czkawka_core/i18n/ko/czkawka_core.ftl

+29-29
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
# Core
2-
core_similarity_original = 원래대로
3-
core_similarity_very_high = 매우 높음
4-
core_similarity_high = 높음
5-
core_similarity_medium = 중간 서체
6-
core_similarity_small = 작은 모양
7-
core_similarity_very_small = 매우 작음
8-
core_similarity_minimal = 최소
9-
core_cannot_open_dir = Cannot open dir { $dir }, reason { $reason }
10-
core_cannot_read_entry_dir = Cannot read entry in dir { $dir }, reason { $reason }
11-
core_cannot_read_metadata_dir = Cannot read metadata in dir { $dir }, reason { $reason }
12-
core_file_not_utf8_name = File { $name } does not have a valid UTF-8 name (some characters may not be shown)
13-
core_file_modified_before_epoch = File { $name } seems to be modified before Unix Epoch
14-
core_folder_modified_before_epoch = Folder { $name } seems to be modified before Unix Epoch
15-
core_file_no_modification_date = Unable to get modification date from file { $name }, reason { $reason }
16-
core_folder_no_modification_date = Unable to get modification date from folder { $name }, reason { $reason }
17-
core_missing_no_chosen_included_directory = At least one directory must be provided
18-
core_directory_wildcard_no_supported = Directories: Wildcards in path are not supported, ignoring { $path }
19-
core_directory_relative_path = Directories: Relative path are not supported, ignoring { $path }
20-
core_directory_must_exists = Directories: Provided folder path must exist, ignoring { $path }
21-
core_directory_must_be_directory = Directories: Provided path must point at the directory, ignoring { $path }
22-
core_included_directory_zero_valid_directories = Included Directory ERROR: Not found even one correct path to included which is required
23-
core_excluded_directory_pointless_slash = Directories: Excluding / is pointless, because it means that no files will be scanned
24-
core_directory_overlap = Directories: All directories to search overlaps with excluded directories
25-
core_directory_unable_to_get_device_id = Directories: Unable to get device id from folder { $path }
26-
core_ffmpeg_not_found = Cannot find proper installation of FFmpeg
27-
core_ffmpeg_not_found_windows = Be sure that ffmpeg.exe and ffprobe.exe are available in PATH or are put directly to same folder where is app executable
28-
core_ffmpeg_missing_in_snap = Similar Videos don't work currently with snap, if you want help look at - { $url }
29-
core_saving_to_cache = Saved to file { $number } cache entries
30-
core_loading_from_cache = Loaded from cache { $number } entries
2+
core_similarity_original = 원본
3+
core_similarity_very_high = 유사도 매우 높음
4+
core_similarity_high = 유사도 높음
5+
core_similarity_medium = 유사도 보통
6+
core_similarity_small = 유사도 적음
7+
core_similarity_very_small = 유사도 매우 적음
8+
core_similarity_minimal = 유사도 거의 없음
9+
core_cannot_open_dir = { $dir } 디렉터리를 열 수 없습니다. 이유: { $reason }
10+
core_cannot_read_entry_dir = { $dir } 디렉터리를 열 수 없습니다. 이유: { $reason }
11+
core_cannot_read_metadata_dir = { $dir } 디렉터리의 메타데이터를 열 수 없습니다. 이유: { $reason }
12+
core_file_not_utf8_name = 파일 이름 "{ $name }"은 유효한 UTF-8 이름이 아닙니다. 일부 글자가 보이지 않을 수 있습니다.
13+
core_file_modified_before_epoch = { $name } 파일이 Unix 시간 이전에 수정된 것 같습니다.
14+
core_folder_modified_before_epoch = { $name } 폴더가 Unix 시간 이전에 수정된 것 같습니다.
15+
core_file_no_modification_date = { $name } 파일의 수정된 시각을 읽을 수 없습니다. 이유: { $reason }
16+
core_folder_no_modification_date = { $name } 폴더의 수정된 시각을 읽을 수 없습니다. 이유: { $reason }
17+
core_missing_no_chosen_included_directory = 적어도 1개 이상의 디렉터리가 주어져야 합니다.
18+
core_directory_wildcard_no_supported = 디렉터리: 경로에는 와일드 카드가 지원되지 않습니다. "{ $path }"는 무시됩니다.
19+
core_directory_relative_path = 디렉터리: 경로에는 상대 경로가 지원되지 않습니다. "{ $path }"는 무시됩니다.
20+
core_directory_must_exists = 디렉터리: 주어진 폴더 경로는 반드시 존재해야 합니다. "{ $path }"는 무시됩니다.
21+
core_directory_must_be_directory = 디렉터리: 주어진 경로는 디렉터리를 가리켜야 합니다. "{ $path }"는 무시됩니다.
22+
core_included_directory_zero_valid_directories = 검색 대상 디렉터리 오류: 적어도 1개 이상의 유효한 경로가 주어져야 합니다. 유효한 경로가 하나도 없습니다.
23+
core_excluded_directory_pointless_slash = 디렉터리: "/"를 제외하는 것은 아무런 파일도 스캔하지 않는다는 것이므로, 의미가 없습니다.
24+
core_directory_overlap = 디렉터리: 모든 주어진 경로가 검색 제외 경로와 겹칩니다.
25+
core_directory_unable_to_get_device_id = 디렉터리: { $path }의 장치 ID를 가져올 수 없습니다.
26+
core_ffmpeg_not_found = 유효한 FFmpeg 설치를 발견하지 못했습니다.
27+
core_ffmpeg_not_found_windows = ffmpeg.exe와 ffprobe.exe가 시스템 변수 PATH에서 사용 가능하거나, 이 프로그램의 경로와 같은 곳에 위치하는지 확인하세요.
28+
core_ffmpeg_missing_in_snap = 현재 ffmpeg snap에서는 유사한 영상 검색이 지원되지 않습니다. 더 많은 정보는 { $url }에서 확인하세요.
29+
core_saving_to_cache = { $number }개의 파일을 캐시에 저장했습니다.
30+
core_loading_from_cache = { $number }개의 파일을 캐시에서 불러왔습니다.

czkawka_gui/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "czkawka_gui"
3-
version = "5.0.0"
3+
version = "5.0.1"
44
authors = ["Rafał Mikrut <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.60"
@@ -59,7 +59,7 @@ features = ["v4_6"]
5959

6060
[dependencies.czkawka_core]
6161
path = "../czkawka_core"
62-
version = "5.0.0"
62+
version = "5.0.1"
6363
features = []
6464

6565
[features]

czkawka_gui/i18n/ko/czkawka_gui.ftl

+8-8
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ compute_found_images = 총 { $number_groups }개의 그룹, { $number_files }개
360360
compute_found_videos = { $number_groups }개의 그룹, { $number_files }개의 유사한 영상을 찾음.
361361
compute_found_music = { $number_groups }개의 그룹, { $number_files }개의 유사한 음악 파일을 찾음.
362362
compute_found_invalid_symlinks = { $number_files } 개의 유효하지 않은 심볼릭 링크를 찾음.
363-
compute_found_broken_files = Found { $number_files } broken files
363+
compute_found_broken_files = { $number_files }개의 손상된 파일을 찾음.
364364
compute_found_bad_extensions = { $number_files }개의 잘못된 확장자를 가진 파일을 찾음.
365365
# Progress window
366366
progress_scanning_general_file = { $file_number }개의 파일 스캔 중
@@ -389,23 +389,23 @@ saving_loading_invalid_bool = 키 "{ $key }"의 값이 올바르지 않습니다
389389
saving_loading_decode_problem_bool = 키 "{ $key }"의 값을 bool로 해석할 수 없습니다. 허용된 값은 0, 1, true, false 중 하나이지만 실제 값이 "{ $result }"입니다.
390390
saving_loading_saving_same_keys = 키 "{ $key }"가 중복되어 있습니다.
391391
saving_loading_failed_to_get_home_directory = 설정 파일을 저장 또는 불러오기 위한 홈 디렉터리를 찾을 수 없습니다.saving_loading_folder_config_instead_file = "{ $path }"에 있는 설정 파일을 열거나 설정 파일을 생성할 수 없습니다. 파일과 같은 이름의 폴더가 존재합니다.
392-
saving_loading_folder_config_instead_file = Cannot create or open save configuration file in path "{ $path }" because already there is a folder.
392+
saving_loading_folder_config_instead_file = "{ $path }"에 설정 파일을 만들거나 열 수 없습니다. 이미 같은 이름의 폴더가 존재합니다.
393393
saving_loading_failed_to_create_configuration_folder = 설정 폴더를 "{ $path }"에 생성할 수 없습니다. 이유: "{ $reason }".
394394
saving_loading_failed_to_create_config_file = "{ $path }" 파일에 설정을 저장할 수 없습니다. 이유: "{ $reason }".
395395
saving_loading_failed_to_read_config_file = "{ $path }" 파일에서 설정을 불러올 수 없습니다. 파일이 없거나, 파일이 아닙니다.
396396
saving_loading_failed_to_read_data_from_file = "{ $path }" 파일을 읽을 수 없습니다. 이유: "{ $reason }".
397-
saving_loading_orphan_data = Found orphan data "{ $data }" in line "{ $line }".
397+
saving_loading_orphan_data = { $line }번 행에 고아 데이터 "{ $data }"가 있습니다.
398398
saving_loading_not_valid = 설정 "{ $data }"은 현재 프로그램 버전에 존재하지 않습니다.
399399
# Invalid symlinks
400400
invalid_symlink_infinite_recursion = 무한 재귀
401401
invalid_symlink_non_existent_destination = 목표 파일이 없음
402402
# Other
403-
selected_all_reference_folders = Cannot start search, when all directories are set as reference folders
403+
selected_all_reference_folders = 모든 디렉터리가 기준 폴더이므로, 검색을 시작할 수 없습니다.
404404
searching_for_data = 검색 중. 잠시만 기다려주세요...
405-
text_view_messages = 메시지
406-
text_view_warnings = 경보
407-
text_view_errors = ERRORS
408-
about_window_motto = 이 프로그램은 무료이며, 항상 그럴 것이다.
405+
text_view_messages = 알림
406+
text_view_warnings = 경고
407+
text_view_errors = 오류
408+
about_window_motto = 이 프로그램은 무료이며, 앞으로도 항상 그럴 것이다.
409409
# Various dialog
410410
dialogs_ask_next_time = 다음에도 묻기
411411
delete_file_failed = { $name } 파일 삭제 실패. 이유: { $reason }

czkawka_gui/ui/about_dialog.ui

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ This program is free to use and will always be.
1111
<property name="license-type">mit-x11</property>
1212
<property name="logo-icon-name">help-about-symbolic</property>
1313
<property name="program-name">Czkawka</property>
14-
<property name="version">5.0.0</property>
14+
<property name="version">5.0.1</property>
1515
</object>
1616
</interface>

czkawka_gui/ui/czkawka.cmb

+2-2
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@
321321
(3,1,"GtkAboutDialog","license-type","mit-x11",None,None,None,None,None),
322322
(3,1,"GtkAboutDialog","logo-icon-name","help-about-symbolic",None,None,None,None,None),
323323
(3,1,"GtkAboutDialog","program-name","Czkawka",None,None,None,None,None),
324-
(3,1,"GtkAboutDialog","version","5.0.0",None,None,None,None,None),
324+
(3,1,"GtkAboutDialog","version","5.0.1",None,None,None,None,None),
325325
(4,2,"GtkOrientable","orientation","vertical",None,None,None,None,None),
326326
(4,2,"GtkWidget","vexpand","1",None,None,None,None,None),
327327
(4,4,"GtkLabel","label","Group XD/PER XD (99 images in current group)",1,None,None,None,None),
@@ -660,7 +660,7 @@
660660
(5,177,"GtkWidget","focusable","1",None,None,None,None,None),
661661
(5,177,"GtkWidget","hexpand","1",None,None,None,None,None),
662662
(5,178,"GtkEditable","editable","0",None,None,None,None,None),
663-
(5,178,"GtkEditable","text","Czkawka 5.0.0",1,None,None,None,None),
663+
(5,178,"GtkEditable","text","Czkawka 5.0.1",1,None,None,None,None),
664664
(5,178,"GtkEditable","xalign","1",None,None,None,None,None),
665665
(5,178,"GtkEntry","has-frame","0",None,None,None,None,None),
666666
(5,178,"GtkWidget","focusable","1",None,None,None,None,None),

czkawka_gui/ui/main_window.ui

+1-1
Original file line numberDiff line numberDiff line change
@@ -1081,7 +1081,7 @@
10811081
<property name="editable">0</property>
10821082
<property name="focusable">1</property>
10831083
<property name="has-frame">0</property>
1084-
<property name="text" translatable="yes">Czkawka 5.0.0</property>
1084+
<property name="text" translatable="yes">Czkawka 5.0.1</property>
10851085
<property name="xalign">1</property>
10861086
</object>
10871087
</child>

data/com.github.qarmin.czkawka.metainfo.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
</screenshot>
2020
</screenshots>
2121
<releases>
22-
<release version="5.0.0" date="2022-07-28"/>
22+
<release version="5.0.1" date="2022-08-03"/>
2323
</releases>
2424
<content_rating type="oars-1.0"/>
2525
<developer_name>Rafał Mikrut</developer_name>

misc/cargo/PublishCore.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
NUMBER="5.0.0"
2+
NUMBER="5.0.1"
33
CZKAWKA_PATH="/home/rafal"
44

55
cd "$CZKAWKA_PATH"

misc/cargo/PublishOther.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
NUMBER="5.0.0"
2+
NUMBER="5.0.1"
33
CZKAWKA_PATH="/home/rafal"
44

55
cd "$CZKAWKA_PATH"

snap/snapcraft.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: czkawka # you probably want to 'snapcraft register <name>'
22
base: core22 # the base snap is the execution environment for this snap
3-
version: '5.0.0' # just for humans, typically '1.2+git' or '1.3.2'
3+
version: '5.0.1' # just for humans, typically '1.2+git' or '1.3.2'
44
summary: Czkawka - fast data cleaner written in Rust # 79 char long summary
55
description: |
66
Czkawka is very fast and feature rich cleaner which finds file duplicates, empty folders and files, duplicated music, similar images or the biggest files in selected directories.

0 commit comments

Comments
 (0)