Files
librenotes/NOTICE
Michael Czechowski 42fac0ab33 Document fork relationship with Notesium upstream
LICENSE retains the original Notesium copyright alongside librenotes.
NOTICE records the upstream URL, fork commit hash
(aff9f460c2d864112db7f0935b4168b107289d91), fork date, and
instructions for contributors who want to add the upstream remote
and cherry-pick patches.

Closes #36.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-28 21:53:04 +02:00

39 lines
1.2 KiB
Plaintext

librenotes
==========
Cloud-native multi-tenant notes application.
Fork origin
-----------
This project is a fork of Notesium, created and maintained by Alon Swartz.
Upstream repository: https://github.com/alonswartz/notesium
Upstream license: MIT
Forked at commit: aff9f460c2d864112db7f0935b4168b107289d91
Fork date: 2026-04-28
The original Notesium code is preserved under internal/notesium/ and remains
under the MIT license. See LICENSE for the full license text and the combined
copyright notice.
Modifications and additions made for librenotes are also released under the
MIT License.
Working with the upstream remote
--------------------------------
Contributors who want to follow upstream Notesium development or cherry-pick
fixes from upstream can add the upstream remote:
git remote add upstream https://github.com/alonswartz/notesium.git
git fetch upstream
To inspect upstream changes since the fork point:
git log aff9f460c2d864112db7f0935b4168b107289d91..upstream/master
Note that the librenotes layout differs from upstream (sources moved into
internal/notesium/), so direct merges will conflict. Cherry-picking
individual upstream patches is the expected workflow.