mirror of
https://github.com/KnugiHK/WhatsApp-Chat-Exporter.git
synced 2026-03-02 12:23:39 +00:00
Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
20d8e1384a | ||
|
|
6fd0e61b64 | ||
|
|
bbb47cd839 | ||
|
|
c155064ae1 | ||
|
|
d4efd919f9 | ||
|
|
13d761286e | ||
|
|
a943808734 |
2
.github/workflows/compile-binary.yml
vendored
2
.github/workflows/compile-binary.yml
vendored
@@ -1,6 +1,8 @@
|
|||||||
name: Compile standalone binary
|
name: Compile standalone binary
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
release:
|
||||||
|
types: [published]
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
|
|||||||
4
.github/workflows/python-publish.yml
vendored
4
.github/workflows/python-publish.yml
vendored
@@ -18,9 +18,9 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: '3.x'
|
python-version: '3.x'
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
|
|||||||
@@ -134,7 +134,7 @@ options:
|
|||||||
```
|
```
|
||||||
|
|
||||||
# To do
|
# To do
|
||||||
1. Reply in iPhone
|
See [issues](https://github.com/KnugiHK/Whatsapp-Chat-Exporter/issues).
|
||||||
|
|
||||||
# Copyright
|
# Copyright
|
||||||
This is a MIT licensed project.
|
This is a MIT licensed project.
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
__version__ = "0.9.0"
|
__version__ = "0.9.1"
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ def main():
|
|||||||
dest='iphone',
|
dest='iphone',
|
||||||
default=False,
|
default=False,
|
||||||
action='store_true',
|
action='store_true',
|
||||||
help="Define the target as iPhone")
|
help="Define the target as iPhone/iPad")
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"-w",
|
"-w",
|
||||||
"--wa",
|
"--wa",
|
||||||
|
|||||||
@@ -212,7 +212,7 @@ def vcard(db, data):
|
|||||||
print(f"Gathering vCards...({index + 1}/{total_row_number})", end="\r")
|
print(f"Gathering vCards...({index + 1}/{total_row_number})", end="\r")
|
||||||
|
|
||||||
|
|
||||||
def create_html(data, output_folder, template=None, embedded=False, offline_static=False):
|
def create_html(data, output_folder, template=None, embedded=False, offline_static=False, maximum_size=None):
|
||||||
if template is None:
|
if template is None:
|
||||||
template_dir = os.path.dirname(__file__)
|
template_dir = os.path.dirname(__file__)
|
||||||
template_file = "whatsapp.html"
|
template_file = "whatsapp.html"
|
||||||
|
|||||||
Reference in New Issue
Block a user