Skip to content

Commit

Permalink
Change in substring annot search
Browse files Browse the repository at this point in the history
  • Loading branch information
YM162 committed Oct 5, 2024
1 parent dc965ad commit c81b12e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion gulagcleaner_python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gulagcleaner_python"
version = "0.14.6"
version = "0.14.7"
edition = "2021"
authors = ["YM162 <[email protected]>"]
description = "Ad removal tool for PDFs."
Expand Down
2 changes: 1 addition & 1 deletion gulagcleaner_python/python/gulagcleaner/command_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def main():

# Check for the -v argument
if arguments["version"]:
print("Current version: 0.14.6")
print("Current version: 0.14.7")
return

# Get the pdf_path argument
Expand Down
2 changes: 1 addition & 1 deletion gulagcleaner_rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gulagcleaner_rs"
version = "0.14.6"
version = "0.14.7"
edition = "2021"
authors = ["YM162 <[email protected]>"]
description = "Ad removal tool for PDFs."
Expand Down
2 changes: 1 addition & 1 deletion gulagcleaner_rs/src/models/page_type.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ fn is_annots_wuolah(annot: &&&lopdf::Dictionary, doc: &lopdf::Document) -> bool
Ok(x) => {
match doc.dereference(x).unwrap().1.as_dict().unwrap().get(b"URI") {
Ok(y) => {
doc.dereference(y).unwrap().1.as_string().unwrap().contains("wlh.es")
doc.dereference(y).unwrap().1.as_string().unwrap().contains("track.wlh.es")
},
Err(_) => false,
}
Expand Down
2 changes: 1 addition & 1 deletion gulagcleaner_wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gulagcleaner_wasm"
version = "0.14.6"
version = "0.14.7"
edition = "2021"
authors = ["YM162 <[email protected]>"]
description = "Ad removal tool for PDFs."
Expand Down

0 comments on commit c81b12e

Please sign in to comment.