- Timestamp:
- Feb 23, 2024, 12:50:27 PM (14 months ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/cli/listing.ml
r53 r60 37 37 Term.info "list" ~doc:"list texts" ~man:[ `S "DESCRIPTION"; 38 38 `P "Diplays text id, date, author, title for a directory. 39 If directory argument is ommitted, $txtdiris used, where empty value defaults to ~/.local/share/texts.39 If directory argument is ommitted, TXTDIR is used, where empty value defaults to ~/.local/share/texts. 40 40 If -R is used, list header information for texts found in subdirectories too." ] -
trunk/cli/txt.ml
r49 r60 1 let version = "1.3 "1 let version = "1.3.1" 2 2 3 3 open Cmdliner -
trunk/dune-project
r51 r60 1 1 (lang dune 2.0) 2 2 (name logarion) 3 (version 1.3 )3 (version 1.3.1) 4 4 (license EUPL-1.2) 5 5 (authors "orbifx <fox@orbitalfox.eu>") 6 6 (bug_reports "mailto:logarion@lists.tildeverse.org") 7 (maintainers "Izuru Yakumo < novaburst@envs.net>")7 (maintainers "Izuru Yakumo <yakumo.izuru@chaotic.ninja>") 8 8 (homepage "https://logarion.chaotic.ninja") 9 (source (uri git +https://git.chaotic.ninja/yakumo.izuru/logarion.git))9 (source (uri git://git.chaotic.ninja/yakumo_izuru/logarion)) 10 10 11 11 (generate_opam_files true) -
trunk/lib/file_store.ml
r42 r60 5 5 let extension = ".txt" 6 6 7 let txtdir () = try Sys.getenv " txtdir" with Not_found ->7 let txtdir () = try Sys.getenv "TXTDIR" with Not_found -> 8 8 let share = Filename.concat (Sys.getenv "HOME") ".local/share/texts/" in 9 9 match Sys.is_directory share with true -> share -
trunk/logarion.opam
r51 r60 1 1 # This file is generated by dune, edit dune-project instead 2 2 opam-version: "2.0" 3 version: "1.3 "3 version: "1.3.1" 4 4 synopsis: "Texts archival and exchange" 5 maintainer: ["Izuru Yakumo < novaburst@envs.net>"]5 maintainer: ["Izuru Yakumo <yakumo.izuru@chaotic.ninja>"] 6 6 authors: ["orbifx <fox@orbitalfox.eu>"] 7 7 license: "EUPL-1.2" … … 28 28 ] 29 29 ] 30 dev-repo: "git +https://git.chaotic.ninja/yakumo.izuru/logarion.git"30 dev-repo: "git://git.chaotic.ninja/yakumo_izuru/logarion"
Note:
See TracChangeset
for help on using the changeset viewer.