pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/www/otter-browser



Module Name:    pkgsrc
Committed By:   maya
Date:           Wed Aug  1 14:30:29 UTC 2018

Modified Files:
        pkgsrc/www/otter-browser: Makefile PLIST distinfo

Log Message:
otter-browser: update to 0.9.99.1
Additionally, this fixes the build.
Mark paxctl +m, I probably needed this because I locally
enabled qt-webkit's JIT.

0.9.99.1:
    added importer for OPML files;
    added support for abp: protocol for adding new content filtering profiles;
    added ability to open selection as link if it macthes URL format;
    various fixes and minor improvements for Feeds reader.

0.9.99:
    initial version of Feeds Reader:
        Atom and RSS 2.0 parsers;
        support for categories;
        ability to preview feeds before subscribing using view-feed: protocol;
    added action to take page screenshot;
    some minor optimizations.

0.9.98:
several enhancements in experimental backend for QtWebEngine (Blink):

    initial work on global history support;
    added support for alternative stylesheets;
    added support for fetching lists of search engines, feeds and links;

initial work on Feeds Reader;
several bug fixes and some minor optimizations.

0.9.97:
    added initial version of Tab History panel;
    some minor optimizations.

0.9.96:
added initial version of Tab History panel;
some minor optimizations

0.9.95:
    added initial version of toolbar widget for viewing downloads from current session;
    added some new keyboard shortcuts;
    some minor fixes.

0.9.94:
    added new default style for Start Page by Kamil Nęcek;
    added interface allowing to manage list of hosts using customized website overrides;
    several bug fixes and some optimizations.

0.9.93:
    added Page Information panel;
    added support for external icons for User Scripts;
    some minor fixes and optimizations.

0.9.92:
    improved support for styling tab bar text;
    added support for deleting User Scripts in Addons Manager;
    restored inline URLs completion;
    added action for peeking tab contents;
    multiple bug fixes and stability improvements.

0.9.91:
reworked toolbars:

    added support for visibility toggle button (collapsing contents);
    fixed unified toolbar and titlebar style under macOS;
    toolbar visibility and location is now stored per main window;

improved sidebar(s):

    added ability to add new sidebars;
    allow to change their location by drag and drop;

vastly improved error pages:

    special error pages are now used instead of SSL warning dialogs;
    blocked content triggers dedicated error pages;

improved User Agents configuration;
added support for managing multiple proxy configurations and setting them per page or host;
reworked internal actions handling system allows to specify parameters for actions trigerred by keyboard shortcuts and mouse gestures;
vastly decreased import time for large bookmark files;
added module for listing opened windows and tabs;
improved styling under Windows, Unity and macOS;
added new default icon theme by Kamil Nęcek;
item views can now allocate extra space to predefined column other than last one;
added action to set, reset or toggle an option;
global editing actions now apply to focused single and multi line text edit widgets too;
added ability to drop URLs onto bookmark bars;
spell checking is now available in other multi line text edit widgets;
added action to control multimedia playback rate;
keyboard shortcuts are now validated while editing;
added support for customizing F12 menu;
implemented "Validate Using" menu;
added support for configurable Fast Forward rules;

0.9.12:
    greatly improved tab bar:
        allow to detach tabs by dragging them away;
        allow to drop URLs and tabs from other windows;
        added option to show embedded tab thumbnails;
        improved handling of visibility of close button;
        tabs demanding attention are drawn using bold font;
        improved RTL support;
        decreased default tab padding;
        tab text is no longer centered horizontally;
        fixed status tip messages while rearranging tabs;
    improved KDE5 and Unity integration:
        added support for progress information;
        added support for desktop actions;
    several MacOS X specific fixes and improvements:
        improved rendering of platform style;
        added dock icon menu;
        added support for listing applications associated with given MIME type;
    added support for Windows jump list;
    added fullscreen support for QtWebKit backend;
    open file path is saved;
    improved RTL support in address and search fields;
    many other fixes and improvements.

0.9.11:
    added initial support for storing passwords:
        support for multiple credential sets per host;
        basic passwords management;
        disabled by default (no encryption yet);
    added crash reporter;
    added support for muting tab media;
    F12 menu now exposes all modes for Images visibility (including new option to show cached images only) and Plugins;
    QtWebEngine backend is now capable of saving pages in MIME HTML format and as complete set of files;
    added new toolbar visibility settings for full screen mode;
    added new widget for showing content blocking details;
    added ability to customize progress bar;
    added ability to add loading progress information widgets to any toolbar;
    various improvements in handling of content blocking profiles:
        added new definitions and updated existing;
        added option to add custom blocking rules;
        profiles are now grouped by type;
    various minor fixes and improvements.


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 pkgsrc/www/otter-browser/Makefile
cvs rdiff -u -r1.2 -r1.3 pkgsrc/www/otter-browser/PLIST
cvs rdiff -u -r1.3 -r1.4 pkgsrc/www/otter-browser/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/www/otter-browser/Makefile
diff -u pkgsrc/www/otter-browser/Makefile:1.22 pkgsrc/www/otter-browser/Makefile:1.23
--- pkgsrc/www/otter-browser/Makefile:1.22      Fri Jul 20 03:34:31 2018
+++ pkgsrc/www/otter-browser/Makefile   Wed Aug  1 14:30:29 2018
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.22 2018/07/20 03:34:31 ryoon Exp $
+# $NetBSD: Makefile,v 1.23 2018/08/01 14:30:29 maya Exp $
 
