From b56c9d43153fc26160109fcffedd17d11c3d2430 Mon Sep 17 00:00:00 2001 From: Koray Taylan Davgana Date: Wed, 20 May 2026 00:26:51 +0300 Subject: [PATCH 1/2] docs: add MIT LICENSE file and update contributing documentation for #2 - Added root LICENSE with standard MIT text (copyright 2025 Koray Taylan) - Updated README.md Table of Contents, Contributing section (contributor agreement sentence), and added new License section at end - Chose MIT for being permissive, simple, and common in Rust/Tauri/frontend projects - One sentence on MIT vs Apache-2.0: MIT is shorter and more permissive (no patent grant or notice requirements like Apache-2.0), making it easier for individuals and companies to adopt without legal overhead, while still providing good protection; Apache-2.0 adds explicit patent license which is valuable for larger projects but adds complexity. --- LICENSE | 21 +++++++++++++++++++++ README.md | 9 +++++++++ 2 files changed, 30 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..22a9c0c --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2025 Koray Taylan + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index 21b4d04..fa98071 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,7 @@ A cross-platform file explorer that connects to multiple storage backends throug - [Contributing](#contributing) - [Definition of Done](#definition-of-done) - [Rules](#rules) +- [License](#license) - [Roadmap](#roadmap) --- @@ -741,6 +742,8 @@ Every unit of work (feature, bug fix, refactor) must satisfy ALL of the followin - **New Tauri commands** require changes in three places: the `#[tauri::command]` fn, registration in `lib.rs` → `invoke_handler`, and a typed wrapper in `frontend/src/lib/ipc.ts`. - **New storage backends** require changes in five places: the implementation file, `storage/mod.rs`, `DiskType` enum, `backend_from_config*()` factory functions, and `AddDiskDialog.tsx` form fields. Nothing else should need to change. +By contributing to this repository, you agree that your contributions will be licensed under the MIT License. + --- ## Roadmap @@ -810,3 +813,9 @@ Items roughly grouped by impact. Priority TBD — to be tackled one by one. |---|------|-------------|------------| | 12 | Integration tests | Testcontainers-based tests for S3 (MinIO), Azure (Azurite), SFTP (openssh-server), FTP (vsftpd); Podman-compatible | Medium | | 13 | CI pipeline | GitHub Actions workflows: unit tests on every push, integration tests with containerized services | Small | + +## License + +This project is licensed under the [MIT License](LICENSE). + +By contributing to this repository, you agree that your contributions will be licensed under the MIT License. From 7e1288f5a27b4a9fe5458a461084d456a5e182c6 Mon Sep 17 00:00:00 2001 From: Koray Taylan Davgana Date: Wed, 20 May 2026 00:30:08 +0300 Subject: [PATCH 2/2] fix: remove duplicate "By contributing..." sentence from License section (per Copilot review on PR #7) - The sentence was intentionally placed in Contributing per issue #2 spec. - Kept it there; removed the redundant copy from the new ## License section. - This addresses the single review comment about duplication. - No other changes. --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index fa98071..3d49333 100644 --- a/README.md +++ b/README.md @@ -817,5 +817,3 @@ Items roughly grouped by impact. Priority TBD — to be tackled one by one. ## License This project is licensed under the [MIT License](LICENSE). - -By contributing to this repository, you agree that your contributions will be licensed under the MIT License.