{"id":14965044,"url":"https://github.com/mrmlik12/note-shr","last_synced_at":"2025-09-20T11:33:01.167Z","repository":{"id":225372101,"uuid":"763188348","full_name":"MRmlik12/note-shr","owner":"MRmlik12","description":"Cross-platform application designed to organize your thoughts on a board with notes","archived":false,"fork":false,"pushed_at":"2024-06-11T21:27:29.000Z","size":3557,"stargazers_count":19,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-10-30T01:02:33.516Z","etag":null,"topics":["100commitow","avalonia","cross-platform","csharp","reactiveui"],"latest_commit_sha":null,"homepage":"https://note-shr.dolczyk.rocks/","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MRmlik12.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2024-02-25T19:28:21.000Z","updated_at":"2024-06-30T09:20:31.000Z","dependencies_parsed_at":"2024-04-13T20:35:01.542Z","dependency_job_id":null,"html_url":"https://github.com/MRmlik12/note-shr","commit_stats":null,"previous_names":["mrmlik12/note-shr"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MRmlik12%2Fnote-shr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MRmlik12%2Fnote-shr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MRmlik12%2Fnote-shr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MRmlik12%2Fnote-shr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MRmlik12","download_url":"https://codeload.github.com/MRmlik12/note-shr/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238128493,"owners_count":19421046,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["100commitow","avalonia","cross-platform","csharp","reactiveui"],"created_at":"2024-09-24T13:34:08.556Z","updated_at":"2025-09-20T11:33:01.051Z","avatar_url":"https://github.com/MRmlik12.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"![C#](https://img.shields.io/badge/c%23-%23239120.svg?style=for-the-badge\u0026logo=csharp\u0026logoColor=white)\n![GitHub repo size](https://img.shields.io/github/repo-size/MRmlik12/note-shr?style=for-the-badge)\n![GitHub Repo Start](https://img.shields.io/github/stars/MRmlik12/note-shr?style=for-the-badge)\n![GitHub](https://img.shields.io/github/license/MRmlik12/note-shr?style=for-the-badge)\n![GitHub Actions Workflow Build Status](https://img.shields.io/github/actions/workflow/status/MRmlik12/note-shr/build.yml?style=for-the-badge)\n![GitHub Actions Workflow Test Status](https://img.shields.io/github/actions/workflow/status/MRmlik12/note-shr/test.yml?style=for-the-badge\u0026label=Test)\n\n# NoteSHR\n\n\u003cdiv style=\"margin-bottom: 0.5rem;\"\u003e\n    \u003cimg src=\"images/preview.png\" alt=\"drawing\" style=\"width:800px;\"/\u003e\n\u003c/div\u003e\n\nA cross-platform application to create own knowledge database, writing own thoughts, ideas and organize information in a creative way.\n\n## Development plan\n\n### Goals\n\nFor more detailed plan of app development please look into [TODO board](https://dolczyk.notion.site/TODO-68c8d6e46fbe4519b3fb762d7469b6e6?pvs=4)\n\n- [x]  Proof of concept\n- [x]  Import and export board\n- [ ]  Beautify app\n- [ ]  Zoom in/out board\n- [ ]  Share board with everyone\n- [ ]  Collaboration API\n- [ ]  Keep responsiveness and stability for web, desktop and mobile platforms\n\n### Implemented features\n\n- [x] Dragging and resizing notes across the board\n- [x] Adding nodes to note\n- [x] Edit and remove mode for note nodes\n- [x] Importing and exporting board\n- [x] Components in node: Text, List, Check and Image\n- [x] Fully working web and desktop version\n\n## Try it out\n\n* [Web version](https://note-shr.dolczyk.rocks)\n* Desktop platforms (Windows, MacOS, Linux). Pick the latest build action from [here](https://github.com/MRmlik12/note-shr/actions/workflows/build.yml) (Requires .NET 8 runtime to run)\n* Mobile platforms (Android, iOS) not ready yet\n\n## Build/Run process\n\nTo run this project you must install .NET 8 with workloads such as `android` , `iOS` and `wasm-tools`\n\n### Install dependencies\n\n```bash\n$ dotnet restore\n# Install workloads\n$ dotnet workload install android\n$ dotnet workload install iOS\n$ dotnet workload install wasm-tools\n```\n\n### Run project\n\n```bash\n# Run a Desktop platform \n$ dotnet run --project src/NoteSHR.Desktop\n# For iOS platform\n$ dotnet run --project src/NoteSHR.iOS\n# For Android platform\n$ dotnet run --project src/NoteSHR.Android\n# For Web platform\n$ dotnet run --project src/NoteSHR.Browser\n```\n\n### Run tests\n\n#### Using Bash\n```bash\n$ ./build.sh Test\n```\n\n#### Using PowerShell\n```powershell\n\u003e .\\build.ps1 Test\n```\n\n### Build\n\n#### Using Bash\n\n```bash\n# For desktop platforms\n$ ./build.sh --configuration Release\n# For iOS platform\n$ ./build.sh --configuration Release --allow-ios-build\n# For Android platform\n$ ./build.sh --configuration Release --allow-android-build\n```\n\n#### Using PowerShell\n\n```powershell\n# For desktop platforms \n\u003e .\\build.ps1 \n# For iOS platform\n\u003e .\\build.ps1 --allow-ios-build\n# For Android platform\n\u003e .\\build.ps1 --allow-android-build\n```\n\n## Used libraries\n\n- [Avalonia](https://avaloniaui.net/)\n- [ReactiveUI](https://www.reactiveui.net/)\n- [Avalonia.Xaml.Behaviors](https://github.com/AvaloniaUI/Avalonia.Xaml.Behaviors)\n- [PanAndZoom](https://github.com/wieslawsoltes/PanAndZoom)\n- [Newtonsoft.Json](https://www.newtonsoft.com/json)\n- [Svg.Skia](https://github.com/wieslawsoltes/Svg.Skia)\n- [NUKE](https://nuke.build/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrmlik12%2Fnote-shr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrmlik12%2Fnote-shr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrmlik12%2Fnote-shr/lists"}