Release v0.5
parent
cbda9d4ddb
commit
0fd2b645f3
|
@ -16,17 +16,17 @@ The recomended option to compile this project is using Docker using the followin
|
|||
|
||||
aarch64
|
||||
```Bash
|
||||
docker run --rm --privileged -v $PWD:/share coderus/sailfishos-platform-sdk:4.5.0.16 /bin/bash -c " mkdir -p build ; cd build ; cp -r /share/* . ; mb2 -t SailfishOS-4.5.0.16-aarch64 build ; sudo cp -r RPMS/*.rpm /share/output"
|
||||
docker run --rm --privileged -v $PWD:/share coderus/sailfishos-platform-sdk:4.5.0.16 /bin/bash -c " mkdir -p build ; cd build ; cp -r /share/* . ; specify rpm/*.yaml ; mb2 -t SailfishOS-4.5.0.16-aarch64 build ; sudo cp -r RPMS/*.rpm /share/output"
|
||||
```
|
||||
|
||||
armv7
|
||||
```Bash
|
||||
docker run --rm --privileged -v $PWD:/share coderus/sailfishos-platform-sdk:4.5.0.16 /bin/bash -c " mkdir -p build ; cd build ; cp -r /share/* . ; mb2 -t SailfishOS-4.5.0.16-armv7hl build ; sudo cp -r RPMS/*.rpm /share/output"
|
||||
docker run --rm --privileged -v $PWD:/share coderus/sailfishos-platform-sdk:4.5.0.16 /bin/bash -c " mkdir -p build ; cd build ; cp -r /share/* . ; specify rpm/*.yaml ; mb2 -t SailfishOS-4.5.0.16-armv7hl build ; sudo cp -r RPMS/*.rpm /share/output"
|
||||
```
|
||||
|
||||
i486
|
||||
```Bash
|
||||
docker run --rm --privileged -v $PWD:/share coderus/sailfishos-platform-sdk:4.5.0.16 /bin/bash -c " mkdir -p build ; cd build ; cp -r /share/* . ; mb2 -t SailfishOS-4.5.0.16-i486 build ; sudo cp -r RPMS/*.rpm /share/output"
|
||||
docker run --rm --privileged -v $PWD:/share coderus/sailfishos-platform-sdk:4.5.0.16 /bin/bash -c " mkdir -p build ; cd build ; cp -r /share/* . ; specify rpm/*.yaml ; mb2 -t SailfishOS-4.5.0.16-i486 build ; sudo cp -r RPMS/*.rpm /share/output"
|
||||
```
|
||||
|
||||
The .rpm package should be in the output/ directory.
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
* Wed Mar 27 2024 kirbylife <hola@kirbylife.dev> 0.5-1
|
||||
- Modify the reader to facilitate reading on mobile screens
|
||||
- Change the deprecated SilicaWebView to the new WebView
|
||||
- Fix the Database versions issue
|
||||
- Add Spanish translation
|
||||
|
||||
* Mon Feb 27 2017 Grégory Oestreicher <greg@kamago.net> 0.4-1
|
||||
- Add an option to download only unread articles
|
||||
- Fix a bug where password (and others) were not correctly URL-encoded
|
||||
|
|
|
@ -1,72 +0,0 @@
|
|||
#
|
||||
# Do NOT Edit the Auto-generated Part!
|
||||
# Generated by: spectacle version 0.27
|
||||
#
|
||||
|
||||
Name: harbour-wallaread
|
||||
|
||||
# >> macros
|
||||
# << macros
|
||||
|
||||
%{!?qtc_qmake:%define qtc_qmake %qmake}
|
||||
%{!?qtc_qmake5:%define qtc_qmake5 %qmake5}
|
||||
%{!?qtc_make:%define qtc_make make}
|
||||
%{?qtc_builddir:%define _builddir %qtc_builddir}
|
||||
Summary: WallaRead - A Wallabag 2+ client for Sailfish OS
|
||||
Version: 0.4
|
||||
Release: 1
|
||||
Group: Qt/Qt
|
||||
License: GPL
|
||||
URL: https://github.com/goestreicher/harbour-wallaread
|
||||
Source0: %{name}-%{version}.tar.bz2
|
||||
Source100: harbour-wallaread.yaml
|
||||
Requires: sailfishsilica-qt5 >= 0.10.9
|
||||
BuildRequires: pkgconfig(sailfishapp) >= 1.0.2
|
||||
BuildRequires: pkgconfig(Qt5Core)
|
||||
BuildRequires: pkgconfig(Qt5Qml)
|
||||
BuildRequires: pkgconfig(Qt5Quick)
|
||||
BuildRequires: desktop-file-utils
|
||||
|
||||
%description
|
||||
WallaRead is a SailfishOS client for Wallabag 2 and above, supporting
|
||||
full offline reading
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q -n %{name}-%{version}
|
||||
|
||||
# >> setup
|
||||
# << setup
|
||||
|
||||
%build
|
||||
# >> build pre
|
||||
# << build pre
|
||||
|
||||
%qtc_qmake5
|
||||
|
||||
%qtc_make %{?_smp_mflags}
|
||||
|
||||
# >> build post
|
||||
# << build post
|
||||
|
||||
%install
|
||||
rm -rf %{buildroot}
|
||||
# >> install pre
|
||||
# << install pre
|
||||
%qmake5_install
|
||||
|
||||
# >> install post
|
||||
# << install post
|
||||
|
||||
desktop-file-install --delete-original \
|
||||
--dir %{buildroot}%{_datadir}/applications \
|
||||
%{buildroot}%{_datadir}/applications/*.desktop
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%{_bindir}
|
||||
%{_datadir}/%{name}
|
||||
%{_datadir}/applications/%{name}.desktop
|
||||
%{_datadir}/icons/hicolor/*/apps/%{name}.png
|
||||
# >> files
|
||||
# << files
|
|
@ -1,11 +1,11 @@
|
|||
Name: harbour-wallaread
|
||||
Summary: WallaRead - A Wallabag 2+ client for Sailfish OS
|
||||
Version: 0.4
|
||||
Version: 0.5
|
||||
Release: 1
|
||||
# The contents of the Group field should be one of the groups listed here:
|
||||
# http://gitorious.org/meego-developer-tools/spectacle/blobs/master/data/GROUPS
|
||||
Group: Qt/Qt
|
||||
URL: https://github.com/goestreicher/harbour-wallaread
|
||||
URL: https://codeberg.org/kirbylife/harbour-wallaread
|
||||
License: GPL
|
||||
# This must be generated before uploading a package to a remote build service.
|
||||
# Usually this line does not need to be modified.
|
||||
|
|
Loading…
Reference in New Issue