-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ScreenCapture plugin for screenshots / screen recordings #2132
Conversation
}, | ||
"peerDependencies": { | ||
"@uppy/core": "^1.0.0" | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should add
"publishConfig": {
"access": "public"
}
so npm doesn't try to create a private package once this is published for the first time (which would fail the lerna publish midway)
I think we should rely on |
hmm does anyone of us have a samsung S8 device to try what happens if you do try to record there? 🤔 |
I have ;) |
Added a check for |
packages/@uppy/locales/src/fi_FI.js
Outdated
@@ -141,7 +141,6 @@ fi_FI.strings = { | |||
streamActive: 'Jako aktiivinen', | |||
streamPassive: 'Jako passiivinen', | |||
micDisabled: 'Käyttäjä on estänyt mikrofonin', | |||
micIsOn: 'Mikrofoni on päällä', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Intended @arturi?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, half of the strings were actually unused in the UI. Am I right @jukakoski?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@arturi I have to check. I used webcam feature as basis for this feature and in that component there is an info screen telling if some permissions are missing. At some point there was also that kind of screen in this one which was stripped off later on.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems "selectSourceTitle: 'Valitse kaappauksen kohde'" is not used as native UI in browser is taking care of selecting the source.
"selectSourceDescription: 'Salli ruudun jako, jotta tallennus on mahdollista.'," this same thing.
Also micIsOn is not in use. Actually at the moment there is no information for the user that screen capturing is capturing mic as well. It should be optional to select audio source or disable audio.
Todo list stuff?
New
@uppy/screen-capture
plugin that adds screenshots / screen recordings functionality to Uppy, thanks to @jukakoski.