Skip to content

Commit 96bdbbf

Browse files
committed
update settings
1 parent 980c8bc commit 96bdbbf

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ name: "CodeQL"
77

88
on:
99
push:
10-
branches: [vavi]
10+
branches: [main]
1111
pull_request:
1212
# The branches below must be a subset of the branches above
13-
branches: [vavi]
13+
branches: [main]
1414
# schedule:
1515
# - cron: '0 0 * * 5'
1616

.github/workflows/maven.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ name: Java CI
55

66
on:
77
push:
8-
branches: [ vavi ]
8+
branches: [ main ]
99
pull_request:
10-
branches: [ vavi ]
10+
branches: [ main ]
1111

1212
jobs:
1313
build:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ all formats are mounted by fuse also!
3131
| ibm (dmg:jfat(fat16)) || | | | | | | | | partition |
3232
| pc98 (jfat(fat16)) || | | | | | | | | partition |
3333
| raw (exfat) || | | | | | | | | virtual partition |
34-
| vdisk (nhd:pc98:fat16) || | | | | | | | | [virtual disk](vavi-nio-file-emu), partition |
35-
| fuse (vdisk(nhd):pc98:fat16) || | | | | | | | | [fuse](vavi-net-fuse), virtualDisk, partition |
34+
| vdisk (nhd:pc98:fat16) || | | | | | | | | [virtual disk](https://github.com/umjammer/vavi-nio-file-emu), partition |
35+
| fuse (vdisk(nhd):pc98:fat16) || | | | | | | | | [fuse](https://github.com/umjammer/vavi-net-fuse), virtualDisk, partition |
3636
| vdisk (d88:pc98:n88) | 🚧 | | | | | | | | | not solid image is not supported by DeviceAPI |
37-
| vdisk (fdi:pc98:fat12) || | | | | | | | | [virtual disk](vavi-nio-file-emu), partition |
37+
| vdisk (fdi:pc98:fat12) || | | | | | | | | [virtual disk](https://github.com/umjammer/vavi-nio-file-emu), partition |
3838

3939
## Install
4040

fs/src/main/java/org/jnode/partitions/pc98/PC98PartitionTableEntry.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public PC98PartitionTableEntry(PC98PartitionEntry pe, Device device) {
4141
heads = ((VirtualDiskDevice) device).getHeads();
4242
secs = ((VirtualDiskDevice) device).getSectors();
4343
}
44-
logger.log(Level.DEBUG, String.format("heads: %d, secs: %d, device: ", heads, secs, device.getClass().getName()));
44+
logger.log(Level.DEBUG, String.format("heads: %d, secs: %d, device: %s", heads, secs, device.getClass().getName()));
4545
}
4646

4747
// @see "https://github.com/aaru-dps/Aaru.Helpers/blob/4640bb88d3eb907d0f0617d5ee5159fbc13c5653/CHS.cs"

net/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
<dependency>
5252
<groupId>org.acplt.remotetea</groupId>
5353
<artifactId>remotetea-oncrpc</artifactId>
54-
<version>1.1.5</version>
54+
<version>1.1.6</version>
5555
</dependency>
5656

5757
<dependency>

0 commit comments

Comments
 (0)