Compare commits
6 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 7c17dee17b | |||
| dee1e9f2c3 | |||
| 2dbef2d8c2 | |||
| 0d6878784c | |||
| 88781b99b4 | |||
| 83c26114cf |
1
_service
1
_service
@@ -5,5 +5,4 @@
|
|||||||
<param name="compression">zst</param>
|
<param name="compression">zst</param>
|
||||||
<param name="update">true</param>
|
<param name="update">true</param>
|
||||||
</service>
|
</service>
|
||||||
<service name="cargo_audit" mode="manual"/>
|
|
||||||
</services>
|
</services>
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:66f27a53b09acd13dec681a9cd8c0805b7e6bf5a3482fd7a22e66a9a39237138
|
|
||||||
size 152390
|
|
||||||
3
qrtool-0.13.1.tar.gz
Normal file
3
qrtool-0.13.1.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:3271127e2be7ef3e51cd22648b5f6168e1da00d19cd4b35c1b752029be08d41a
|
||||||
|
size 233213
|
||||||
@@ -1,4 +1,32 @@
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 30 21:46:36 UTC 2025 - Muhammad Akbar Yanuar Mantari <mantarimay@pm.me>
|
||||||
|
|
||||||
|
- Update to version 0.13.1
|
||||||
|
* Add more archive formats for releases
|
||||||
|
* Add support for encoding rMQR code
|
||||||
|
* Add EPS rendering support
|
||||||
|
* Remove --symbol-version from the required options of --variant
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jun 12 18:39:24 UTC 2025 - Muhammad Akbar Yanuar Mantari <mantarimay@pm.me>
|
||||||
|
|
||||||
|
- Update to version 0.12.0
|
||||||
|
* Restore demo animation
|
||||||
|
* Change the license for documents and assets to CC BY 4.0
|
||||||
|
* Replace --generate-completion with completion subcommand
|
||||||
|
* Remove help text for after auto-generated --help
|
||||||
|
* Make the message for --version the same as the message for -V
|
||||||
|
* Allow partial matches of subcommand names
|
||||||
|
- Removed cargo_audit from _service due that contains vendor now
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 29 22:19:53 UTC 2024 - Muhammad Akbar Yanuar Mantari <mantarimay@pm.me>
|
||||||
|
|
||||||
|
- Update to version 0.11.6
|
||||||
|
* Add Supports decoding from XBM
|
||||||
|
* Fixed fall-back to decoding an inverted image
|
||||||
|
|
||||||
|
------------------------------------------------------------------
|
||||||
Sun Sep 22 19:12:07 UTC 2024 - Muhammad Akbar Yanuar Mantari <mantarimay@pm.me>
|
Sun Sep 22 19:12:07 UTC 2024 - Muhammad Akbar Yanuar Mantari <mantarimay@pm.me>
|
||||||
|
|
||||||
- Update to version 0.11.5
|
- Update to version 0.11.5
|
||||||
|
|||||||
21
qrtool.spec
21
qrtool.spec
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package qrtool
|
# spec file for package qrtool
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 mantarimay
|
# Copyright (c) 2025 mantarimay
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -22,7 +22,7 @@
|
|||||||
%bcond_without test
|
%bcond_without test
|
||||||
%endif
|
%endif
|
||||||
Name: qrtool
|
Name: qrtool
|
||||||
Version: 0.11.5
|
Version: 0.13.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: An utility for encoding or decoding QR code
|
Summary: An utility for encoding or decoding QR code
|
||||||
License: MIT AND CC-BY-4.0 AND Apache-2.0
|
License: MIT AND CC-BY-4.0 AND Apache-2.0
|
||||||
@@ -42,15 +42,22 @@ qrtool is a command-line utility for encoding or decoding QR code.
|
|||||||
%build
|
%build
|
||||||
%{cargo_build}
|
%{cargo_build}
|
||||||
|
|
||||||
%install
|
asciidoctor -b manpage "docs/man/man1/%{name}.1.adoc"
|
||||||
install -Dm755 target/release/%{name} -t %{buildroot}%{_bindir}
|
asciidoctor -b manpage "docs/man/man1/%{name}-encode.1.adoc"
|
||||||
install -Dm644 target/release/build/qrtool*/out/*.? -t %{buildroot}%{_mandir}/man1
|
asciidoctor -b manpage "docs/man/man1/%{name}-decode.1.adoc"
|
||||||
|
asciidoctor -b manpage "docs/man/man1/%{name}-completion.1.adoc"
|
||||||
|
|
||||||
comp="target/release/%{name} --generate-completion"
|
comp="target/release/%{name} completion"
|
||||||
$comp bash >"target/release/%{name}.bash"
|
$comp bash >"target/release/%{name}.bash"
|
||||||
$comp fish >"target/release/%{name}.fish"
|
$comp fish >"target/release/%{name}.fish"
|
||||||
$comp zsh >"target/release/_%{name}"
|
$comp zsh >"target/release/_%{name}"
|
||||||
|
|
||||||
|
%install
|
||||||
|
install -Dm755 target/release/%{name} -t %{buildroot}%{_bindir}
|
||||||
|
|
||||||
|
install -Dm644 docs/man/man1/%{name}*.1 -t \
|
||||||
|
%{buildroot}%{_mandir}/man1/
|
||||||
|
|
||||||
install -Dm644 target/release/%{name}.bash -t \
|
install -Dm644 target/release/%{name}.bash -t \
|
||||||
%{buildroot}%{_datadir}/bash-completion/completions
|
%{buildroot}%{_datadir}/bash-completion/completions
|
||||||
install -Dm644 target/release/%{name}.fish -t \
|
install -Dm644 target/release/%{name}.fish -t \
|
||||||
@@ -64,7 +71,7 @@ install -Dm644 target/release/_%{name} -t \
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%license LICENSE*
|
%license LICENSE-*
|
||||||
%doc README* CHANGELOG.adoc
|
%doc README* CHANGELOG.adoc
|
||||||
%{_bindir}/%{name}
|
%{_bindir}/%{name}
|
||||||
%{_mandir}/man1/qrtool*
|
%{_mandir}/man1/qrtool*
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:15e6c05c8c5a575f1f41d76030408b8aef007d572a63067edea83572922e1d84
|
oid sha256:ccb69e86685339a392378c0ec92c5b9eb55cdffe5c869e115683f741c1337844
|
||||||
size 20374660
|
size 18827774
|
||||||
|
|||||||
Reference in New Issue
Block a user