AmendHub

Download:

jcs

/

amend

/

amendments

/

63

LICENSE+README: Add these to the repo


jcs made amendment 63 over 2 years ago
--- LICENSE Thu Feb 3 17:58:47 2022 +++ LICENSE Thu Feb 3 17:58:47 2022 @@ -0,0 +1,7 @@ +Amend is free software released under the terms of the ISC license: + +Copyright (c) 2021-2022 joshua stein <jcs@jcs.org> + +Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --- README Thu Feb 3 17:58:28 2022 +++ README Thu Feb 3 17:58:28 2022 @@ -0,0 +1,39 @@ +Amend: a small revision control system for Macintosh +Written by joshua stein <jcs@jcs.org> - http://jcs.org/amend + +Amend is free software; see the LICENSE file for copyright/licensing + +3.2 - 2022-02-03 + - When filtering out already-added files, also filter out the open repo + file itself. + - Fix a possible crash after committing + - Stop occasionally displaying a cursor on read-only text boxes + +3.0 - 2022-01-20 + - Change repo file format yet again, to include a larger header for future + use and to include a backup map pointer. File corruption could stll be + possible if a new map is written at the end of the file where the + filesystem has to allocate new blocks, even though the file is flushed. + With a backup map pointer, the previous map already written to disk can + still be reliably located. + - In the "Add File" dialog, remove files from the list that are already in the + repo, or are outside of the repo's directory. This should make it much + easier to see what is not being managed by Amend. + +2.0 - 2022-01-11 + - Change repo file format from standard Mac Resource Files to a custom + file format that offers more resiliance against data corruption. + Unfortunately this means files can't be directly edited in ResEdit, and + there is no built-in conversion mechanism for repos created in version 1. + +1.0 - 2021-12-16 + - Add a Settings menu to change the tab width (defaults to 4) and the + author username used for new commits + +0.9.2 - 2021-12-15 + - When 'All Files' is selected when doing a diff, skip files that have the + same size, creation time, and modification time + - Fix crash when switching applications under MultiFinder + +0.9.1 - 2021-11-22 + - Initial public release