1
0
Fork 0
mirror of synced 2024-05-17 19:03:08 +12:00

Release hotfix 5.0.1 version

This commit is contained in:
Rafał Mikrut 2022-08-03 17:13:13 +02:00
parent 7d654a7899
commit ae87489f3b
14 changed files with 60 additions and 59 deletions

6
Cargo.lock generated
View file

@ -465,7 +465,7 @@ dependencies = [
[[package]] [[package]]
name = "czkawka_cli" name = "czkawka_cli"
version = "5.0.0" version = "5.0.1"
dependencies = [ dependencies = [
"clap", "clap",
"czkawka_core", "czkawka_core",
@ -474,7 +474,7 @@ dependencies = [
[[package]] [[package]]
name = "czkawka_core" name = "czkawka_core"
version = "5.0.0" version = "5.0.1"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"audio_checker", "audio_checker",
@ -514,7 +514,7 @@ dependencies = [
[[package]] [[package]]
name = "czkawka_gui" name = "czkawka_gui"
version = "5.0.0" version = "5.0.1"
dependencies = [ dependencies = [
"chrono", "chrono",
"crossbeam-channel", "crossbeam-channel",

View file

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

View file

@ -1,6 +1,6 @@
[package] [package]
name = "czkawka_cli" name = "czkawka_cli"
version = "5.0.0" version = "5.0.1"
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"] authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
edition = "2021" edition = "2021"
rust-version = "1.60" rust-version = "1.60"
@ -17,7 +17,7 @@ image_hasher = "1.0.0"
[dependencies.czkawka_core] [dependencies.czkawka_core]
path = "../czkawka_core" path = "../czkawka_core"
version = "5.0.0" version = "5.0.1"
features = [] features = []
[features] [features]

View file

@ -1,6 +1,6 @@
[package] [package]
name = "czkawka_core" name = "czkawka_core"
version = "5.0.0" version = "5.0.1"
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"] authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
edition = "2021" edition = "2021"
rust-version = "1.60" rust-version = "1.60"

View file

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

View file

@ -1,6 +1,6 @@
[package] [package]
name = "czkawka_gui" name = "czkawka_gui"
version = "5.0.0" version = "5.0.1"
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"] authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
edition = "2021" edition = "2021"
rust-version = "1.60" rust-version = "1.60"
@ -59,7 +59,7 @@ features = ["v4_6"]
[dependencies.czkawka_core] [dependencies.czkawka_core]
path = "../czkawka_core" path = "../czkawka_core"
version = "5.0.0" version = "5.0.1"
features = [] features = []
[features] [features]

View file

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

View file

@ -11,6 +11,6 @@ This program is free to use and will always be.
<property name="license-type">mit-x11</property> <property name="license-type">mit-x11</property>
<property name="logo-icon-name">help-about-symbolic</property> <property name="logo-icon-name">help-about-symbolic</property>
<property name="program-name">Czkawka</property> <property name="program-name">Czkawka</property>
<property name="version">5.0.0</property> <property name="version">5.0.1</property>
</object> </object>
</interface> </interface>

View file

@ -321,7 +321,7 @@
(3,1,"GtkAboutDialog","license-type","mit-x11",None,None,None,None,None), (3,1,"GtkAboutDialog","license-type","mit-x11",None,None,None,None,None),
(3,1,"GtkAboutDialog","logo-icon-name","help-about-symbolic",None,None,None,None,None), (3,1,"GtkAboutDialog","logo-icon-name","help-about-symbolic",None,None,None,None,None),
(3,1,"GtkAboutDialog","program-name","Czkawka",None,None,None,None,None), (3,1,"GtkAboutDialog","program-name","Czkawka",None,None,None,None,None),
(3,1,"GtkAboutDialog","version","5.0.0",None,None,None,None,None), (3,1,"GtkAboutDialog","version","5.0.1",None,None,None,None,None),
(4,2,"GtkOrientable","orientation","vertical",None,None,None,None,None), (4,2,"GtkOrientable","orientation","vertical",None,None,None,None,None),
(4,2,"GtkWidget","vexpand","1",None,None,None,None,None), (4,2,"GtkWidget","vexpand","1",None,None,None,None,None),
(4,4,"GtkLabel","label","Group XD/PER XD (99 images in current group)",1,None,None,None,None), (4,4,"GtkLabel","label","Group XD/PER XD (99 images in current group)",1,None,None,None,None),
@ -660,7 +660,7 @@
(5,177,"GtkWidget","focusable","1",None,None,None,None,None), (5,177,"GtkWidget","focusable","1",None,None,None,None,None),
(5,177,"GtkWidget","hexpand","1",None,None,None,None,None), (5,177,"GtkWidget","hexpand","1",None,None,None,None,None),
(5,178,"GtkEditable","editable","0",None,None,None,None,None), (5,178,"GtkEditable","editable","0",None,None,None,None,None),
(5,178,"GtkEditable","text","Czkawka 5.0.0",1,None,None,None,None), (5,178,"GtkEditable","text","Czkawka 5.0.1",1,None,None,None,None),
(5,178,"GtkEditable","xalign","1",None,None,None,None,None), (5,178,"GtkEditable","xalign","1",None,None,None,None,None),
(5,178,"GtkEntry","has-frame","0",None,None,None,None,None), (5,178,"GtkEntry","has-frame","0",None,None,None,None,None),
(5,178,"GtkWidget","focusable","1",None,None,None,None,None), (5,178,"GtkWidget","focusable","1",None,None,None,None,None),

View file

@ -1081,7 +1081,7 @@
<property name="editable">0</property> <property name="editable">0</property>
<property name="focusable">1</property> <property name="focusable">1</property>
<property name="has-frame">0</property> <property name="has-frame">0</property>
<property name="text" translatable="yes">Czkawka 5.0.0</property> <property name="text" translatable="yes">Czkawka 5.0.1</property>
<property name="xalign">1</property> <property name="xalign">1</property>
</object> </object>
</child> </child>

View file

@ -19,7 +19,7 @@
</screenshot> </screenshot>
</screenshots> </screenshots>
<releases> <releases>
<release version="5.0.0" date="2022-07-28"/> <release version="5.0.1" date="2022-08-03"/>
</releases> </releases>
<content_rating type="oars-1.0"/> <content_rating type="oars-1.0"/>
<developer_name>Rafał Mikrut</developer_name> <developer_name>Rafał Mikrut</developer_name>

View file

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
NUMBER="5.0.0" NUMBER="5.0.1"
CZKAWKA_PATH="/home/rafal" CZKAWKA_PATH="/home/rafal"
cd "$CZKAWKA_PATH" cd "$CZKAWKA_PATH"

View file

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
NUMBER="5.0.0" NUMBER="5.0.1"
CZKAWKA_PATH="/home/rafal" CZKAWKA_PATH="/home/rafal"
cd "$CZKAWKA_PATH" cd "$CZKAWKA_PATH"

View file

@ -1,6 +1,6 @@
name: czkawka # you probably want to 'snapcraft register <name>' name: czkawka # you probably want to 'snapcraft register <name>'
base: core22 # the base snap is the execution environment for this snap base: core22 # the base snap is the execution environment for this snap
version: '5.0.0' # just for humans, typically '1.2+git' or '1.3.2' version: '5.0.1' # just for humans, typically '1.2+git' or '1.3.2'
summary: Czkawka - fast data cleaner written in Rust # 79 char long summary summary: Czkawka - fast data cleaner written in Rust # 79 char long summary
description: | description: |
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. 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.