diff --git a/2.8.0 b/2.8.0
new file mode 100644
index 0000000..6e7dc33
--- /dev/null
+++ b/2.8.0
@@ -0,0 +1,8 @@
++ typescript@4.2.3
+added 1 package from 1 contributor and audited 2202 packages in 8.182s
+
+141 packages are looking for funding
+ run `npm fund` for details
+
+found 0 vulnerabilities
+
diff --git a/public/index.html b/public/index.html
index aa069f2..365a5be 100644
--- a/public/index.html
+++ b/public/index.html
@@ -24,7 +24,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
-
React App
+ Audible Tools
You need to enable JavaScript to run this app.
diff --git a/public/manifest.json b/public/manifest.json
index 080d6c7..dac9d95 100644
--- a/public/manifest.json
+++ b/public/manifest.json
@@ -1,6 +1,6 @@
{
- "short_name": "React App",
- "name": "Create React App Sample",
+ "short_name": "Audible Tools",
+ "name": "Tools to remove DRM from aax",
"icons": [
{
"src": "favicon.ico",
diff --git a/src/ChecksumResolver.js b/src/ChecksumResolver.js
index a52be89..96197b3 100644
--- a/src/ChecksumResolver.js
+++ b/src/ChecksumResolver.js
@@ -14,6 +14,11 @@ import Container from '@material-ui/core/Container';
import Dropzone from 'react-dropzone'
import IconButton from '@material-ui/core/IconButton';
import FileCopyOutlined from '@material-ui/icons/FileCopyOutlined';
+import PublishOutlined from '@material-ui/icons/PublishOutlined';
+
+// import { useFilePicker } from 'react-sage'
+//import { FilePicker } from 'react-file-picker'
+
import { CopyToClipboard } from 'react-copy-to-clipboard';
@@ -147,7 +152,13 @@ class ChecksumResolver extends React.Component {
render() {
const { classes } = this.props;
const { checksum, activationBytes, fileName } = this.state;
- //const acc = accAX();
+
+ // const { files, onClick, errors, HiddenFileInput } = useFilePicker({
+ // maxFileSize: 1000000,
+ // maxImageWidth: 1000,
+ // imageQuality: 0.92,
+ // resizeImage: true
+ // });
return (
@@ -167,9 +178,6 @@ class ChecksumResolver extends React.Component {
onDrop={acceptedFiles => {
console.log(acceptedFiles);
this.acceptFile(acceptedFiles);
- //const file = document.getElementById('fileInput').files[0];
-
-
}}>
{({ getRootProps, getInputProps }) => (
@@ -189,6 +197,36 @@ class ChecksumResolver extends React.Component {
onChange={(x) => this.setChecksum(x.target.value)}
value={checksum}
+ InputProps={{
+ readOnly: true,
+// endAdornment: (
+// // {
+
+// // alert('hi')
+// // }}>
+// //
+// //
+
+// //
+// //
+
+// //
+// //
+// //accept="image/*"
+// // { }}
+// // onError={errMsg => { }}
+// // >
+// //
+// //
+// //
+// //
+// )
+ }}
+
/>
@@ -234,7 +272,7 @@ class ChecksumResolver extends React.Component {