Allow .zip bundle uploads for all File plugin controls.
This commit is contained in:
@@ -1,14 +1,13 @@
|
||||
# Release Notes
|
||||
## PiPedal 1.2.41
|
||||
Version 1.2 is officially released.
|
||||
## PiPedal 1.2.41 Release
|
||||
|
||||
This version includes the following new features:
|
||||
|
||||
- Supports Raspberry Pi 5.
|
||||
- Supports Rasberry Pi OS Bookworm.
|
||||
- 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)
|
||||
- Upload .zip file bundles to all File plugin controls.
|
||||
- Uploads can be organized into sub-directories.
|
||||
- Various minor improvements to TooB plugin user interfaces.
|
||||
|
||||
|
||||
@@ -370,7 +370,7 @@ export default withStyles(styles, { withTheme: true })(
|
||||
<Link underline="hover"
|
||||
color="inherit"
|
||||
key="1" onClick={() => { this.navigate(""); }}
|
||||
sx={{ display: 'flex', alignItems: 'center' }}
|
||||
sx={{ display: 'flex', alignItems: 'center',cursor: "default" }}
|
||||
>
|
||||
<HomeIcon sx={{ mr: 0.6 }} fontSize="inherit" />
|
||||
Home
|
||||
@@ -383,7 +383,7 @@ export default withStyles(styles, { withTheme: true })(
|
||||
target = pathConcat(target, directories[i]);
|
||||
let myTarget = target;
|
||||
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) }}>
|
||||
{directories[i]}
|
||||
</Link>
|
||||
@@ -392,7 +392,9 @@ export default withStyles(styles, { withTheme: true })(
|
||||
{
|
||||
let lastdirectory = directories[directories.length - 1];
|
||||
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.
|
||||
- Bug: text Cursor hovering over the breadcrumb bar in file property dialog.
|
||||
- Bug: Turning off wifi-direct sould re-enable NetworkManager.
|
||||
|
||||
Reference in New Issue
Block a user