- Update to version 0.2.6:
* Make auto_closing_matching_pairs dependent on BufferContent (#2188) * Extended double-click options (#2127) * chore(deps): bump once_cell from 1.15.0 to 1.17.1 (#2173) * fix: build WSL backend only for Windows (#2166) * return stdout stderr * update psp-types * fix cannot open file when diff already opened (#2125) * Use abs_diff (#2123) * Added Lapce App Icon (#2128) * fix: dont overwrite symlink (#2131) * ci: run workflow in PR to test changes (#2132) * chore(deps): bump git2 from 0.14.4 to 0.16.1 (#2050) * fix: rewrite script + fix version comparison (#2117) * Add settings to configure the scroll speed (#2120) * make wasi initilization async (#2114) * feat: configurable diff context lines (#2094) * Properly instantiate the WASM blob and let it live inside the thread (#2090) * If format-on-save is not enabled, save immediately (#2088) * feat: diff view navbar (#2084) * Enable plugins to act as LSP themselves (#2087) * fix: branches filter not updating (#2080) * feat: add Ctrl+{a,e,k} keybinds on macOS (#2074) * fix: remove regex, parse remote as URL (#2075) * fix: find repository if it's not in current workspace path (#2069) * fix: set language environment in proper way (#2070) * feat: add command and keybinds to delete line (#2071) * Add an option to disable moving the focus area when you type (#2062) * Don't spawn a thread for every config watcher notifications (#2034) OBS-URL: https://build.opensuse.org/package/show/editors/lapce?expand=0&rev=62
This commit is contained in:
parent
d40788676f
commit
b16955e55b
14
_service
14
_service
@ -1,10 +1,10 @@
|
||||
<services>
|
||||
<service mode="disabled" name="obs_scm">
|
||||
<param name="url">https://github.com/lapce/lapce</param>
|
||||
<param name="versionformat">@PARENT_TAG@+git@TAG_OFFSET@</param>
|
||||
<param name="versionformat">@PARENT_TAG@</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="revision">5b2d412fc83b4a72ec91da884cc07e127ffef8a5</param>
|
||||
<param name="match-tag">v0.2.5</param>
|
||||
<param name="revision">cc154ac94fbcfd3fe9bb3ac7c03d161d300b31c8</param>
|
||||
<param name="match-tag">v0.2.6</param>
|
||||
<param name="versionrewrite-pattern">v(.*)</param>
|
||||
<param name="versionrewrite-replacement">\1</param>
|
||||
<param name="changesgenerate">enable</param>
|
||||
@ -13,13 +13,15 @@
|
||||
<service mode="disabled" name="tar" />
|
||||
<service mode="disabled" name="recompress">
|
||||
<param name="file">*.tar</param>
|
||||
<param name="compression">xz</param>
|
||||
<param name="compression">zstd</param>
|
||||
</service>
|
||||
<service mode="disabled" name="set_version"/>
|
||||
<service name="cargo_vendor" mode="disabled">
|
||||
<param name="srcdir">lapce</param>
|
||||
<param name="compression">xz</param>
|
||||
<param name="compression">zst</param>
|
||||
<param name="update">true</param>
|
||||
</service>
|
||||
<service name="cargo_audit" mode="disabled" />
|
||||
<service name="cargo_audit" mode="disabled">
|
||||
<param name="srcdir">lapce</param>
|
||||
</service>
|
||||
</services>
|
||||
|
3
lapce-0.2.6.tar.zst
Normal file
3
lapce-0.2.6.tar.zst
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f69577e9f626e42be25fb294f1a6539735afbee9f8f175db46a8d55d9b4fb944
|
||||
size 1834935
|
@ -1,3 +1,46 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 01 10:21:38 UTC 2023 - socvirnyl.estela@gmail.com
|
||||
|
||||
- Update to version 0.2.6:
|
||||
* bump version
|
||||
* Make auto_closing_matching_pairs dependent on BufferContent (#2188)
|
||||
* Extended double-click options (#2127)
|
||||
* chore(deps): bump once_cell from 1.15.0 to 1.17.1 (#2173)
|
||||
* fix: build WSL backend only for Windows (#2166)
|
||||
* return stdout stderr
|
||||
* update psp-types
|
||||
* fix cannot open file when diff already opened (#2125)
|
||||
* Use abs_diff (#2123)
|
||||
* Added Lapce App Icon (#2128)
|
||||
* fix: dont overwrite symlink (#2131)
|
||||
* ci: run workflow in PR to test changes (#2132)
|
||||
* chore(deps): bump git2 from 0.14.4 to 0.16.1 (#2050)
|
||||
* fix: rewrite script + fix version comparison (#2117)
|
||||
* Add settings to configure the scroll speed (#2120)
|
||||
* make wasi initilization async (#2114)
|
||||
* feat: configurable diff context lines (#2094)
|
||||
* Properly instantiate the WASM blob and let it live inside the thread (#2090)
|
||||
* If format-on-save is not enabled, save immediately (#2088)
|
||||
* feat: diff view navbar (#2084)
|
||||
* Enable plugins to act as LSP themselves (#2087)
|
||||
* fix: branches filter not updating (#2080)
|
||||
* feat: add Ctrl+{a,e,k} keybinds on macOS (#2074)
|
||||
* fix: remove regex, parse remote as URL (#2075)
|
||||
* fix: find repository if it's not in current workspace path (#2069)
|
||||
* fix: set language environment in proper way (#2070)
|
||||
* feat: add command and keybinds to delete line (#2071)
|
||||
* Add an option to disable moving the focus area when you type (#2062)
|
||||
* Don't spawn a thread for every config watcher notifications (#2034)
|
||||
* fix: remove ssh timeout option on windows (#2072)
|
||||
* fix: missing newline (#2073)
|
||||
* fix(clippy): apply new lints (#2063)
|
||||
* Actually logs LogMessage request from plugins (#2061)
|
||||
* Fix select current line not working (#2046)
|
||||
* Some fixes to global search with files outside of workspaces (#2048)
|
||||
* Use bounded channel of 1 when responding to plugin rpc requests (#2055)
|
||||
* send user HOME dir from proxy to editor (#2056)
|
||||
- Use zstd compression for tarballs.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 23 05:01:48 UTC 2023 - Soc Virnyl Estela <socvirnyl.estela@gmail.com>
|
||||
|
||||
|
@ -17,14 +17,14 @@
|
||||
|
||||
|
||||
Name: lapce
|
||||
Version: 0.2.5+git87
|
||||
Version: 0.2.6
|
||||
Release: 0
|
||||
Summary: Lightning-fast and Powerful Code Editor written in Rust
|
||||
URL: https://github.com/lapce/lapce
|
||||
License: (0BSD OR Apache-2.0 OR MIT) AND (Apache-2.0 OR MIT) AND (Apache-2.0 OR BSL-1.0) AND (Apache-2.0 OR ISC OR MIT) AND (Apache-2.0 OR MIT) AND (Apache-2.0 OR MIT OR Zlib) AND MIT AND (Artistic-2.0 OR CC0-1.0) AND BSD-2-Clause AND BSD-3-Clause AND BSL-1.0 AND CC0-1.0 AND ISC AND MIT AND (MIT OR Unlicense) AND MPL-2.0 AND MPL-2.0+ AND Zlib AND zlib-acknowledgement AND Apache-2.0
|
||||
Group: Productivity/Text/Editors
|
||||
Source0: %{name}-%{version}.tar.xz
|
||||
Source1: vendor.tar.xz
|
||||
Source0: %{name}-%{version}.tar.zst
|
||||
Source1: vendor.tar.zst
|
||||
Source2: cargo_config
|
||||
BuildRequires: c++_compiler
|
||||
BuildRequires: c_compiler
|
||||
|
3
vendor.tar.zst
Normal file
3
vendor.tar.zst
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cf8a628305d780531e45fa9e79395af3dc90d843abca0448fec84122635c7dfe
|
||||
size 98956343
|
Loading…
x
Reference in New Issue
Block a user