diff --git a/gulagcleaner_python/Cargo.toml b/gulagcleaner_python/Cargo.toml index b580f7b..6ef241c 100644 --- a/gulagcleaner_python/Cargo.toml +++ b/gulagcleaner_python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gulagcleaner_python" -version = "0.13.0" +version = "0.14.0" edition = "2021" authors = ["YM162 "] description = "Ad removal tool for PDFs." diff --git a/gulagcleaner_python/pyproject.toml b/gulagcleaner_python/pyproject.toml index 6283e07..b4f59eb 100644 --- a/gulagcleaner_python/pyproject.toml +++ b/gulagcleaner_python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "gulagcleaner" -version = "0.13.0" +version = "0.14.0" description = "Ad removal tool for PDFs." authors = [ {name = "YM162", email = "david.fontaneda@YM162.dev"}] diff --git a/gulagcleaner_python/python/gulagcleaner/command_line.py b/gulagcleaner_python/python/gulagcleaner/command_line.py index 597cc26..706d866 100644 --- a/gulagcleaner_python/python/gulagcleaner/command_line.py +++ b/gulagcleaner_python/python/gulagcleaner/command_line.py @@ -61,7 +61,7 @@ def main(): # Check for the -v argument if arguments["version"]: - print("Current version: 0.13.0") + print("Current version: 0.14.0") return # Get the pdf_path argument diff --git a/gulagcleaner_rs/Cargo.toml b/gulagcleaner_rs/Cargo.toml index dcfbced..1a85bd8 100644 --- a/gulagcleaner_rs/Cargo.toml +++ b/gulagcleaner_rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gulagcleaner_rs" -version = "0.13.0" +version = "0.14.0" edition = "2021" authors = ["YM162 "] description = "Ad removal tool for PDFs." diff --git a/gulagcleaner_rs/src/clean.rs b/gulagcleaner_rs/src/clean.rs index 87fe475..0602c49 100644 --- a/gulagcleaner_rs/src/clean.rs +++ b/gulagcleaner_rs/src/clean.rs @@ -21,8 +21,6 @@ pub trait Cleaner { /// /// The method code indicates the cleaning method used: 0 for "Wuolah", 1 for "StuDocu", and 2 for "Naive". pub fn clean_pdf(data: Vec, force_naive: bool) -> (Vec, u8) { - //WARNING: FOR THIS RELASE (0.12.0) THE WUOLAH METHOD IS BROKEN. - //I´m working on fixing it, but for now it will be disabled. //Load the PDF into a Document let mut doc = Document::load_mem(&data).unwrap(); diff --git a/gulagcleaner_wasm/Cargo.toml b/gulagcleaner_wasm/Cargo.toml index feca9bf..f02c179 100644 --- a/gulagcleaner_wasm/Cargo.toml +++ b/gulagcleaner_wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gulagcleaner_wasm" -version = "0.13.0" +version = "0.14.0" edition = "2021" authors = ["YM162 "] description = "Ad removal tool for PDFs."