-DISTNAME=      otter-browser-0.9.10
-PKGREVISION=   15
+DISTNAME=      otter-browser-0.9.99.1
 CATEGORIES=    www
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=OtterBrowser/}
 GITHUB_TAG=    v${PKGVERSION_NOREV}
@@ -14,6 +13,8 @@ LICENSE=      gnu-gpl-v3
 USE_CMAKE=     yes
 USE_LANGUAGES= c c++
 
+NOT_PAX_MPROTECT_SAFE+=        bin/otter-browser
+
 .include "../../graphics/hicolor-icon-theme/buildlink3.mk"
 .include "../../sysutils/desktop-file-utils/desktopdb.mk"
 .include "../../textproc/hunspell/buildlink3.mk"
@@ -21,4 +22,5 @@ USE_LANGUAGES=        c c++
 .include "../../x11/qt5-qtmultimedia/buildlink3.mk"
 .include "../../x11/qt5-qtscript/buildlink3.mk"
 .include "../../x11/qt5-qtwebkit/buildlink3.mk"
+.include "../../x11/qt5-qtsvg/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/www/otter-browser/PLIST
diff -u pkgsrc/www/otter-browser/PLIST:1.2 pkgsrc/www/otter-browser/PLIST:1.3
--- pkgsrc/www/otter-browser/PLIST:1.2  Sat Aug 20 19:00:31 2016
+++ pkgsrc/www/otter-browser/PLIST      Wed Aug  1 14:30:29 2018
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2016/08/20 19:00:31 kamil Exp $
+@comment $NetBSD: PLIST,v 1.3 2018/08/01 14:30:29 maya Exp $
 bin/otter-browser
 man/man1/otter-browser.1
 share/applications/otter-browser.desktop
@@ -22,6 +22,7 @@ share/otter-browser/locale/otter-browser
 share/otter-browser/locale/otter-browser_et.qm
 share/otter-browser/locale/otter-browser_fi.qm
 share/otter-browser/locale/otter-browser_fr.qm
+share/otter-browser/locale/otter-browser_gl.qm
 share/otter-browser/locale/otter-browser_he.qm
 share/otter-browser/locale/otter-browser_hr.qm
 share/otter-browser/locale/otter-browser_hu.qm
@@ -47,5 +48,6 @@ share/otter-browser/locale/otter-browser
 share/otter-browser/locale/otter-browser_sv.qm
 share/otter-browser/locale/otter-browser_tr.qm
 share/otter-browser/locale/otter-browser_uk.qm
+share/otter-browser/locale/otter-browser_yue.qm
 share/otter-browser/locale/otter-browser_zh_CN.qm
 share/otter-browser/locale/otter-browser_zh_TW.qm

Index: pkgsrc/www/otter-browser/distinfo
diff -u pkgsrc/www/otter-browser/distinfo:1.3 pkgsrc/www/otter-browser/distinfo:1.4
--- pkgsrc/www/otter-browser/distinfo:1.3       Sat Aug 20 19:00:31 2016
+++ pkgsrc/www/otter-browser/distinfo   Wed Aug  1 14:30:29 2018
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.3 2016/08/20 19:00:31 kamil Exp $
+$NetBSD: distinfo,v 1.4 2018/08/01 14:30:29 maya Exp $
 
-SHA1 (otter-browser-0.9.10.tar.gz) = fe9657c4533ba363d5cbe777a0d0547697052e9f
-RMD160 (otter-browser-0.9.10.tar.gz) = e708fd4d8b8616c16e42b6a02f7845b7a5e75134
-SHA512 (otter-browser-0.9.10.tar.gz) = 04372d082a31bee906abee0d10e5489763b3f0a72d7e20b4c0fcbe85be0c29142294d4e32e9af56b6d7f4c529ffddc20347c0be6104bb6a64d8245724e20d96f
-Size (otter-browser-0.9.10.tar.gz) = 3521313 bytes
+SHA1 (otter-browser-0.9.99.1.tar.gz) = 216820fdced158170877ad1c743dad14e9871a29
+RMD160 (otter-browser-0.9.99.1.tar.gz) = 2a7664b8f895bb54cd0f162f8e29af87d24ef125
+SHA512 (otter-browser-0.9.99.1.tar.gz) = 333759ee0f846ce503d7a96ba7ce69fb7bfc4c08e8872b80f6230966d5d8f4c3d85b98b8e636500cc4e100f5c2d400ac7f622fbeb15ec1100614fe53fe73f88d
+Size (otter-browser-0.9.99.1.tar.gz) = 4815838 bytes



Home | Main Index | Thread Index | Old Index