SHA256
10
0
forked from pool/howl

- Update to 0.6:

* Added navigate-go-to command, for going back to a specific
    previous location.
  * Added support for a “journal” buffer showing the Howl log,
    available via open-journal.
  * Ensure loaded buffers contain valid UTF-8 at all times
  * Better lexing for C, Rust, Python
  * Added support for specifying line and column when opening files
  * Added support for custom user fonts
  * Added project-switch-buffer command that displays open buffers
    within the current project.
  * Added two inspectors and a command for documentation to the Go mode
  * Moving cursor left or right with a selection active now cancels
    the selection, leaving the cursor at the corresponding end.
  * Added proper structure support for C/C++ mode
  * Base scheme support on the newer lisp mode instead of old basic mode
  * Added the **popup_menu_accept_key option, for controlling which
    key accepts the current option for a popup menu, such as the
    completion popup. Valid values are ‘enter’ (the default) or ‘tab’.
  * Close completion popup when user activity warrants it
  * Added new built-in theme: Dracula
  * Added integrated and fast project file search functionality via
    two new commands: project-file-search and project-file-search-list
  * Javascript: Support for ES6 templates and new keywords and operators
  * Performance and functionality improvements for the matcher, used
    in Howl selection lists, enabling fast matching across much
    larger data sets.
  * Performance improvements for recursive file selection.
    Between 30x and 32x faster.
  * Respect use_tabs option when commenting

OBS-URL: https://build.opensuse.org/package/show/devel:languages:lua/howl?expand=0&rev=13
This commit is contained in:
2019-04-05 09:30:57 +00:00
committed by Git OBS Bridge
parent f77db7643a
commit a1a2e0aafe
5 changed files with 65 additions and 6 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7b0055908f57f27b30f20f7baec6302b0ba368ca3f30ccd655bc2258f246cc3e
size 2415198

3
howl-0.6.tgz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:834b06e423d360c97197e7abec99b623fdc5ed3a0c39b88d6467e499074585e1
size 2462495

2
howl-rpmlintrc Normal file
View File

@@ -0,0 +1,2 @@
# It's only an example file 'example.c'
addFilter("E: devel-file-in-non-devel-package *")

View File

@@ -1,3 +1,58 @@
-------------------------------------------------------------------
Fri Apr 5 09:06:40 UTC 2019 - mvetter@suse.com
- Update to 0.6:
* Added navigate-go-to command, for going back to a specific
previous location.
* Added support for a “journal” buffer showing the Howl log,
available via open-journal.
* Ensure loaded buffers contain valid UTF-8 at all times
* Better lexing for C, Rust, Python
* Added support for specifying line and column when opening files
* Added support for custom user fonts
* Added project-switch-buffer command that displays open buffers
within the current project.
* Added two inspectors and a command for documentation to the Go mode
* Moving cursor left or right with a selection active now cancels
the selection, leaving the cursor at the corresponding end.
* Added proper structure support for C/C++ mode
* Base scheme support on the newer lisp mode instead of old basic mode
* Added the **popup_menu_accept_key option, for controlling which
key accepts the current option for a popup menu, such as the
completion popup. Valid values are enter (the default) or tab.
* Close completion popup when user activity warrants it
* Added new built-in theme: Dracula
* Added integrated and fast project file search functionality via
two new commands: project-file-search and project-file-search-list
* Javascript: Support for ES6 templates and new keywords and operators
* Performance and functionality improvements for the matcher, used
in Howl selection lists, enabling fast matching across much
larger data sets.
* Performance improvements for recursive file selection.
Between 30x and 32x faster.
* Respect use_tabs option when commenting
* Ensure scrolling works correctly for Gtk+ 3.4
* Dart bundle enhancements: improved syntax highlighting
* Added support for activities - potentially longer running activities
that should run in a apparently blocking way to the user.
* Added a new commandline flag, --run-async, for running a particular
file in a asynchronous Howl context.
* Added support for shared, low precision after timers
* Added options for controlling scrolling speed
* Add support for smooth scrolling events
* Fixed background drawing for Wayland/Weston/CSD environments.
* Requested that titlebar is hidden for newer versions of Gnome 3.
* Added support for navigating back and forth in a list of previously
visited locations. Two new commands, navigate-back and
navigate-forward were added, bound to ctrl_< and ctrl_> respectively.
* Improved key translation for keys when caps lock is on.
* Added two new commands, editor-newline-above and editor-newline-below,
that insert a new line above/below the current line. Bound these
commands to ctrl_shift_return and ctrl_return.
* Auto detect line endings when opening a file if possible
* For details see: https://howl.io/blog/2019/04/05/howl-0-6-released.html
- Add howl-rpmlintrc: it only installs an example C file
-------------------------------------------------------------------
Wed Feb 21 16:49:22 UTC 2018 - tchvatal@suse.com

View File

@@ -1,7 +1,7 @@
#
# spec file for package howl
#
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,13 +17,14 @@
Name: howl
Version: 0.5.3
Version: 0.6
Release: 0
Summary: Editor with keyboard-centric minimalistic interface
License: MIT
Group: Productivity/Text/Editors
Url: https://howl.io/
Source: https://github.com/howl-editor/howl/releases/download/%{version}/%{name}-%{version}.tgz
Source0: https://github.com/howl-editor/howl/releases/download/%{version}/%{name}-%{version}.tgz
Source1: howl-rpmlintrc
Patch0: howl-respect-cflags.patch
BuildRequires: fdupes
BuildRequires: gcc
@@ -41,6 +42,7 @@ keyboard.
%prep
%setup -q
%patch0 -p1
find . -name '*.rb' -exec sed -i "s/#! \/usr\/bin\/env ruby/#!\/usr\/bin\/ruby/" {} +
%build
export CFLAGS="%{optflags}"