parent
c6763fca4b
commit
658eba6f96
|
|
@ -905,7 +905,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "post_maker"
|
name = "post_maker"
|
||||||
version = "0.6.0-alpha.2"
|
version = "0.6.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bichannel",
|
"bichannel",
|
||||||
"clap",
|
"clap",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "post_maker"
|
name = "post_maker"
|
||||||
version = "0.6.0-alpha.2"
|
version = "0.6.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Post Maker helps you to make post for Instagram and other Social Media apps easily."
|
description = "Post Maker helps you to make post for Instagram and other Social Media apps easily."
|
||||||
authors = ["PiyushXCoder <https://piyushxcoder.in>"]
|
authors = ["PiyushXCoder <https://piyushxcoder.in>"]
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,7 @@ You can follow rust's official guide to install rust compiler and cargo [here](h
|
||||||
|
|
||||||
## General Overview of Controls
|
## General Overview of Controls
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 887 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 42 KiB |
|
|
@ -97,6 +97,7 @@ fn main() {
|
||||||
dialog::message_default(&msg);
|
dialog::message_default(&msg);
|
||||||
std::process::exit(1);
|
std::process::exit(1);
|
||||||
}
|
}
|
||||||
|
// Fltk does not show dialogs from other thread in windows, So this is hack to get things done
|
||||||
AppMessage::DeleteImage => {
|
AppMessage::DeleteImage => {
|
||||||
let ch = dialog::choice_default("Image is too small", "Delete", "Keep");
|
let ch = dialog::choice_default("Image is too small", "Delete", "Keep");
|
||||||
if ch == 0 {
|
if ch == 0 {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue