[PR #2] [MERGED] Develop #1

Closed
opened 2026-09-04 00:49:24 +02:00 by Stone_Red · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Stone-Red-Code/Markdowser/pull/2
Author: @Stone-Red-Code
Created: 6/4/2024
Status: Merged
Merged: 6/4/2024
Merged by: @Stone-Red-Code

Base: mainHead: develop


📝 Commits (10+)

  • 942e58a Add basic content processing structure
  • bb78a4a Implement text/html processor
  • e8d8745 Fix toggle sidebar keybinding and disable content panel when laoding
  • cbe32f7 Add F11 fullscreen functionality
  • 4f3c59a Add search engine url setting
  • b4edef9 Add common image processor
  • f722549 Fix default search engine URL
  • 571d8c2 Don't try to handle svg images
  • aa1484f Add Name and Description properties to IContentProcessor
  • f53eb36 Add UserAgent setting

📊 Changes

52 files changed (+1670 additions, -326 deletions)

View changed files

📝 .gitignore (+140 -0)
📝 README.md (+5 -2)
choco/ReadMe.md (+133 -0)
choco/markdowser.nuspec (+119 -0)
choco/tools/LICENSE.txt (+23 -0)
choco/tools/VERIFICATION.txt (+8 -0)
snap/snapcraft.yaml (+45 -0)
src/.idea/.idea.Markdowser/.idea/.name (+1 -0)
src/.idea/.idea.Markdowser/.idea/indexLayout.xml (+8 -0)
src/.idea/.idea.Markdowser/.idea/projectSettingsUpdater.xml (+6 -0)
src/.idea/.idea.Markdowser/.idea/vcs.xml (+6 -0)
src/.idea/.idea.Markdowser/.idea/workspace.xml (+80 -0)
📝 src/Markdowser/App.axaml.cs (+21 -0)
📝 src/Markdowser/Commands/ChangeThemeCommand.cs (+1 -1)
📝 src/Markdowser/Commands/HomeCommand.cs (+1 -1)
📝 src/Markdowser/Commands/HyperlinkCommand.cs (+21 -4)
📝 src/Markdowser/Markdowser.csproj (+12 -0)
📝 src/Markdowser/Models/Settings.cs (+15 -1)
src/Markdowser/Models/TabState.cs (+41 -0)
src/Markdowser/Processing/ContentProcessorManager.cs (+24 -0)

...and 32 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Stone-Red-Code/Markdowser/pull/2 **Author:** [@Stone-Red-Code](https://github.com/Stone-Red-Code) **Created:** 6/4/2024 **Status:** ✅ Merged **Merged:** 6/4/2024 **Merged by:** [@Stone-Red-Code](https://github.com/Stone-Red-Code) **Base:** `main` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`942e58a`](https://github.com/Stone-Red-Code/Markdowser/commit/942e58ac0f681e904e395296f1ebe71146d1469c) Add basic content processing structure - [`bb78a4a`](https://github.com/Stone-Red-Code/Markdowser/commit/bb78a4a067a6597a3a12895c23f4ca2c1ad09727) Implement text/html processor - [`e8d8745`](https://github.com/Stone-Red-Code/Markdowser/commit/e8d8745a2bc2f9b94f45a107efbabfd5c4ae1868) Fix toggle sidebar keybinding and disable content panel when laoding - [`cbe32f7`](https://github.com/Stone-Red-Code/Markdowser/commit/cbe32f7bdf80a08f5cda2e1e7bc8cdbdc3f5c332) Add F11 fullscreen functionality - [`4f3c59a`](https://github.com/Stone-Red-Code/Markdowser/commit/4f3c59a32c9fb31e5a566805de8f30733d5888d9) Add search engine url setting - [`b4edef9`](https://github.com/Stone-Red-Code/Markdowser/commit/b4edef9021dda0bfc5bc924451e222002bae5da4) Add common image processor - [`f722549`](https://github.com/Stone-Red-Code/Markdowser/commit/f7225494f63d3fff6c015319e1bc4dc8541d4f3a) Fix default search engine URL - [`571d8c2`](https://github.com/Stone-Red-Code/Markdowser/commit/571d8c2b4b96c7acc2e6800a8f3a8ba7c39001e9) Don't try to handle svg images - [`aa1484f`](https://github.com/Stone-Red-Code/Markdowser/commit/aa1484f5d431296d050e925f69fd6516d90d6cab) Add Name and Description properties to `IContentProcessor` - [`f53eb36`](https://github.com/Stone-Red-Code/Markdowser/commit/f53eb36dd0382fe08a3e0d4df7ddb5632df14ef4) Add UserAgent setting ### 📊 Changes **52 files changed** (+1670 additions, -326 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+140 -0) 📝 `README.md` (+5 -2) ➕ `choco/ReadMe.md` (+133 -0) ➕ `choco/markdowser.nuspec` (+119 -0) ➕ `choco/tools/LICENSE.txt` (+23 -0) ➕ `choco/tools/VERIFICATION.txt` (+8 -0) ➕ `snap/snapcraft.yaml` (+45 -0) ➕ `src/.idea/.idea.Markdowser/.idea/.name` (+1 -0) ➕ `src/.idea/.idea.Markdowser/.idea/indexLayout.xml` (+8 -0) ➕ `src/.idea/.idea.Markdowser/.idea/projectSettingsUpdater.xml` (+6 -0) ➕ `src/.idea/.idea.Markdowser/.idea/vcs.xml` (+6 -0) ➕ `src/.idea/.idea.Markdowser/.idea/workspace.xml` (+80 -0) 📝 `src/Markdowser/App.axaml.cs` (+21 -0) 📝 `src/Markdowser/Commands/ChangeThemeCommand.cs` (+1 -1) 📝 `src/Markdowser/Commands/HomeCommand.cs` (+1 -1) 📝 `src/Markdowser/Commands/HyperlinkCommand.cs` (+21 -4) 📝 `src/Markdowser/Markdowser.csproj` (+12 -0) 📝 `src/Markdowser/Models/Settings.cs` (+15 -1) ➕ `src/Markdowser/Models/TabState.cs` (+41 -0) ➕ `src/Markdowser/Processing/ContentProcessorManager.cs` (+24 -0) _...and 32 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
Stone_Red added the pull-request label 2026-09-04 00:49:24 +02:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Stone_Red/Markdowser#1