Skip to content

Commit

Permalink
ephemeral
Browse files Browse the repository at this point in the history
  • Loading branch information
shaan-mephobic committed Apr 16, 2022
1 parent 96ab9da commit f647b9e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 3 deletions.
Binary file removed assets/res/background3.jpg
Binary file not shown.
Binary file added assets/res/background4.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion lib/src/beginning/utilities/constants.dart
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ Map<String, String> 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
Expand Down
3 changes: 2 additions & 1 deletion lib/src/beginning/utilities/init.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit f647b9e

Please sign in to comment.