Compare commits
3 Commits
2846e4907b
...
29c5783a66
Author | SHA1 | Date | |
---|---|---|---|
29c5783a66 | |||
ddc75f7cd0 | |||
f976fea418 |
2
.gitignore
vendored
2
.gitignore
vendored
@ -11,6 +11,8 @@
|
||||
|
||||
# Generic Build Dir
|
||||
[Bb]uild/
|
||||
cmake-build-*/
|
||||
|
||||
# IDE/Editor config folders
|
||||
.vscode/
|
||||
.idea/
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
cmake_minimum_required(VERSION 3.16)
|
||||
|
||||
project(pineapple-pictures VERSION 1.0.0) # don't forget to update NEWS file and AppStream metadata.
|
||||
project(pineapple-pictures VERSION 1.1.0) # don't forget to update NEWS file and AppStream metadata.
|
||||
|
||||
include(GNUInstallDirs)
|
||||
include(FeatureSummary)
|
||||
|
15
NEWS
15
NEWS
@ -1,3 +1,18 @@
|
||||
Version 1.1.0
|
||||
~~~~~~~~~~~~~
|
||||
Released: 2025-07-06
|
||||
|
||||
Features:
|
||||
* New option to disable built-in close window animation
|
||||
* New option to disable gallery looping
|
||||
* Support load m3u8 as image gallery playlist
|
||||
|
||||
Miscellaneous:
|
||||
* Drop Qt 5 support
|
||||
|
||||
Contributors:
|
||||
Heimen Stoffels, albanobattistella, தமிழ்நேரம்
|
||||
|
||||
Version 1.0.0
|
||||
~~~~~~~~~~~~~
|
||||
Released: 2025-05-03
|
||||
|
@ -255,6 +255,9 @@ void MainWindow::clearGallery()
|
||||
|
||||
void MainWindow::galleryPrev()
|
||||
{
|
||||
const bool loopGallery = Settings::instance()->loopGallery();
|
||||
if (!loopGallery && m_pm->isFirstIndex()) return;
|
||||
|
||||
QModelIndex index = m_pm->previousIndex();
|
||||
if (index.isValid()) {
|
||||
m_pm->setCurrentIndex(index);
|
||||
@ -264,6 +267,9 @@ void MainWindow::galleryPrev()
|
||||
|
||||
void MainWindow::galleryNext()
|
||||
{
|
||||
const bool loopGallery = Settings::instance()->loopGallery();
|
||||
if (!loopGallery && m_pm->isLastIndex()) return;
|
||||
|
||||
QModelIndex index = m_pm->nextIndex();
|
||||
if (index.isValid()) {
|
||||
m_pm->setCurrentIndex(index);
|
||||
|
@ -230,7 +230,7 @@
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="781"/>
|
||||
<source>Failed to move file to trash</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>கோப்பை குப்பைக்கு நகர்த்துவதில் தோல்வி</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="782"/>
|
||||
@ -782,7 +782,7 @@
|
||||
<message>
|
||||
<location filename="../settingsdialog.cpp" line="92"/>
|
||||
<source>Windowed</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>சாளரம்</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settingsdialog.cpp" line="96"/>
|
||||
@ -816,7 +816,7 @@
|
||||
<message>
|
||||
<location filename="../settingsdialog.cpp" line="123"/>
|
||||
<source>Use built-in close window animation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>உள்ளமைக்கப்பட்ட நெருக்கமான சாளர அனிமேஷனைப் பயன்படுத்தவும்</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settingsdialog.cpp" line="124"/>
|
||||
@ -826,7 +826,7 @@
|
||||
<message>
|
||||
<location filename="../settingsdialog.cpp" line="125"/>
|
||||
<source>Loop the loaded gallery</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>ஏற்றப்பட்ட கேலரியை சுற்றுங்கள்</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settingsdialog.cpp" line="126"/>
|
||||
|
@ -80,6 +80,22 @@
|
||||
</screenshot>
|
||||
</screenshots>
|
||||
<releases>
|
||||
<release type="stable" version="1.1.0" date="2025-07-06T00:00:00Z">
|
||||
<description>
|
||||
<p>This release adds the following features:</p>
|
||||
<ul>
|
||||
<li>New option to disable built-in close window animation</li>
|
||||
<li>New option to disable gallery looping</li>
|
||||
<li>Support load m3u8 as image gallery playlist</li>
|
||||
</ul>
|
||||
<p>This release includes the following change:</p>
|
||||
<ul>
|
||||
<li>Drop Qt 5 support</li>
|
||||
</ul>
|
||||
<p>With contributions from:</p>
|
||||
<p>Heimen Stoffels, albanobattistella, தமிழ்நேரம்</p>
|
||||
</description>
|
||||
</release>
|
||||
<release type="stable" version="1.0.0" date="2025-05-03T00:00:00Z">
|
||||
<description>
|
||||
<p>This release adds the following features:</p>
|
||||
@ -87,7 +103,7 @@
|
||||
<li>Support enforces windowed mode on start-up</li>
|
||||
<li>Reload image automatically when current image gets updated</li>
|
||||
</ul>
|
||||
<p>This release fixes the following bugs:</p>
|
||||
<p>This release fixes the following bug:</p>
|
||||
<ul>
|
||||
<li>Display correct text language on macOS</li>
|
||||
</ul>
|
||||
|
Reference in New Issue
Block a user