Giter VIP home page Giter VIP logo

bangbangboom-editor's Introduction

bangbangboom editor

State-of-the-art Shitcode

An editor to create bang dream beat map.

Do not expect this editor to work perfectly.

Help improve translations

You can access missing translation keys by global variable missingKeys and check for i18next instance i18n .

You can start a pull request to commit your translations at src/public/locales/{lng}.json .

bangbangboom-editor's People

Contributors

k024 avatar reikohaku avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

bangbangboom-editor's Issues

New format of Bestdori! charts

Bestdori! now update chart format in order to add new types of note of Bandori.
The old convert function is outdated and need to update.

audio input does not work in safari on iOS/ipadOS 13.4

accept="audio/*" onFileSelected={selectM} />

iOS/ipadOS 13.4 does not support the MIMEType audio/* as the value of attribute accept (due to an unknow bug?) .mp3,.wav,.aac,.m4a,.opus could be used as a workaround until the bug has been fixed.

Reproduction code:

<!doctype html>
<body>
    <input type="file" accept=".mp3,.wav,.aac,.m4a,.opus">
    <input type="file" accept="audio/*">
    <input type="file">
    <input type="text" id="t-input">
    <script>
        document.querySelector('#t-input').addEventListener('click',function(){
            let i = document.createElement('input')
            i.type='file'
            //i.accept='.mp3,.wav,.aac,.m4a'
            i.accept='audio/*'
            i.click();
        })
    </script>
</body>

Also, using <input type="file" accept="..." onchange="..." would be more readable and more robust than using a TextField while attach a event on it to trigger another <input>.

<TextField {...others} ref={ref}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.