Updated readme. - icy_draw - icy_draw is the successor to mystic draw. fork / mirror
HTML git clone https://git.drkhsh.at/icy_draw.git
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 85f960073b00e1004d0b94254a4f4cec922951fa
DIR parent 9361d939bdd89a379b2a2d593198d2818c3a831d
HTML Author: Mike Krüger <mkrueger@posteo.de>
Date: Sun, 10 Sep 2023 20:01:15 +0200
Updated readme.
Diffstat:
M README.md | 6 +++++-
M src/ui/document_docking.rs | 6 +-----
M src/util/autosave.rs | 2 +-
3 files changed, 7 insertions(+), 7 deletions(-)
---
DIR diff --git a/README.md b/README.md
@@ -38,10 +38,14 @@ Note that fonts/palettes etc. do not need to be unzipped. Just throw a .zip file
# What it can't yet do, but potentially will be implemented
+Likeley to be implemented by me:
* Full Unicode support
* Non rectangular selections (select by color/char etc., select ellipse)
-* Server capabilities
+Unlikely to be done soon:
+* Server capabilities
+* PETSCII, ATSCII and Viewdata - the engine can do it (see icy_term)
+
# Help
Contributions are welcome. But also testing & bug reporting or feature requests.
DIR diff --git a/src/ui/document_docking.rs b/src/ui/document_docking.rs
@@ -3,11 +3,7 @@ use std::{
sync::{Arc, Mutex},
};
-use crate::{
- model::Tool,
- util::autosave::store_auto_save,
- Document, DocumentOptions, Message,
-};
+use crate::{model::Tool, util::autosave::store_auto_save, Document, DocumentOptions, Message};
use eframe::egui::{self, Response};
use egui_tiles::{TileId, Tiles};
DIR diff --git a/src/util/autosave.rs b/src/util/autosave.rs
@@ -14,7 +14,7 @@ pub fn get_autosave_file(path: &Path) -> PathBuf {
// let mut sha256hasher = Sha256Hasher::default();
// sha256hasher.write(path.as_os_str().to_str().unwrap().as_bytes());
// let u64result = sha256hasher.finish();
-
+
// crc32 should be enough -if not the alternative rs_sha256 is available
let key = get_crc32(path.as_os_str().to_str().unwrap().as_bytes());
auto_save_directory.join(path::Path::new(format!("{:x}.sav", key).as_str()))