Skip to content

Commit

Permalink
changelog update for 2.14 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mkiol committed Feb 11, 2023
1 parent 2a6421a commit d5a710a
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ UPnP/DLNA client for Sailfish OS
- Remote control (Play, Pause, Next, Prev, Seek, Volume up/down)
- Playing local content (Music, Video, Images) on Media Renderer devices
- Playing gPodder's podcasts
- Playing remote content (e.g. internet radio, SomaFM channels, Icecast streams, FOSDEM videos, Bandcamp, SoundCloud, TuneIn stations, YouTube Music)
- Playing items from Media Servers on Media Renderer devices
- Streaming of local Microphone to Media Renderer devices
- Playing remote content (e.g. internet radio, SomaFM channels, Icecast streams, FOSDEM videos, Bandcamp, SoundCloud, TuneIn stations, YouTube Music, radio.net)
- Playing items from UPnP Media Servers
- Streaming local camera or/and microphone
- Streaming of audio playback of any local application
- Screen casting
- Recording of music tracks (including tracks in Icecast streams)
Expand Down
57 changes: 54 additions & 3 deletions sfos/qml/ChangelogPage.qml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (C) 2017-2022 Michal Kosciesza <[email protected]>
/* Copyright (C) 2017-2023 Michal Kosciesza <[email protected]>
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
Expand Down Expand Up @@ -28,6 +28,57 @@ Page {
title: qsTr("Changes")
}

SectionHeader {
text: qsTr("Version %1").arg("2.14")
}

LogItem {
title: "Camera capture"
description: "New capture mode. You can cast your front and back camera to UPnP device."
}

LogItem {
title: "Improved screen capture" + (settings.isHarbour() ? " (disabled in Harbour version)" : "")
description: "Finally screen capture is usable. Casting framerate is rather low (up to 5 fps) but stable."
}

LogItem {
title: "Radio.net"
description: "Radio.net is a free internet radio catalogue. " +
"You can browse, search add radio stations from radio.net to play queue."
}

LogItem {
title: "HTTP Live Streaming"
description: "HLS URLs are supported. Jupii is able to extract audio stream from HLS and redirect it to UPnP device."
}

LogItem {
title: "YouTube live channels" + (settings.isHarbour() ? " (disabled in Harbour version)" : "")
description: "Live channels from YouTube are supported and can be added to play queue. " +
"YouTube live channel is converted to audio stream and redirected to UPnP device."
}

LogItem {
title: "FOSDEM 2023"
description: "Video feed for newest FOSDEM converence is enabled."
}

LogItem {
title: "Removing/saving multiple play queue items at once"
description: "UI improvement. You can select individual play queue items and save them " +
"in a playlist or remove them at once."
}

LogItem {
title: "Starting/stopping MPD and upmpdcli" + (settings.isHarbour() ? " (disabled in Harbour version)" : "")
description: "Standalone Jupii does not support local playback right now. " +
"With MPD and upmpdcli (both are available in OpenRepos) " +
"you can use Jupii as local audio player. " +
"When MPD and upmpdcli are installed they will be started " +
"together with Jupii and stopped on exit."
}

SectionHeader {
text: qsTr("Version %1").arg("2.13")
}
Expand Down Expand Up @@ -305,7 +356,7 @@ Page {
"integration with other apps (e.g. Microtube)."
}

SectionHeader {
/*SectionHeader {
text: qsTr("Version %1").arg("2.6")
}
Expand Down Expand Up @@ -361,7 +412,7 @@ Page {
"for providing updated translations."
}
/*SectionHeader {
SectionHeader {
text: qsTr("Version %1").arg("2.5")
}
Expand Down

0 comments on commit d5a710a

Please sign in to comment.