Changeset 68 in code
- Timestamp:
- Aug 21, 2024, 2:15:27 AM (8 months ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile
r65 r68 11 11 @dune build 12 12 deps: 13 @opam install dune ocurl cmdliner =1.0.4msgpck13 @opam install dune ocurl cmdliner msgpck 14 14 cli: 15 15 @dune build cli/txt.exe … … 20 20 @cp _build/default/cli/txt.exe txt.exe 21 21 @strip txt.exe 22 @tar czvf " kosuzu-${OS}-${MACHINE}-${DATE}-${COMMIT}" txt.exe readme.txt22 @tar czvf "logarion-${OS}-${MACHINE}-${DATE}-${COMMIT}" txt.exe readme.txt 23 23 @rm txt.exe 24 24 install: -
trunk/cli/edit.ml
r66 r68 15 15 `S Manpage.s_description; 16 16 `P "Launches EDITOR (nano if environment variable is unset) with text path as parameter."; 17 `P "If -R is used, the ID search space includes texts found in subdirectories, too." ] 17 `P "If -R is used, the ID search space includes texts found in subdirectories, too."; 18 `S Manpage.s_environment; 19 `P "EDITOR - Default editor name" ] 18 20 in 19 21 let info = Cmd.info "edit" ~version:"%%VERSION%%" ~doc ~man in -
trunk/cli/new.ml
r66 r68 24 24 let man = [ 25 25 `S Manpage.s_description; 26 `P "Create a new article, with title 'Draft' when none provided" ] 26 `P "Create a new article, with title 'Draft' when none provided"; 27 `S Manpage.s_environment; 28 `P "USER - The login name of the user, used if the Authors field is blank"; 29 `P "EDITOR - Default editor name" ] 27 30 in 28 31 let info = Cmd.info "new" ~version:"%%VERSION%%" ~doc ~man in -
trunk/cli/txt.ml
r67 r68 2 2 3 3 let subs = [ 4 Authors.cmd; (* Done *)5 Convert.cmd; (* Done *)6 Edit.cmd; (* Done *)7 File.cmd; (* Done *)8 Index.cmd; (* Done *)9 Last.cmd; (* Done *)10 Listing.cmd; (* Done *)11 New.cmd; (* Done *)12 Peers.cmd; (* Done *)13 Pull.cmd; (* Done *)14 Recent.cmd; (* Done *)15 Topics.cmd; (* Done *)16 Unfile.cmd; (* Done *)4 Authors.cmd; 5 Convert.cmd; 6 Edit.cmd; 7 File.cmd; 8 Index.cmd; 9 Last.cmd; 10 Listing.cmd; 11 New.cmd; 12 Peers.cmd; 13 Pull.cmd; 14 Recent.cmd; 15 Topics.cmd; 16 Unfile.cmd; 17 17 ] 18 18 … … 22 22 let doc = "Discover, collect and exchange texts" in 23 23 let man = [ 24 `S "CONTACT"; 25 `P "<mailto:logarion-dev@chaotic.ninja>"; ] 24 `S Manpage.s_authors; 25 `P "orbifx <mailto:fox@orbitalfox.eu>"; 26 `P "Izuru Yakumo <mailto:yakumo.izuru@chaotic.ninja>"; 27 `S Manpage.s_bugs; 28 `P "Please report them at <mailto:logarion-dev@chaotic.ninja>"; ] 26 29 in 27 30 Cmd.group (Cmd.info "txt" ~version:"%%VERSION%%" ~doc ~man) ~default:default_cmd subs -
trunk/logarion.opam
r66 r68 1 1 # This file is generated by dune, edit dune-project instead 2 2 opam-version: "2.0" 3 version: "1.4. 0"3 version: "1.4.1" 4 4 synopsis: "Texts archival and exchange" 5 5 maintainer: ["Izuru Yakumo <yakumo.izuru@chaotic.ninja>"]
Note:
See TracChangeset
for help on using the changeset viewer.