diff --git a/assets/res/background3.jpg b/assets/res/background3.jpg deleted file mode 100644 index 12738e2..0000000 Binary files a/assets/res/background3.jpg and /dev/null differ diff --git a/assets/res/background4.jpg b/assets/res/background4.jpg new file mode 100644 index 0000000..adb580d Binary files /dev/null and b/assets/res/background4.jpg differ diff --git a/lib/src/beginning/utilities/constants.dart b/lib/src/beginning/utilities/constants.dart index 16aa67c..5fce349 100644 --- a/lib/src/beginning/utilities/constants.dart +++ b/lib/src/beginning/utilities/constants.dart @@ -51,7 +51,9 @@ Map changelogs = { "FORTRESS - 2.2.0": "• 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.", "PERSEUS - 2.3.0": - "• Upstream everything.\n• Fix crashes during loading.\n• Sort music in albums with date." + "• Upstream everything.\n• Fix crashes during loading.\n• Sort music in albums with date.", + "EPHEMERAL - 2.4.0": + "• Add sorting option.\n• Fix add-to-queue bug in mansion.\n• Upstream everything." }; /// Theme data of entire app diff --git a/lib/src/beginning/utilities/init.dart b/lib/src/beginning/utilities/init.dart index e891c61..5726880 100644 --- a/lib/src/beginning/utilities/init.dart +++ b/lib/src/beginning/utilities/init.dart @@ -21,7 +21,8 @@ import 'has_network.dart'; cacheImages() async { applicationFileDirectory = await getApplicationDocumentsDirectory(); - ByteData bytes = await rootBundle.load('assets/res/background3.jpg'); + // next update -> https://www.pexels.com/photo/white-and-black-fur-textile-1793273/ + ByteData bytes = await rootBundle.load('assets/res/background4.jpg'); art = bytes.buffer.asUint8List(); defaultArt = art; if (!await File("${applicationFileDirectory.path}/artworks/null.jpeg") diff --git a/pubspec.yaml b/pubspec.yaml index 80d3519..21c8423 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -14,7 +14,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. # Read more about iOS versioning at # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -version: 2.3.0+13 +version: 2.4.0+14 environment: sdk: '>=2.12.0 <3.0.0'