Compare commits

...

9 Commits

Author SHA1 Message Date
Piyush मिश्रः b66770620d Update README.md 2024-12-07 18:31:55 +05:30
Piyush मिश्रः 54466c1216
Merge pull request #7 from PiyushXCoder/revert-1-add/dependabot
Revert "add ci and dependabot"
2024-10-06 18:50:04 +05:30
Piyush मिश्र e0b686d66e
Revert "add ci and dependabot" 2024-10-06 18:48:47 +05:30
Piyush मिश्रः 80824ed3d8
Merge pull request #1 from theavege/add/dependabot
add ci and dependabot
2024-10-06 15:24:39 +05:30
Artem V. Ageev e1ed10805c small fix 2024-10-06 12:48:03 +03:00
Artem V. Ageev 8447939489 add ci and dependabot 2024-10-05 18:09:54 +03:00
Piyush मिश्रः aca3a0ec2d Readme shields 2022-08-19 15:03:13 +05:30
Piyush मिश्रः 9b6412b823 Version upgrade 0.6.3 2022-08-19 14:21:53 +05:30
Piyush मिश्रः 286af71348 Tags in Readme and license in files 2022-08-19 14:18:41 +05:30
6 changed files with 50 additions and 3 deletions

2
Cargo.lock generated
View File

@ -905,7 +905,7 @@ dependencies = [
[[package]] [[package]]
name = "post_maker" name = "post_maker"
version = "0.6.2" version = "0.6.3"
dependencies = [ dependencies = [
"bichannel", "bichannel",
"clap", "clap",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "post_maker" name = "post_maker"
version = "0.6.2" version = "0.6.3"
edition = "2021" edition = "2021"
description = "Post Maker helps you to make post for instagram and other social media apps easily and in massive amount. " 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>"] authors = ["PiyushXCoder <https://piyushxcoder.in>"]

View File

@ -4,6 +4,9 @@
<img alt="actix-web-grants" src="./assets/icon_with_text.svg" width="170"> <img alt="actix-web-grants" src="./assets/icon_with_text.svg" width="170">
</p> </p>
[![Crates.io](https://img.shields.io/crates/v/post_maker?color=%23069060&style=for-the-badge)](https://crates.io/crates/post_maker)
[![Crates.io](https://img.shields.io/crates/l/post_maker?style=for-the-badge)](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. > Post Maker helps you to make post for instagram and other social media apps easily and in massive amount.
## Installing ## Installing
@ -43,6 +46,9 @@ You can follow rust's official guide to install rust compiler and cargo [here](h
![](assets/Screenshot_2022-08-19_13-48-49.png) ![](assets/Screenshot_2022-08-19_13-48-49.png)
## Achievement
The Post Maker is listed in [Official Project Showcase of fltk-rs](https://github.com/fltk-rs/fltk-rs/issues/418)
## License ## License
This project is under [GPLv3](LICENSE) This project is under [GPLv3](LICENSE)

View File

@ -1,3 +1,17 @@
/*
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}; pub(crate) use fltk::dialog::{color_chooser_with_default, ColorMode};
use fltk::{app::get_mouse, dialog}; use fltk::{app::get_mouse, dialog};

View File

@ -1,3 +1,17 @@
/*
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_export]
macro_rules! rw_read { macro_rules! rw_read {
($var:expr) => { ($var:expr) => {

View File

@ -1,6 +1,19 @@
use std::{fmt::Debug, panic::Location}; /*
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 crate::utils; use crate::utils;
use std::{fmt::Debug, panic::Location};
pub trait ResultExt<T, E> { pub trait ResultExt<T, E> {
fn expect_log(self, msg: &str) -> T; fn expect_log(self, msg: &str) -> T;