Version bump to 3.7-1
This commit is contained in:
parent
d04ec4ed19
commit
cef5e3b76a
6 changed files with 52 additions and 6 deletions
|
@ -15,8 +15,8 @@ TARGET = harbour-batterybuddy
|
|||
CONFIG += console sailfishapp sailfishapp_i18n
|
||||
|
||||
# Keep this in sync with "service.pro"
|
||||
VER = 3.6
|
||||
REL = 3
|
||||
VER = 3.7
|
||||
REL = 1
|
||||
|
||||
VERSION = $${VER}-$${REL}
|
||||
$$system(bash update-spec-version.sh $$TARGET $$VER $$REL)
|
||||
|
|
|
@ -1,3 +1,15 @@
|
|||
* Wed Dec 30 2020 Matti Viljanen (direc85) <matti.viljanen@kapsi.fi> 3.7-1
|
||||
- Respect ringtone volume and silent mode
|
||||
- Fix services' startup and install/uninstall
|
||||
- Use Nemo Notification for notifications
|
||||
- Use QMediaPlayer for notification sounds
|
||||
- Drop lipstick-qt5-tools dependency
|
||||
- Implement alerting once/interval/never
|
||||
- Remove redundant options accordingly
|
||||
- Improve alert logic (again)
|
||||
- Update Finnish translation
|
||||
- Support SFOS 3.4 (defaultuser)
|
||||
|
||||
* Mon Nov 16 2020 Matti Viljanen (direc85) <matti.viljanen@kapsi.fi> 3.6-3
|
||||
- Add Polish translation (thanks, atlochowski)
|
||||
- Updated Chinese translation (thanks, dashinfantry)
|
||||
|
|
|
@ -11,8 +11,8 @@ Name: harbour-batterybuddy
|
|||
# Change the version and release strings in .pro file only!
|
||||
|
||||
Summary: Battery Buddy
|
||||
Version: 3.6
|
||||
Release: 3
|
||||
Version: 3.7
|
||||
Release: 1
|
||||
Group: Qt/Qt
|
||||
License: GPLv3
|
||||
URL: http://example.org/
|
||||
|
|
|
@ -7,8 +7,8 @@ QT = core network dbus multimedia dbus
|
|||
PKGCONFIG += nemonotifications-qt5
|
||||
|
||||
# Keep this in sync with "application.pro"
|
||||
VER = 3.6
|
||||
REL = 3
|
||||
VER = 3.7
|
||||
REL = 1
|
||||
|
||||
VERSION = $${VER}-$${REL}
|
||||
DEFINES += APP_VERSION=\"\\\"$$VERSION\\\"\"
|
||||
|
|
|
@ -1,3 +1,20 @@
|
|||
/**
|
||||
* Battery Buddy, a Sailfish application to prolong battery lifetime
|
||||
*
|
||||
* Copyright (C) 2019-2020 Matti Viljanen
|
||||
*
|
||||
* Battery Buddy is free software: you can redistribute it and/or modify it under the terms of the
|
||||
* GNU General Public License as published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* Battery Buddy is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
||||
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details. You should have received a copy of the GNU
|
||||
* General Public License along with Battery Buddy. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* Author: Matti Viljanen
|
||||
*/
|
||||
#include "profile.h"
|
||||
|
||||
Profile::Profile(QObject *parent) : QObject(parent)
|
||||
|
|
|
@ -1,3 +1,20 @@
|
|||
/**
|
||||
* Battery Buddy, a Sailfish application to prolong battery lifetime
|
||||
*
|
||||
* Copyright (C) 2019-2020 Matti Viljanen
|
||||
*
|
||||
* Battery Buddy is free software: you can redistribute it and/or modify it under the terms of the
|
||||
* GNU General Public License as published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* Battery Buddy is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
||||
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details. You should have received a copy of the GNU
|
||||
* General Public License along with Battery Buddy. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* Author: Matti Viljanen
|
||||
*/
|
||||
#ifndef PROFILE_H
|
||||
#define PROFILE_H
|
||||
|
||||
|
|
Loading…
Reference in a new issue