Skip to content

Commit 0c5824b

Browse files
committed
4.7.3 release
1 parent fa16e51 commit 0c5824b

File tree

3 files changed

+12
-109
lines changed

3 files changed

+12
-109
lines changed

Changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## [Unreleased]
44

5+
## [4.7.3] - 2024-09-26
6+
7+
- [orca] Adds sp_find_device_type.asm and sp_find_fuji.asm, ORCA/M refactoring, improved memory usage, plus small enhancements to build.mk for apple2gs target.
8+
59
## [4.7.2] - 2024-09-22
610

711
- [apple2] fix finding device bug that was breaking network id and not setting correct device id

README.md

Lines changed: 7 additions & 108 deletions
Original file line numberDiff line numberDiff line change
@@ -1,121 +1,20 @@
1-
# Fujinet Network Lib
1+
# Fujinet Lib
22

3-
Routines for using the FujiNet Network Adapter sub-device.
3+
Routines for using the FujiNet Adapter sub-device.
44

55
The top level folder contains the .h API, one subfolder for each platform.
66

7+
Each fujinet device is then a subdirectory of the src directory, e.g. clock, fuji, network.
8+
79
## Building
810

9-
If required, specify `TARGETS` list. The default is to clean, build and create release for all known platforms.
11+
If required, specify `TARGETS` list.
1012

1113
```shell
12-
$ make
14+
$ make clean
15+
$ make release
1316
```
1417

15-
## Release
16-
17-
Use the make target `dist` which will zip the library, headers, and Changelog into version specific file at `dist/fujinet-network_VERSION.zip`.
18-
19-
### Disk Images
20-
2118
## Testing
2219

2320
Testing is done with BDD features. See [Testing README](testing/bdd-testing/README.md)
24-
25-
## TODO
26-
27-
### global
28-
29-
- [x] Makefile
30-
- [x] .h overall API
31-
32-
### define API
33-
34-
|System | network_open() | network_close() | network_read() | network_write() | network_status() | network_ioctl() | network_json_parse() | network_json_query() | network_init() |
35-
|-------|----------------|-----------------|----------------|-----------------|------------------|-----------------|----------------------|----------------------|----------------|
36-
| Atari | `[x]` | `[x]` | `[x]` | `[x]` | `[x]` | `[x]` | `[x]` | `[x]` | `[x]` |
37-
| Apple2| `[x]` | `[x]` | `[x]` | `[x]` | `[x]` | `[x]` | `[x]` | `[x]` | `[x]` |
38-
| ADAM | `[ ]` | `[ ]` | `[ ]` | `[ ]` | `[ ]` | `[ ]` | `[ ]` | `[ ]` | `[ ]` |
39-
| CBM | `[x]` | `[x]` | `[x]` | `[x]` | `[x]` | `[ ]` | `[x]` | `[x]` | `[x]` |
40-
| Coco | `[ ]` | `[ ]` | `[ ]` | `[ ]` | `[ ]` | `[ ]` | `[ ]` | `[ ]` | `[ ]` |
41-
| rc2014| `[ ]` | `[ ]` | `[ ]` | `[ ]` | `[ ]` | `[ ]` | `[ ]` | `[ ]` | `[ ]` |
42-
43-
Listed:
44-
45-
- [ ] network_open()
46-
- [ ] network_close()
47-
- [ ] network_read()
48-
- [ ] network_write()
49-
- [ ] network_status()
50-
- [ ] network_ioctl()
51-
- [ ] network_json_parse()
52-
- [ ] network_json_query()
53-
- [ ] network_init()
54-
55-
### target: atari
56-
57-
- [x] network_open()
58-
- [x] network_close()
59-
- [x] network_read()
60-
- [x] network_write()
61-
- [x] network_status()
62-
- [x] network_ioctl()
63-
- [x] network_json_parse()
64-
- [x] network_json_query()
65-
- [x] network_init()
66-
67-
### target: apple2
68-
69-
- [x] network_open()
70-
- [x] network_close()
71-
- [x] network_read()
72-
- [x] network_write()
73-
- [x] network_status()
74-
- [x] network_ioctl()
75-
- [x] network_json_parse()
76-
- [x] network_json_query()
77-
- [x] network_init()
78-
79-
### target: adam
80-
81-
- [ ] network_open()
82-
- [ ] network_close()
83-
- [ ] network_read()
84-
- [ ] network_write()
85-
- [ ] network_status()
86-
- [ ] network_ioctl()
87-
- [ ] network_json_parse()
88-
- [ ] network_json_query()
89-
90-
### target: commodore
91-
92-
- [x] network_open()
93-
- [x] network_close()
94-
- [x] network_read()
95-
- [x] network_write()
96-
- [x] network_status()
97-
- [ ] network_ioctl()
98-
- [x] network_json_parse()
99-
- [x] network_json_query()
100-
101-
### target: coco
102-
103-
- [ ] network_open()
104-
- [ ] network_close()
105-
- [ ] network_read()
106-
- [ ] network_write()
107-
- [ ] network_status()
108-
- [ ] network_ioctl()
109-
- [ ] network_json_parse()
110-
- [ ] network_json_query()
111-
112-
### target: rc2014
113-
114-
- [ ] network_open()
115-
- [ ] network_close()
116-
- [ ] network_read()
117-
- [ ] network_write()
118-
- [ ] network_status()
119-
- [ ] network_ioctl()
120-
- [ ] network_json_parse()
121-
- [ ] network_json_query()

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.7.2
1+
4.7.3

0 commit comments

Comments
 (0)