RPMSpec · 2213 bytes Raw Blame History
1 Name: fackr
2 Version: 1.2.0
3 Release: 1%{?dist}
4 Summary: Terminal text editor written in Rust
5
6 License: MIT
7 URL: https://github.com/tenseleyFlow/fackr
8
9 %description
10 fackr is a terminal text editor written in Rust, a reimplementation of
11 facsimile with VSCode-style keybindings. It provides a familiar editing
12 experience for developers who appreciate the power of keyboard shortcuts
13 combined with the efficiency of terminal-based workflows.
14
15 Features:
16 - VSCode-style keybindings (Ctrl+C/V/X, Ctrl+S, Ctrl+D, etc.)
17 - Rope-based text buffer for efficient editing
18 - Cross-platform clipboard support
19 - Fast and lightweight
20
21 %prep
22 # Pre-built from source
23
24 %build
25 # Pre-built from source
26
27 %install
28 mkdir -p %{buildroot}%{_bindir}
29 install -Dm755 %{_sourcedir}/fackr %{buildroot}%{_bindir}/fackr
30
31 %files
32 %{_bindir}/fackr
33
34 %changelog
35 * Tue Jan 28 2026 mfw <espadonne@outlook.com> - 1.2.0-1
36 - Version bump to 1.2.0
37 - Bug fixes and improvements
38
39 * Tue Jan 07 2025 mfw <espadonne@outlook.com> - 1.1.2-1
40 - Version bump to 1.1.2
41
42 * Wed Dec 11 2024 mfw <espadon@outlook.com> - 0.9.6-1
43 - Fix command palette char input
44 - Create new file from CLI
45
46 * Wed Dec 11 2024 mfw <espadon@outlook.com> - 0.9.5-1
47 - Command palette (Ctrl+P) with fuzzy search
48
49 * Wed Dec 11 2024 mfw <espadon@outlook.com> - 0.9.4-1
50 - Ctrl+D scrolls viewport to show newly added cursor
51
52 * Tue Dec 10 2024 mfw <espadon@outlook.com> - 0.9.0-1
53 - Add Ctrl+/ toggle line comment
54 - Performance optimizations
55
56 * Mon Dec 09 2024 mfw <espadon@outlook.com> - 0.8.0-1
57 - Add Ctrl+G/F5 goto line with line:col syntax
58 - Add Ctrl+O fortress file browser
59 - Fix multi-cursor same-line edits
60
61 * Mon Dec 09 2024 mfw <espadon@outlook.com> - 0.7.0-1
62 - Add Ctrl+F/Ctrl+R find and replace with regex support
63 - Fuzzy filter improvements and references panel visual fix
64
65 * Sun Dec 08 2024 mfw <espadon@outlook.com> - 0.6.0-1
66 - Add Shift+F12 references panel with filtering
67 - Syntax highlighting for 30+ languages
68 - LSP support with auto-completion and diagnostics
69
70 * Sat Dec 07 2024 mfw <espadon@outlook.com> - 0.4.0-1
71 - Initial RPM release of fackr
72 - Terminal text editor written in Rust
73 - VSCode-style keybindings
74 - Rope-based text buffer
75