Allow .zip bundle uploads for all File plugin controls.
This commit is contained in:
@@ -1,14 +1,13 @@
|
|||||||
# Release Notes
|
# Release Notes
|
||||||
## PiPedal 1.2.41
|
## PiPedal 1.2.41 Release
|
||||||
Version 1.2 is officially released.
|
|
||||||
|
|
||||||
This version includes the following new features:
|
This version includes the following new features:
|
||||||
|
|
||||||
- Supports Raspberry Pi 5.
|
- Supports Raspberry Pi 5.
|
||||||
- Supports Rasberry Pi OS Bookworm.
|
- Supports Rasberry Pi OS Bookworm.
|
||||||
- TooB ML allows uploading of models. See below for further details.
|
- TooB ML allows uploading of models. See below for further details.
|
||||||
- TooB ML allows uploading of model collections contained in .zip files.
|
|
||||||
- TooBML support for large models (e.g. GuitarML Proteus models)
|
- TooBML support for large models (e.g. GuitarML Proteus models)
|
||||||
|
- Upload .zip file bundles to all File plugin controls.
|
||||||
- Uploads can be organized into sub-directories.
|
- Uploads can be organized into sub-directories.
|
||||||
- Various minor improvements to TooB plugin user interfaces.
|
- Various minor improvements to TooB plugin user interfaces.
|
||||||
|
|
||||||
|
|||||||
@@ -370,7 +370,7 @@ export default withStyles(styles, { withTheme: true })(
|
|||||||
<Link underline="hover"
|
<Link underline="hover"
|
||||||
color="inherit"
|
color="inherit"
|
||||||
key="1" onClick={() => { this.navigate(""); }}
|
key="1" onClick={() => { this.navigate(""); }}
|
||||||
sx={{ display: 'flex', alignItems: 'center' }}
|
sx={{ display: 'flex', alignItems: 'center',cursor: "default" }}
|
||||||
>
|
>
|
||||||
<HomeIcon sx={{ mr: 0.6 }} fontSize="inherit" />
|
<HomeIcon sx={{ mr: 0.6 }} fontSize="inherit" />
|
||||||
Home
|
Home
|
||||||
@@ -383,7 +383,7 @@ export default withStyles(styles, { withTheme: true })(
|
|||||||
target = pathConcat(target, directories[i]);
|
target = pathConcat(target, directories[i]);
|
||||||
let myTarget = target;
|
let myTarget = target;
|
||||||
breadcrumbs.push((
|
breadcrumbs.push((
|
||||||
<Link underline="hover" key={(i + 1).toString()}
|
<Link underline="hover" key={(i + 1).toString()} style={{cursor: "default"}}
|
||||||
color="inherit" onClick={() => { this.navigate(myTarget) }}>
|
color="inherit" onClick={() => { this.navigate(myTarget) }}>
|
||||||
{directories[i]}
|
{directories[i]}
|
||||||
</Link>
|
</Link>
|
||||||
@@ -392,7 +392,9 @@ export default withStyles(styles, { withTheme: true })(
|
|||||||
{
|
{
|
||||||
let lastdirectory = directories[directories.length - 1];
|
let lastdirectory = directories[directories.length - 1];
|
||||||
breadcrumbs.push((
|
breadcrumbs.push((
|
||||||
<Typography noWrap key={directories.length.toString()} color="text.secondary"> {lastdirectory}</Typography>
|
<Typography noWrap key={directories.length.toString()}
|
||||||
|
style={{cursor: "default"}}
|
||||||
|
color="text.secondary"> {lastdirectory}</Typography>
|
||||||
));
|
));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
+275
-323
File diff suppressed because it is too large
Load Diff
@@ -1,5 +1,3 @@
|
|||||||
- change icons on gallery in index.html
|
|
||||||
- provide direct link to docs on both landing pages.
|
|
||||||
- feature: redo ./makepackage so that it runs without sudo.
|
- feature: redo ./makepackage so that it runs without sudo.
|
||||||
- Bug: text Cursor hovering over the breadcrumb bar in file property dialog.
|
- Bug: text Cursor hovering over the breadcrumb bar in file property dialog.
|
||||||
- Bug: Turning off wifi-direct sould re-enable NetworkManager.
|
- Bug: Turning off wifi-direct sould re-enable NetworkManager.
|
||||||
|
|||||||
Reference in New Issue
Block a user