-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- SVG output: added `white-space: pre` in styles - HTML output: replaced ' by ' (https://bugs.debian.org/927410) - HTML output: fixed index file format (missing close tags) - CLI: moved syntax recognition functions to DataDir class - CLI: added regular expressions and default false values to --verbose output - CLI: fixed `--list-cat` without `--list-scripts` (https://gitlab.com/saalen/highlight/issues/107) - CLI: added optional argument to `--base16` (https://gitlab.com/saalen/highlight/issues/113) - CLI: added default base16 themes (https://gitlab.com/saalen/highlight/issues/113) - CLI: added `--isolate` option (https://gitlab.com/saalen/highlight/issues/118) - GUI: improved UTF16 input path handling on Windows
- Loading branch information
Showing
7 changed files
with
21 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
$NetBSD: distinfo,v 1.9 2019/04/04 14:14:28 schmonz Exp $ | ||
$NetBSD: distinfo,v 1.10 2019/05/21 21:56:57 schmonz Exp $ | ||
|
||
SHA1 (highlight-3.50.tar.bz2) = 8499963717f9d1e639b2689f6775ffd5f0aacbb4 | ||
RMD160 (highlight-3.50.tar.bz2) = 8c273ee95c1778fcdb51e17472bc4fbb0d0ff188 | ||
SHA512 (highlight-3.50.tar.bz2) = 1911a29fea6a157ff237276673acf0ae2b5a931ad7beeacf26a67970fc5ec66abf6dc64ff1694bf0cf68414c29f597625700943da772823a025f7a139d606c3d | ||
Size (highlight-3.50.tar.bz2) = 1386968 bytes | ||
SHA1 (highlight-3.51.tar.bz2) = dd0026bd404f46eeb3c17636e139a8ef09598039 | ||
RMD160 (highlight-3.51.tar.bz2) = 2b1f6ae13a4ed4e3e76799f4c9fbfa3d8340053e | ||
SHA512 (highlight-3.51.tar.bz2) = 899f8bb735c061c3561250d2747df3e7a5776a8fd54dfb073a48b4f709732a92c906b0f2b95cb717bfc2fe71fc99d4b5b3e6e9e4983048e1a23409895fa8b87d | ||
Size (highlight-3.51.tar.bz2) = 1396851 bytes | ||
SHA1 (patch-extras_swig_makefile) = 2bb62f7519cd5baed60b1af5f606ce22444c346f | ||
SHA1 (patch-makefile) = c9c15d82c826b8d0b99b59dedf0fb43b4eb9c063 | ||
SHA1 (patch-src_core_platform__fs.cpp) = 2f95652e616026b435ff369e59fbc2fc67a613a0 | ||
SHA1 (patch-src_gui-qt_mainwindow.cpp) = 8688f68e4dd64ccab2df577262baa2579040505a | ||
SHA1 (patch-src_gui-qt_mainwindow.cpp) = 977c34f85929bcd2a008d91dac812e44e63afb62 | ||
SHA1 (patch-src_gui-qt_showtextfile.cpp) = 9bd974f40aa9a5bf7c8178e079d4ee1818a4d7b8 | ||
SHA1 (patch-src_makefile) = d07c197a731f5a6197b55f4c8f12bd01ad11d544 |
10 changes: 5 additions & 5 deletions
10
textproc/libhighlight/patches/patch-src_gui-qt_mainwindow.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
$NetBSD: patch-src_gui-qt_mainwindow.cpp,v 1.2 2019/02/12 19:46:12 schmonz Exp $ | ||
$NetBSD: patch-src_gui-qt_mainwindow.cpp,v 1.3 2019/05/21 21:56:57 schmonz Exp $ | ||
|
||
Use X11 on Darwin, like everywhere else. | ||
|
||
--- src/gui-qt/mainwindow.cpp.orig 2019-02-06 20:21:57.000000000 +0000 | ||
--- src/gui-qt/mainwindow.cpp.orig 2019-05-17 19:04:13.000000000 +0000 | ||
+++ src/gui-qt/mainwindow.cpp | ||
@@ -36,6 +36,8 @@ along with Highlight. If not, see <http | ||
#include "io_report.h" | ||
#include "syntax_chooser.h" | ||
|
||
+#undef Q_OS_OSX | ||
+ | ||
//#include <QDebug> | ||
|
||
MainWindow::MainWindow(QWidget *parent) | ||
#ifdef Q_OS_WIN | ||
#include <windows.h> | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters