Skip to content

Commit f647b9e

Browse files
ephemeral
1 parent 96ab9da commit f647b9e

File tree

5 files changed

+6
-3
lines changed

5 files changed

+6
-3
lines changed

assets/res/background3.jpg

-33.7 KB
Binary file not shown.

assets/res/background4.jpg

29.4 KB
Loading

lib/src/beginning/utilities/constants.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ Map<String, String> changelogs = {
5151
"FORTRESS - 2.2.0":
5252
"• Biggest update ever — literally, app is almost thrice the size it used to be.\n• Add ringtone/crossfade/trim.\n• New search UI.\n• New now playing design.\n• Wider lyrics support.\n• Progress bar in mini-playing.\n• Performance improvements.\n• Minor UI changes.\n• Accurate artworks for songs.\n• Support editing songs for all android versions.\n• Smoother seekbar.",
5353
"PERSEUS - 2.3.0":
54-
"• Upstream everything.\n• Fix crashes during loading.\n• Sort music in albums with date."
54+
"• Upstream everything.\n• Fix crashes during loading.\n• Sort music in albums with date.",
55+
"EPHEMERAL - 2.4.0":
56+
"• Add sorting option.\n• Fix add-to-queue bug in mansion.\n• Upstream everything."
5557
};
5658

5759
/// Theme data of entire app

lib/src/beginning/utilities/init.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ import 'has_network.dart';
2121

2222
cacheImages() async {
2323
applicationFileDirectory = await getApplicationDocumentsDirectory();
24-
ByteData bytes = await rootBundle.load('assets/res/background3.jpg');
24+
// next update -> https://www.pexels.com/photo/white-and-black-fur-textile-1793273/
25+
ByteData bytes = await rootBundle.load('assets/res/background4.jpg');
2526
art = bytes.buffer.asUint8List();
2627
defaultArt = art;
2728
if (!await File("${applicationFileDirectory.path}/artworks/null.jpeg")

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
1414
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
1515
# Read more about iOS versioning at
1616
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
17-
version: 2.3.0+13
17+
version: 2.4.0+14
1818

1919
environment:
2020
sdk: '>=2.12.0 <3.0.0'

0 commit comments

Comments
 (0)