mirror of
https://github.com/jiojciojsioe3/a3cjroijsiojiorj.git
synced 2024-12-24 02:06:14 +08:00
3fea149353
- Adds a new page for importing custom songs, where it is possible to pick a local folder (desktop only) or a Google Drive folder (desktop and Android) - This feature is disabled on iOS due to the lack of OGG audio support in the browser - In order to not get rate limited, a TJA file is parsed for metadata only when the song is clicked in the song selection, rather than all at once at import time - The instance maintainer will need to provide the API credentials in the config.py file to enable this feature - This requires a new project to be created at console.cloud.google.com - Drive API will have to be enabled - API and OAuth keys should be created - API key can be restricted to only have Google Drive and Google Picker APIs - OAuth Client ID should have Web Application type and JavaScript origins set - Editing the OAuth consent screen to have a name and icon is recommended - It is semi-required to submit the consent screen for verification as the permission to download all of the Drive files will be asked. - Note that the email of the maintainer is publicly visible on the consent screen - The project number can be found in the IAM & Admin settings page
41 lines
650 B
CSS
41 lines
650 B
CSS
#load-song{
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
#loading-song{
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
margin: auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 20vw;
|
|
height: 15vw;
|
|
background: rgba(0, 0, 0, 0.75);
|
|
border-radius: 5px;
|
|
border: 3px solid white;
|
|
color: #fff;
|
|
z-index: 1;
|
|
}
|
|
#loading-don{
|
|
width: 10vw;
|
|
height: calc(10vw / 120 * 115);
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
}
|
|
.loading-text{
|
|
position: relative;
|
|
font-size: 1.5vw;
|
|
text-align: center;
|
|
z-index: 1;
|
|
}
|
|
#p2-cancel-button{
|
|
display: none;
|
|
position: absolute;
|
|
bottom: -55px;
|
|
}
|