Skip to content

Commit 53a5741

Browse files
committed
chore: update version number to 1.0.16
1 parent 5a6afed commit 53a5741

5 files changed

Lines changed: 9 additions & 15 deletions

File tree

generate_deb.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# ---------- CONFIG ----------
44
APP_NAME="ParticleMusic" # Executable name
5-
APP_VERSION="1.0.15" # Debian version
5+
APP_VERSION="1.0.16" # Debian version
66
MAINTAINER="AfalpHy"
77
EXECUTABLE="build/linux/x64/release/bundle/$APP_NAME"
88
DATA="build/linux/x64/release/bundle/data"

lib/common.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import 'package:particle_music/my_audio_metadata.dart';
1515
import 'package:particle_music/playlists.dart';
1616
import 'package:particle_music/setting_manager.dart';
1717

18-
const String versionNumber = '1.0.15';
18+
const String versionNumber = '1.0.16';
1919

2020
// ===================================== App =====================================
2121

lib/common_widgets/settings_list.dart

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,7 @@ class SettingsList extends StatelessWidget {
6161
isMobile
6262
? ListTile(
6363
leading: ImageIcon(infoImage, color: iconColor, size: 30),
64-
title: Text(
65-
l10n.openSourceLicense,
66-
style: TextStyle(fontSize: 15),
67-
),
64+
title: Text(l10n.openSourceLicense),
6865
onTap: () {
6966
Navigator.of(context, rootNavigator: true).push(
7067
MaterialPageRoute(
@@ -93,10 +90,7 @@ class SettingsList extends StatelessWidget {
9390
: paddingForDesktop(
9491
ListTile(
9592
leading: ImageIcon(infoImage, color: iconColor),
96-
title: Text(
97-
l10n.openSourceLicense,
98-
style: TextStyle(fontSize: 15),
99-
),
93+
title: Text(l10n.openSourceLicense),
10094
onTap: () {
10195
panelManager.pushPanel('licenses');
10296
},

lib/mobile/pages/selectable_song_list_page.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ class SelectableSongListPageState extends State<SelectableSongListPage> {
360360

361361
Text(
362362
l10n.playNext,
363-
style: TextStyle(color: color, fontSize: 13),
363+
style: TextStyle(color: color, fontSize: 12),
364364
),
365365
],
366366
),
@@ -399,7 +399,7 @@ class SelectableSongListPageState extends State<SelectableSongListPage> {
399399

400400
Text(
401401
l10n.add2Queue,
402-
style: TextStyle(color: color, fontSize: 13),
402+
style: TextStyle(color: color, fontSize: 12),
403403
),
404404
],
405405
),
@@ -427,7 +427,7 @@ class SelectableSongListPageState extends State<SelectableSongListPage> {
427427

428428
Text(
429429
l10n.add2Playlist,
430-
style: TextStyle(color: color, fontSize: 13),
430+
style: TextStyle(color: color, fontSize: 12),
431431
),
432432
],
433433
),
@@ -471,7 +471,7 @@ class SelectableSongListPageState extends State<SelectableSongListPage> {
471471

472472
Text(
473473
l10n.delete,
474-
style: TextStyle(color: color, fontSize: 13),
474+
style: TextStyle(color: color, fontSize: 12),
475475
),
476476
],
477477
),

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
1616
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
1717
# In Windows, build-name is used as the major, minor, and patch parts
1818
# of the product and file versions while build-number is used as the build suffix.
19-
version: 1.0.15+0
19+
version: 1.0.16+0
2020

2121
environment:
2222
sdk: ^3.11.0

0 commit comments

Comments
 (0)