Skip to content

Commit

Permalink
0.0.14 Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Puzzak committed Dec 18, 2023
1 parent 6b05ed8 commit b079009
Show file tree
Hide file tree
Showing 15 changed files with 238 additions and 216 deletions.
24 changes: 16 additions & 8 deletions .idea/libraries/Dart_Packages.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 13 additions & 13 deletions .idea/libraries/Flutter_Plugins.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## Update 0.0.14 [14] (OBT)
#### Miscellaneous
- Optimised [Creators] page in Settings
#### Fixes
- Fixed issue that notification icon resolution caused app to crash
#### Known Issues
- Sometimes notification icon renders as blank square \****sigh***\*

## Update 0.0.13 [13] (OBT)
#### Player
- You can now enable & disable shuffle
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
72 changes: 72 additions & 0 deletions monstercatplayer/assets/data/authors.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
{
"Authors":[
{
"Name": "Puzzak",
"Rank": "Main",
"Role": "Developer",
"Avatar": "assets/puzzak_av.jpg",
"Links": [
{
"Title": "Threads (DevBlog)",
"Link": "https://threads.net/@puzzaks"
},
{
"Title": "GitHub (Source Code)",
"Link": "https://github.com/Puzzak"
},
{
"Title": "Website",
"Link": "https://puzzak.page"
},
{
"Title": "Play Store",
"Link": "https://play.google.com/store/apps/dev?id=8304874346039659820"
},
{
"Title": "Telegram",
"Link": "https://t.me/Puzzaks"
},
{
"Title": "LinkedIn",
"Link": "https://linkedin.com/in/puzzak/"
},
{
"Title": "Twitter/X",
"Link": "https://x.com/puzzaks"
},
{
"Title": "Reddit",
"Link": "https://reddit.com/u/Puzzak"
},
{
"Title": "YouTube",
"Link": "https://youtube.com/@puzzak"
}
]
},
{
"Name": "DarkPlayer",
"Rank": "Lead",
"Role": "Designer",
"Avatar": "assets/darkplayer_av.png",
"Links": [
{
"Title": "Twitter/X",
"Link": "https://x.com/dvrkplayer"
},
{
"Title": "Telegram",
"Link": "https://t.me/dvrkplayer"
},
{
"Title": "GitHub",
"Link": "https://github.com/DarkPlayerr"
},
{
"Title": "Figma",
"Link": "https://figma.com/@dvrkplayer"
}
]
}
]
}
14 changes: 0 additions & 14 deletions monstercatplayer/lib/generated/assets.dart

This file was deleted.

16 changes: 13 additions & 3 deletions monstercatplayer/lib/library.dart
Original file line number Diff line number Diff line change
Expand Up @@ -281,9 +281,19 @@ class libraryPageState extends State<libraryPage> {
void initState() {
getUser().then((value) {
myLibraryId = value["User"]["MyLibrary"];
getString("albumArtPreviewRes").then((value) {
appSettings["albumArtPreviewRes"] = value;
super.initState();
checkKey("albumArtPreviewRes").then((value){
if(value) {
getString("albumArtPreviewRes").then((value) {
if(value == Null){
appSettings["albumArtPreviewRes"] = "256";
}else {
appSettings["albumArtPreviewRes"] = value;
}
super.initState();
});
}else{
super.initState();
}
});
});
}
Expand Down
3 changes: 2 additions & 1 deletion monstercatplayer/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ class MyAppState extends State<MyApp> with SingleTickerProviderStateMixin {
androidNotificationChannelName: 'Audio playback',
androidNotificationOngoing: false,
notificationColor: Colors.teal,
androidNotificationIcon: 'drawable/catlogo',
androidNotificationIcon: 'drawable/ic_icon',

androidShowNotificationBadge: false,
);
tabController = TabController(length: 3, vsync: this);
Expand Down
1 change: 1 addition & 0 deletions monstercatplayer/lib/search.dart
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ class searchPageState extends State<searchPage> {
}

Future addMusic(int pos) async {
print(_isLoading);
if (!_isLoading) {
setState(() {
_isLoading = true;
Expand Down
Loading

0 comments on commit b079009

Please # to comment.