A D package containing my single-file modules
Rev. | 日時 | 作者 | メッセージ |
---|---|---|---|
8f1f7e3 | 2023-03-26 09:51:51 | nemophila | trunk directories-0.2.0 directories: Fixes for Windows |
a42914c | 2023-03-26 09:22:37 | nemophila | mlib: Specify compatibility with D >= 2.076.0 |
42d070d | 2023-03-26 09:21:59 | nemophila | directories: Change formatting of documentation Using ad... |
b7e56bc | 2023-03-26 08:49:21 | nemophila | directories: Update module documentation |
f156d9c | 2023-03-26 08:35:39 | nemophila | mlib: Add brief documentation to overall package |
94f8ec1 | 2023-03-26 08:34:45 | nemophila | directories: Documentation for UserDirectories |
75aeabe | 2023-03-25 21:24:57 | nemophila | directories: Documentation for ProjectDirectories |
3e66533 | 2023-03-25 17:42:18 | nemophila | directories: Add ProjectDirectories.projectPath |
084af07 | 2023-03-23 19:39:51 | nemophila | directories: Add documentation for BaseDirectories |
553f3dc | 2023-03-23 16:31:05 | nemophila | directories: Add Posix executableDir |
名前 | Rev. | 日時 | 作者 |
---|---|---|---|
directories-0.2.0 | 8f1f7e3 | 2023-03-26 09:58:06 | nemophila |
... a collection of personal modules for the D Programming Language. This file was last updated 11. March 2023 There files here are just the ones that I'm commonly copying from one of my projects to another. The purpose is more to provide a central location that I can keep the files updated while making it easier for myself to update them in my various projects. CONFIGPARSER The configparser module will simply parse a INI-like file and provide a simple API to access the various settings within the parsed file. The API isn't complete yet. CNI The replacement of CONFIGPARSER that has been used in the medialist-cli project. While very similar in concept to an INI file, CNI has a defined specification, https://github.com/libuconf/cni. DIRECTORIES Contains a simple API for retrieving the "common directories" for your operating system. For example, on Linux (and most other POSIX systems) DIRECTORIES will use the XDG Base Directory Specification. * This module only compiles under 'Posix' as defined by the D compiler. TRASH While this could be an extension on to DIRECTORIES, I chose to keep it separate since the specifications they follow are different enough. In short, this module will utilise your operating systems "Recycle Bin" concept rather than simple purging the file from existance. * This module only compiles under 'Posix' as defined by the D compiler.