mirror of
https://github.com/KnugiHK/WhatsApp-Chat-Exporter.git
synced 2026-03-06 22:26:04 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6896c9663e | ||
|
|
6dda2eb6d5 | ||
|
|
1706f3e9e5 |
@@ -213,7 +213,7 @@ options:
|
|||||||
Path to call database (default: 1b432994e958845fffe8e2f190f26d1511534088) iOS only
|
Path to call database (default: 1b432994e958845fffe8e2f190f26d1511534088) iOS only
|
||||||
--headline HEADLINE The custom headline for the HTML output. Use '??' as a placeholder for the chat name
|
--headline HEADLINE The custom headline for the HTML output. Use '??' as a placeholder for the chat name
|
||||||
|
|
||||||
WhatsApp Chat Exporter: 0.11.0 Licensed with MIT. See https://wts.knugi.dev/docs?dest=osl for all open source
|
WhatsApp Chat Exporter: 0.11.2 Licensed with MIT. See https://wts.knugi.dev/docs?dest=osl for all open source
|
||||||
licenses.
|
licenses.
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
@@ -196,7 +196,10 @@ def messages(db, data, media_folder, timezone_offset, filter_date, filter_chat,
|
|||||||
FROM ZWAMESSAGE
|
FROM ZWAMESSAGE
|
||||||
WHERE ZSTANZAID LIKE '{message.reply}%'""")
|
WHERE ZSTANZAID LIKE '{message.reply}%'""")
|
||||||
quoted_content = cursor2.fetchone()
|
quoted_content = cursor2.fetchone()
|
||||||
message.quoted_data = quoted_content["ZTEXT"] or quoted_content
|
if quoted_content and "ZTEXT" in quoted_content:
|
||||||
|
message.quoted_data = quoted_content["ZTEXT"]
|
||||||
|
else:
|
||||||
|
message.quoted_data = None
|
||||||
if content["ZMESSAGETYPE"] == 15: # Sticker
|
if content["ZMESSAGETYPE"] == 15: # Sticker
|
||||||
message.sticker = True
|
message.sticker = True
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "whatsapp-chat-exporter"
|
name = "whatsapp-chat-exporter"
|
||||||
version = "0.11.0"
|
version = "0.11.2"
|
||||||
description = "A Whatsapp database parser that provides history of your Whatsapp conversations in HTML and JSON. Android, iOS, iPadOS, Crypt12, Crypt14, Crypt15 supported."
|
description = "A Whatsapp database parser that provides history of your Whatsapp conversations in HTML and JSON. Android, iOS, iPadOS, Crypt12, Crypt14, Crypt15 supported."
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
authors = [
|
authors = [
|
||||||
@@ -58,4 +58,4 @@ where = ["."]
|
|||||||
include = ["Whatsapp_Chat_Exporter"]
|
include = ["Whatsapp_Chat_Exporter"]
|
||||||
|
|
||||||
[tool.setuptools.package-data]
|
[tool.setuptools.package-data]
|
||||||
template = ["whatsapp.html"]
|
Whatsapp_Chat_Exporter = ["*.html"]
|
||||||
|
|||||||
Reference in New Issue
Block a user