Skip to content

Commit

Permalink
Fixed ?
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-gromeyer committed Jun 27, 2022
1 parent 8c35c17 commit 67db940
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 20 deletions.
2 changes: 1 addition & 1 deletion packaging/MarkdownEdit/DEBIAN/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: markdownedit
Version: 1.2.5
Version: 1.4.0
Architecture: amd64
Priority: optional
Installed-Size: 1064
Expand Down
1 change: 1 addition & 0 deletions packaging/build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd
cp ../../build-MarkdownEdit-Desktop-Release/markdownedit MarkdownEdit/usr/bin/markdownedit
chmod +x MarkdownEdit/usr/bin/markdownedit
dpkg-deb --build MarkdownEdit
sudo dpkg -i MarkdownEdit.deb
18 changes: 0 additions & 18 deletions snap/snapcraft.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion src/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ void MainWindow::openInWebBrowser()
void MainWindow::exportHtml()
{
#if defined(Q_OS_WASM)
QFileDialog::saveFileContent(html.toLocal8Bit(), QStringLiteral("Exported HTML.pdf"));
QFileDialog::saveFileContent(html.toLocal8Bit(), QStringLiteral("Exported HTML.html"));
#else
QFileDialog dialog(this, tr("Export HTML"));
dialog.setMimeTypeFilters({"text/html"});
Expand Down

0 comments on commit 67db940

Please sign in to comment.