Compare commits
No commits in common. "master" and "0.6.2" have entirely different histories.
|
|
@ -905,7 +905,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "post_maker"
|
||||
version = "0.6.3"
|
||||
version = "0.6.2"
|
||||
dependencies = [
|
||||
"bichannel",
|
||||
"clap",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "post_maker"
|
||||
version = "0.6.3"
|
||||
version = "0.6.2"
|
||||
edition = "2021"
|
||||
description = "Post Maker helps you to make post for instagram and other social media apps easily and in massive amount. "
|
||||
authors = ["PiyushXCoder <https://piyushxcoder.in>"]
|
||||
|
|
|
|||
|
|
@ -4,9 +4,6 @@
|
|||
<img alt="actix-web-grants" src="./assets/icon_with_text.svg" width="170">
|
||||
</p>
|
||||
|
||||
[](https://crates.io/crates/post_maker)
|
||||
[](https://spdx.org/licenses/GPL-3.0-only.html)
|
||||
|
||||
> Post Maker helps you to make post for instagram and other social media apps easily and in massive amount.
|
||||
|
||||
## Installing
|
||||
|
|
@ -46,9 +43,6 @@ You can follow rust's official guide to install rust compiler and cargo [here](h
|
|||
|
||||

|
||||
|
||||
## Achievement
|
||||
The Post Maker is listed in [Official Project Showcase of fltk-rs](https://github.com/fltk-rs/fltk-rs/issues/418)
|
||||
|
||||
## License
|
||||
|
||||
This project is under [GPLv3](LICENSE)
|
||||
|
|
|
|||
|
|
@ -1,17 +1,3 @@
|
|||
/*
|
||||
This file is part of Post Maker.
|
||||
Post Maker is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
Post Maker is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with Post Maker. If not, see <https://www.gnu.org/licenses/>
|
||||
*/
|
||||
|
||||
pub(crate) use fltk::dialog::{color_chooser_with_default, ColorMode};
|
||||
use fltk::{app::get_mouse, dialog};
|
||||
|
||||
|
|
|
|||
|
|
@ -1,17 +1,3 @@
|
|||
/*
|
||||
This file is part of Post Maker.
|
||||
Post Maker is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
Post Maker is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with Post Maker. If not, see <https://www.gnu.org/licenses/>
|
||||
*/
|
||||
|
||||
#[macro_export]
|
||||
macro_rules! rw_read {
|
||||
($var:expr) => {
|
||||
|
|
|
|||
|
|
@ -1,19 +1,6 @@
|
|||
/*
|
||||
This file is part of Post Maker.
|
||||
Post Maker is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
Post Maker is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with Post Maker. If not, see <https://www.gnu.org/licenses/>
|
||||
*/
|
||||
use std::{fmt::Debug, panic::Location};
|
||||
|
||||
use crate::utils;
|
||||
use std::{fmt::Debug, panic::Location};
|
||||
|
||||
pub trait ResultExt<T, E> {
|
||||
fn expect_log(self, msg: &str) -> T;
|
||||
|
|
|
|||
Loading…
Reference in New Issue