Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
298c340
Completed .gitignore.
CoSoCo Mar 9, 2025
b65bca5
Applied patches from https://github.com/NixOS/nixpkgs/tree/master/pkg…
CoSoCo Mar 9, 2025
458607c
Updated configure.ac with autoupdate and autoreconf -i -s.
CoSoCo Mar 9, 2025
42ac6a9
Updated and completed the build instructions in README.
CoSoCo Mar 9, 2025
abc616a
Updated version to 0.13.1.
CoSoCo Mar 9, 2025
d895072
Stripped white space at line end, corrected indentations.
CoSoCo Mar 11, 2025
f3acfa1
Fixed issue #9 in https://github.com/desrod/pilot-link/.
CoSoCo Mar 14, 2025
0298033
Stripped trailing white space in README.
CoSoCo Mar 14, 2025
69c00f3
Added chapter 'Basic use of pilot-link conduits' to README.
CoSoCo Mar 14, 2025
d2fe833
Merge branch 'main' into format_cleanup
CoSoCo Mar 14, 2025
516db42
Merge branch 'format_cleanup' into desrod-bug_9
CoSoCo Mar 14, 2025
0d51390
Fixed issue #7 in https://github.com/desrod/pilot-link/.
CoSoCo Mar 15, 2025
09bf830
Added run and debug instructions to README.
CoSoCo Mar 17, 2025
9fdc59f
Include hidden built-in volume with dlp_VFSVolumeEnumerate(...).
CoSoCo Mar 17, 2025
f68fca3
Lifted version of libpisock.
CoSoCo Mar 17, 2025
10b7305
Added warning, if not all existing volumes were enumerated.
CoSoCo Mar 17, 2025
49777c6
Fixed desrod issue #30; Added flag "Hidden" to Card/Volume info.
CoSoCo Mar 18, 2025
8bc57ff
Renamed variable for better understanding.
CoSoCo Mar 18, 2025
2a8bc48
Lifted version of pilot-link and libpisock.
CoSoCo Mar 18, 2025
fddd68c
Corrected return value of dlp_VFSVolumeEnumerate(...) when no card ex…
CoSoCo Mar 22, 2025
d89b57b
Adapted `pilot-xfer -D --list` to new enhanced functionality of dlp_V…
CoSoCo Mar 22, 2025
ef091ce
In findVFSRoot_clumsy(...) at least match one volume if feasible.
CoSoCo Mar 22, 2025
52c760f
Corrected order for definition of library version no digits.
CoSoCo Mar 22, 2025
721448d
Lifted version of libpisock.
CoSoCo Mar 22, 2025
52d8838
Merge commit '721448d' into desrod-bug_28
CoSoCo Mar 22, 2025
2a9c7e3
Merge branch 'desrod-bug_28' with latest bug fixes.
CoSoCo Mar 22, 2025
e0efb37
Show file attributes with dir listing.
CoSoCo Mar 19, 2025
5636b7d
Merge branch 'main' into file_attr
CoSoCo Mar 22, 2025
919ba86
Corrected order for definition of library version no digits in Makefi…
CoSoCo Mar 22, 2025
ca614d7
In understanding the libtool’s versioning system, corrected the libra…
CoSoCo Mar 23, 2025
dc9a898
Fix of desrod issue #26 - `pilot-xfer --list -D` does not list all di…
CoSoCo May 12, 2025
4f1fb02
Fix of desrod issue #32 -Text messages for PalmOS errors are corrupted.
CoSoCo May 15, 2025
a5d9a8e
Re-use dirIterator in loop and on error report it.
CoSoCo May 16, 2025
cc469f1
Merge branch 'desrod_bug_32_palmos_error' into 'desrod-bug_26'.
CoSoCo May 16, 2025
30b903b
Beautified `pilot-xfer -l -D` output and enhanced error messages.
CoSoCo May 21, 2025
1448a6f
Updated versions of libpisock and Pilot-Link, as API was changed.
CoSoCo May 21, 2025
be86f56
Changed dlp_VFSDirEntryEnumerate() to return 0 entries instead PalmOS…
CoSoCo May 22, 2025
80e7a99
Fixed bug in `print_file_info()`, so now, if a directory, instead siz…
CoSoCo May 22, 2025
1d48956
Merge main into file_attr
CoSoCo May 22, 2025
7c1d67b
Output file attributes as characters.
CoSoCo May 22, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 57 additions & 13 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,24 +1,68 @@
config.cache
# generic files to ignore
# backup files (*~) and vim swap file (.swp), MacOS dir file (.DS_Store)
*~
*.lock
*.DS_Store
.*.swp
*.out
*.bak
*.zip
*.patch

# except this file
!.gitignore

# from autoreconf -i
compile
config.guess
config.h
config.h.in
config.log
config.status
config.sub
configure
install-sh
missing
depcomp
ylwrap
test-driver
autom4te.cache
m4
aclocal.m4
config.cache
config.h.in
configure
libtool
ltconfig
ltmain.sh
.deps
.libs
stamp-h*
aclocal.m4
Makefile
Makefile.in

# from configure
config.h
config.status
config.log
Makefile
Makefile.PL
stamp-h*
libtool
.deps
pilot-link.m4
pilot-link.pc
pilot-link-pp.pc
tags
autom4te.cache
include/pi-md5.h
include/pi-version.h
doc/xml/catalog.xml
doc/xml/docbook.xsl
doc/doxygen.cfg
bindings/Python/setup*.py

# from make / cc / gcc
*.o
*.la
*.lo
*.so
.libs
src/pilot-*
!src/*.c
!src/*.h
!src/*.pl
src/parsedate.c
tests/*-test

# from make install
dist
182 changes: 0 additions & 182 deletions INSTALL

This file was deleted.

1 change: 1 addition & 0 deletions INSTALL
Loading