Skip to content

Commit

Permalink
2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Damgam committed Apr 17, 2024
1 parent 87bebfa commit 4e46006
Show file tree
Hide file tree
Showing 23 changed files with 317 additions and 285 deletions.
19 changes: 19 additions & 0 deletions Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
2.0
A LOT OF THINGS HAVE CHANGED. FRESH INSTALL IS VERY RECOMMENDED.

- Complete rework of volume effects. Now instead of each effect fighting for which gets the lowest volume, they stack up. This means that for example, driving slow near opponents, will give you lower music volume than driving fast near opponents,
- Intensity level has been removed, to simplify the process of including music to the mod,
- LowIntensity and HighIntensity playlists are now replaced with a new, Race playlist,
- Waiting folder got renamed to Idle,
- FinishLose folder got renamed to Finish. It is no longer necessary to add both Finish and FinishPodium. If FinishPodium is empty, it will always pick Finish folder music instead.
- Added new playlist - Other,
- From now on, the mod won't fail if you leave some folders empty. The only folder that you NEED to fill with music, is the Other folder. Everything else is optional,
- Options menu now reacts to which folders have been left empty, and doesn't show toggle options for those in Sessions tab,
- Replaced Now Playing widget font with OPTIEdgarBold,
- Now Plalying widget now only shows for the first 10 seconds of the track by default
- Track switch on crashing out has been turned off by default
- Toggling music on and off properly saves between sessions now.

If you find any bugs/problems with this release, please report them to me in the mod discussion thread on Overtake.gg, or create an issue ticket on GitHub.
And remember, for everything to work as intended, fresh install is very recommended. A lot of defaults have changed, some options got removed or shifted around.

1.3.1
- Some bugfixes for new features added in 1.3

Expand Down
561 changes: 283 additions & 278 deletions DynamicMusicPlayer/DynamicMusicPlayer.lua

Large diffs are not rendered by default.

Binary file not shown.
Binary file removed DynamicMusicPlayer/Fonts/PoppinsMedium.ttf
Binary file not shown.
Binary file removed DynamicMusicPlayer/Fonts/PoppinsRegular.ttf
Binary file not shown.
12 changes: 6 additions & 6 deletions DynamicMusicPlayer/Music/ExternalMusicPaths.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
-- If some playlist is filled with stuff from this list, it no longer needs to have any files in the apps music folders, so you can safely delete the screaming placeholders

FoldersList = {
Waiting = {
Idle = {
-- "X:/folder/folder/anotherfolder/theresmusicinthisfolder", -- example
},
Practice = {
Expand All @@ -16,21 +16,21 @@ FoldersList = {
Qualification = {
-- "X:/folder/folder/anotherfolder/theresmusicinthisfolder", -- example
},
LowIntensity = {
-- "X:/folder/folder/anotherfolder/theresmusicinthisfolder", -- example
},
HighIntensity = {
Race = {
-- "X:/folder/folder/anotherfolder/theresmusicinthisfolder", -- example
},
Replay = {
-- "X:/folder/folder/anotherfolder/theresmusicinthisfolder", -- example
},
FinishLose = {
Finish = {
-- "X:/folder/folder/anotherfolder/theresmusicinthisfolder", -- example
},
FinishPodium = {
-- "X:/folder/folder/anotherfolder/theresmusicinthisfolder", -- example
},
Other = {
-- "X:/folder/folder/anotherfolder/theresmusicinthisfolder", -- example
},
}

return FoldersList
1 change: 1 addition & 0 deletions DynamicMusicPlayer/Music/Finish/placeholder.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This is a placeholder just so GitHub doesn't delete this folder.
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions DynamicMusicPlayer/Music/FinishPodium/placeholder.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This is a placeholder just so GitHub doesn't delete this folder.
Binary file not shown.
1 change: 1 addition & 0 deletions DynamicMusicPlayer/Music/Idle/placeholder.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This is a placeholder just so GitHub doesn't delete this folder.
Binary file not shown.
1 change: 1 addition & 0 deletions DynamicMusicPlayer/Music/Other/placeholder.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This is a placeholder just so GitHub doesn't delete this folder.
Binary file not shown.
1 change: 1 addition & 0 deletions DynamicMusicPlayer/Music/Practice/placeholder.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This is a placeholder just so GitHub doesn't delete this folder.
Binary file not shown.
1 change: 1 addition & 0 deletions DynamicMusicPlayer/Music/Qualifying/placeholder.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This is a placeholder just so GitHub doesn't delete this folder.
1 change: 1 addition & 0 deletions DynamicMusicPlayer/Music/Race/placeholder.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This is a placeholder just so GitHub doesn't delete this folder.
Binary file not shown.
1 change: 1 addition & 0 deletions DynamicMusicPlayer/Music/Replay/placeholder.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This is a placeholder just so GitHub doesn't delete this folder.
Binary file not shown.
2 changes: 1 addition & 1 deletion DynamicMusicPlayer/manifest.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[ABOUT]
NAME = Dynamic Music Player
AUTHOR = Damgam
VERSION = 1.3
VERSION = 2,0
DESCRIPTION = Dynamic Music Player for Assetto Corsa

[WINDOW_...]
Expand Down

0 comments on commit 4e46006

Please sign in to comment.