Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

vimb-3.7.0-1.1 RPM for i586

From OpenSuSE Ports Tumbleweed for i586

Name: vimb Distribution: openSUSE Tumbleweed
Version: 3.7.0 Vendor: openSUSE
Release: 1.1 Build date: Fri Jul 5 22:59:59 2024
Group: Productivity/Networking/Web/Browsers Build host: reproducible
Size: 226965 Source RPM: vimb-3.7.0-1.1.src.rpm
Packager: http://bugs.opensuse.org
Url: https://fanglingsu.github.io/vimb/
Summary: The vim-like browser
vimb is a WebKit-based web browser that behaves like the vimperator
plugin for Firefox, and has usage paradigms from the editor vim.

Provides

Requires

License

GPL-3.0-or-later

Changelog

* Fri Jul 05 2024 Muhammad Akbar Yanuar Mantari <mantarimay@pm.me>
  - Add pkgconfig(webkit2gtk-4.1) BuildRequires: fix build failed
  - Add desktop-file-utils and appstream-glib BuildRequires: to
    validate files
  - Remove unneeded BuildRequires:
    + pkgconfig(libsoup-gnome-2.4)
    + pkgconfig(libsoup-2.4)
    + pkgconfig(gtk+-3.0)
    + libwebkit2gtk-4_1-0
  - enable make test
