-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## [2.3.1] ### Added - Added command `:userscripts-reload` to reload lua scripts. - The tabgroup plugin is now included in luakit (:tabmenu). - Allow configuration of shortcuts that should be passed through (luakit/luakit#921). - Added scalable SVG desktop icon version. ### Changed - Allow functions to be bound to more than one key (luakit/luakit#913). ### Fixed - No more `gdk_keymap_get_default()` compiler warning. - Fixed an issue where links were hinted, but then could be followed. - Fixed the paging on the the bookmarks page. - Fixed build on Solaris. - Fixed relocation errors on Sparc64. - Fixed proxymenu to show default entries when proxymenu file is not present. - The command mode cursor is now drawn in the user-specified foreground color.
- Loading branch information
Showing
4 changed files
with
19 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
$NetBSD: distinfo,v 1.5 2021/10/26 11:29:38 nia Exp $ | ||
$NetBSD: distinfo,v 1.6 2022/11/15 22:48:32 nia Exp $ | ||
|
||
BLAKE2s (luakit-2.3.tar.gz) = 3928eec7f5ac0313e0b3187ed71ddb750428d97d2bfd165cb564a8abbb0d25ca | ||
SHA512 (luakit-2.3.tar.gz) = f41121e1c47c020d90fe69f858b8c348f5c3ad752891abf2b94e5b44eebe3d5c8c315342c9aa4c53bbaef548f6ef2a1d0c522d877f0a20516734755967c0bb5c | ||
Size (luakit-2.3.tar.gz) = 497471 bytes | ||
SHA1 (patch-Makefile) = 8510a1de1c99244ce1f8cb925439921381692f3d | ||
BLAKE2s (luakit-2.3.1.tar.gz) = e036c47070de587024aa69df4b98f3d1b5bb9833385be2b409bc5444f3ea1d5e | ||
SHA512 (luakit-2.3.1.tar.gz) = 73d389f7e5a11f88905957c11aab085c9d33a2d0b276e22b89ae689cabe9cff0a18a003d23548fbc4378a695379cdb223a313328372c84bb74da605855e4a9e3 | ||
Size (luakit-2.3.1.tar.gz) = 506988 bytes | ||
SHA1 (patch-Makefile) = f4a25f2ea39c9a94cb5fbdb7b02f81c22a6e0a32 |
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,17 +1,17 @@ | ||
$NetBSD: patch-Makefile,v 1.1 2020/08/09 17:25:37 nia Exp $ | ||
$NetBSD: patch-Makefile,v 1.2 2022/11/15 22:48:32 nia Exp $ | ||
|
||
Install config files to examples. | ||
|
||
--- Makefile.orig 2018-11-16 08:12:24.000000000 +0000 | ||
--- Makefile.orig 2022-08-30 15:17:46.000000000 +0000 | ||
+++ Makefile | ||
@@ -108,8 +108,8 @@ install: all | ||
install -m644 luakit.so $(DESTDIR)$(PREFIX)/lib/luakit/luakit.so | ||
@@ -110,8 +110,8 @@ install: all | ||
install -m644 luakit.so $(DESTDIR)$(LIBDIR)/luakit.so | ||
install -d $(DESTDIR)$(PREFIX)/bin | ||
install luakit $(DESTDIR)$(PREFIX)/bin/luakit | ||
- install -d $(DESTDIR)$(XDGPREFIX)/luakit/ | ||
- install -m644 config/*.lua $(DESTDIR)$(XDGPREFIX)/luakit/ | ||
+ install -d $(DESTDIR)$(PREFIX)/share/examples/luakit/ | ||
+ install -m644 config/*.lua $(DESTDIR)$(PREFIX)/share/examples/luakit/ | ||
+ install -m644 config/*.lua $(DESTDIR)$(PREFIX)/share/examples/luakit | ||
install -d $(DESTDIR)$(PIXMAPDIR) | ||
install -m644 extras/luakit.png $(DESTDIR)$(PIXMAPDIR) | ||
install -d $(DESTDIR)$(APPDIR) | ||
install -m644 extras/luakit.svg $(DESTDIR)$(PIXMAPDIR) |