Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ include(InstallRequiredSystemLibraries)
### The current version number
set(LIRI_VERSION_MAJOR 3)
set(LIRI_VERSION_MINOR 1)
set(LIRI_VERSION_PATCH 5)
set(LIRI_VERSION_PATCH 6)
set(LIRI_VERSION ${LIRI_VERSION_MAJOR}.${LIRI_VERSION_MINOR}.${LIRI_VERSION_PATCH})

set(LIRI_EXECUTABLE_NAME Li-ri)
Expand Down
2 changes: 1 addition & 1 deletion INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ To create a package, use the *package* target from cmake invocation: `cmake --bu
Releasing:
==========
Update NEWS.yaml to add a new version and the changelog.
Then, run `./tools/create_release.sh -v 3.1.5` to update all the files necesary for the release.
Then, run `./tools/create_release.sh -v 3.1.5` to update all the files necessary for the release.
7 changes: 7 additions & 0 deletions NEWS.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
---
Version: 3.1.6
Date: 2025-12-24
Description:
- Fix Haiku build
- Add controller support
- Add support for android tv (not tested)
---
Version: 3.1.5
Date: 2024-05-29
Description:
Expand Down
4 changes: 2 additions & 2 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.liri.app"
android:versionCode="30105"
android:versionName="3.1.5"
android:versionCode="30106"
android:versionName="3.1.6"
android:installLocation="auto">

<application
Expand Down
3 changes: 3 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/30106.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Fix Haiku build
Add controller support
Add support for android tv (not tested)
25 changes: 21 additions & 4 deletions io.github.petitlapin.Li-ri.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,15 @@
</screenshot>
</screenshots>
<releases>
<release type="stable" version="3.1.6" date="2025-12-24T00:00:00Z">
<description>
<ul>
<li>Fix Haiku build</li>
<li>Add controller support</li>
<li>Add support for android tv (not tested)</li>
</ul>
</description>
</release>
<release type="stable" version="3.1.5" date="2024-05-29T00:00:00Z">
<description>
<ul>
Expand All @@ -58,7 +67,9 @@
</release>
<release type="stable" version="3.1.3" date="2024-01-13T00:00:00Z">
<description>
<p>Fix appdata linter errors</p>
<ul>
<li>Fix appdata linter errors</li>
</ul>
</description>
</release>
<release type="stable" version="3.1.2" date="2024-01-12T00:00:00Z">
Expand All @@ -73,7 +84,9 @@
</release>
<release type="stable" version="3.1.1" date="2024-01-05T00:00:00Z">
<description>
<p>Fix Android start (3.1.0 does not work at all on Android)</p>
<ul>
<li>Fix Android start (3.1.0 does not work at all on Android)</li>
</ul>
</description>
</release>
<release type="stable" version="3.1.0" date="2024-01-01T00:00:00Z">
Expand Down Expand Up @@ -169,12 +182,16 @@
</release>
<release type="stable" version="1.0.0" date="2006-06-23T00:00:00Z">
<description>
<p>First version for linux and windows</p>
<ul>
<li>First version for linux and windows</li>
</ul>
</description>
</release>
<release type="stable" version="0.0.1" date="2006-06-18T00:00:00Z">
<description>
<p>First automake / autoconf</p>
<ul>
<li>First automake / autoconf</li>
</ul>
</description>
</release>
</releases>
Expand Down
Loading