* Fri Jun 23 2023 Michael Vetter <mvetter@suse.com>
  - Update to 3.7.0:
    Added:
    * The new env variable $VIMB_SELECTION is set to the current selected text
      whenever a shellcmd is run #592.
    * Allow to push link url to queue by <S-LeftMouse> #610.
    * Allow to decide if html5 notfication are allowed #651. New setting
      notification=[ask,always,never] added.
    * Add new env VIMB_WIN_ID var for :shellcmd which holds the own window id.
    * Focus last focused input elemnt on page via i - or first found element if
      none was focused before.
    * Completion with bookmarked urls for :qpush and qunshift.
    * Setting scroll-multiplier to allow for faster scrolling by mouse wheel.
    * Setting intelligent-tracking-prevention to enable WebKit's Intelligent
      Tracking Prevention (ITP).
    * Setting javascript-enable-markup to disable js markup instead of disabling
    * Setting status-bar-show-settings to enable showing indicators to currently
      applied setting. Can be configured via config.h file.
      [#]define COOKIE GET_CHAR(c, "cookie-accept")
      [#]define STATUS_VARAIBLE_SHOW "%c%c%c%c%c%c%c%c", \
      CHAR_MAP(COOKIE, "always", 'A', CHAR_MAP(COOKIE, "origin", '@', 'a')), \
      GET_BOOL(c, "dark-mode") ? 'D' : 'd', \
      vb.incognito ? 'E' : 'e', \
      GET_BOOL(c, "images") ? 'I' : 'i', \
      GET_BOOL(c, "html5-local-storage") ? 'L' : 'l', \
      GET_BOOL(c, "stylesheet") ? 'M' : 'm', \
      GET_BOOL(c, "scripts") ? 'S' : 's', \
      GET_BOOL(c, "strict-ssl") ? 'T' : 't'
      JavaScript in general.
    * Allow to push link url to queue by Shift-LeftMouse.
    * New hint mode ;k do remove hinted elements like advertisement from DOM.
    * Allow to map <PageUp> and <Pagedown> keys.
    Changed:
    * Modes some files from $XDG_CONFIG_HOME/vimb into $XDG_DATA_HOME/vimb #582.
      Following files are affected bookmark, closed, command, config,
      cookies.db, history, queue and search.
      Existing files could be moved to the new location by
      mv $XDG_CONFIG_HOME/vimb/{bookmark,closed,command,cookies.db,history,queue,search} \
      $XDG_DATA_HOME/vimb
      [#] and same for existing profiles
      mkdir $XDG_DATA_HOME/vimb/<ProfileName>
      mv $XDG_CONFIG_HOME/vimb/<ProfileName>/{bookmark,closed,command,cookies.db,history,queue,search} \
      $XDG_DATA_HOME/vimb/<ProfileName>
    * Dependency moved to webkit-gtk 4.1 and libsoup 3.0
    Fixed:
    * Fixed ignored last line in config file if this line did not end in newline.
    * Fixed crash in normal_focus_last_active
    * Fixed hint keys going to webview if the hinted element had no src-attribut
    * Fixed erro in hinting on gitlab which caused the hints to have ho labels #659.
    * Prevent possible use after free in autocmd processing.
    Removed:
    * Expansion of % to the current opened URI for :shellcmd was removed
      because it breaks the x-hint-command with URIs containing '%'. But it is
      still possible to use $VIMB_URI for the :shellcmd which has the same
      effect.
* Thu Oct 07 2021 Bjørn Lie <bjorn.lie@gmail.com>
  - Switch to pkgconfig style BuildRequires, ensure we pull in what
    the package really needs (fixes build in current Factory).
* Fri Jan 03 2020 Michael Vetter <mvetter@suse.com>
  - Update to 3.6.0:
    Added:
    * :cleardata [listOfDataTypes] [timeSpan] command to clear various types of
      stored website data modified in the last timeSpan.
    * Setting hint-match-element to allow to disable the hinting to filter hints
      by the elements text content. This is useful if 'hint-keys' are set the
      chars instead of numbers.
    * New autocmd event LoadStarting to run auto commands before the first page
      content is loaded (Thanks to Patrick Steinhardt).
    * Setting geolocation with values ('ask', 'always' and 'never') to allow the
      user to permit or disable geolcation requests by default (Thanks to Alva).
    * Setting dark-mode to switch the webview into dark mode, which might be
      picked up by pages media query to setup dark styling (Thanks to Alva).
    * Option --cmd, -C to run ex commands on startup.
    Removed:
    * :clearcache was removed in favor of more advanced :cleardata command.
      The previous behaviour of :clearcache could be replaces by
      :cleardata memory-cache,disk-cache.
* Fri Aug 23 2019 mvetter@suse.com
  - bsc#1146724: Set prefix during build
    So that it looks for webext_main.so at the right location
* Tue Jul 30 2019 mvetter@suse.com
  - Update to 3.5.0:
    Added:
    * Add external download command #543 #348.
    * Added ephemeral mode by new option --incognito#562.
    Changed:
    * Hinting shows the current focused elements URI in the statusbar.
    * Show error if printing with :hardcopy fails #564.
    Fixed:
    * Fixed compilation if source is not in a git repo (Thanks to Patrick Steinhardt).
    * Fixed partial hidden hint labels on top of screen.
    * Fix segfault on open in new tabe from context menu #556.
    * Fix "... (null)" shown in title during url sanitization.
    Removed:
    * Setting private-browsing was removed in favor of --incognito option.
  - Remove vim-3.4.0-fixbuild.patch: included upstream
* Wed Mar 27 2019 mvetter@suse.com
  - Update to 3.4.0:
    Added:
    * Allow to show video in fullscreen, without statusbar and inputbox, if requested.
    * Added option --no-maximize to no start with maximized window #483.
    * New setting prevent-newwindow to enforce opening links into same window
      even if they are crafted by target="_blank" or using window.open(...)#544.
    Changed:
    * Increased min required webkit version to 2.20.x.
    * Use man page date instead of build date to make reproducible builds.
    * URLs shown on statusbar and title are now shown as punicode if they contain
      homographs.
    Fixed:
    * Fix out-of-bounds buffer access in parse_command (Thanks to Sören Tempel) #529.
    * Fixed none shown hint labels by Content-Security-Policy headers #531.
    * Fixed segfault on JavaScript window.close() call #537.
    * Fixed no char inserted in input mode after timeout and imap/inoremap
      candidate #546.
  - Add vim-3.4.0-fixbuild.patch: fix non git build
* Wed Feb 13 2019 mvetter@suse.com
  - Support parallel builds
* Wed Feb 13 2019 Jan Engelhardt <jengelh@inai.de>
  - Trim bias from descriptions.
* Tue Feb 12 2019 mvetter@suse.com
  - Initial package vimb 3.3.0 for openSUSE

Files

/usr/bin/vimb
/usr/lib/vimb
/usr/lib/vimb/webext_main.so
/usr/share/applications/vimb.desktop
/usr/share/man/man1/vimb.1.gz
/usr/share/metainfo/vimb.metainfo.xml


Generated by rpm2html 1.8.1

Fabrice Bellet, Sun Aug 18 01:11:36 2024