7 Commits
0.9.0 ... 0.9.1

Author SHA1 Message Date
KnugiHK
20d8e1384a Bump version 2023-05-17 00:08:52 +08:00
KnugiHK
6fd0e61b64 Update help test 2023-05-16 23:29:10 +08:00
KnugiHK
bbb47cd839 Bug fix 2023-05-16 23:25:12 +08:00
Knugi
c155064ae1 Update README.md 2023-05-16 13:38:16 +00:00
Knugi
d4efd919f9 Update python-publish.yml 2023-05-16 11:49:57 +00:00
Knugi
13d761286e Update compile-binary.yml 2023-05-16 11:48:25 +00:00
Knugi
a943808734 Update compile-binary.yml 2023-05-16 11:48:00 +00:00
6 changed files with 8 additions and 6 deletions

View File

@@ -1,6 +1,8 @@
name: Compile standalone binary
on:
release:
types: [published]
workflow_dispatch:
permissions:

View File

@@ -18,9 +18,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies

View File

@@ -134,7 +134,7 @@ options:
```
# To do
1. Reply in iPhone
See [issues](https://github.com/KnugiHK/Whatsapp-Chat-Exporter/issues).
# Copyright
This is a MIT licensed project.

View File

@@ -1 +1 @@
__version__ = "0.9.0"
__version__ = "0.9.1"

View File

@@ -36,7 +36,7 @@ def main():
dest='iphone',
default=False,
action='store_true',
help="Define the target as iPhone")
help="Define the target as iPhone/iPad")
parser.add_argument(
"-w",
"--wa",

View File

@@ -212,7 +212,7 @@ def vcard(db, data):
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:
template_dir = os.path.dirname(__file__)
template_file = "whatsapp.html"