[PR #411] [CLOSED] Added auto fetching web page title when url pasted #747

Closed
opened 2026-03-03 00:23:01 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/BoostIO/BoostNote-App/pull/411
Author: @ymtdzzz
Created: 4/16/2020
Status: Closed

Base: masterHead: feature/auto-fetch-page-title


📝 Commits (8)

  • d152895 Added auto fetching web page title when url pasted
  • a5c6f2a Implemented another solution
  • 7d13063 Fixed the feature to be only for desktop and mobile version application.
  • 1d1f365 change target to desktop app only and resolve cors error
  • 79a76a4 fixed some review issues
  • 3436464 fix copyright
  • c1f29dc check only if the response is text/html when fetching page title
  • 21bc392 Merge branch 'master' into feature/auto-fetch-page-title

📊 Changes

22 files changed (+271 additions, -12 deletions)

View changed files

📝 package-lock.json (+19 -8)
📝 package.json (+6 -2)
📝 src/components/PreferencesModal/EditorTab.tsx (+28 -0)
📝 src/components/atoms/CodeEditor.tsx (+2 -2)
📝 src/components/atoms/CustomizedCodeEditor.tsx (+3 -0)
📝 src/electron/index.ts (+4 -0)
src/electron/ipcEventHandlers.ts (+22 -0)
src/lib/eventHandler/pasteHandler.ts (+159 -0)
📝 src/lib/preferences.ts (+2 -0)
📝 src/locales/de.ts (+2 -0)
📝 src/locales/enUS.ts (+2 -0)
📝 src/locales/esES.ts (+2 -0)
📝 src/locales/frFR.ts (+2 -0)
📝 src/locales/ja.ts (+2 -0)
📝 src/locales/ko.ts (+2 -0)
📝 src/locales/ptBR.ts (+2 -0)
📝 src/locales/ukUA.ts (+2 -0)
📝 src/locales/zhCN.ts (+2 -0)
📝 src/locales/zhHK.ts (+2 -0)
📝 src/locales/zhTW.ts (+2 -0)

...and 2 more files

📄 Description

related issue: #410

Description

Added auto fetching web page title when url pasted.
I referred to the old BoostNote source code.

  • Paste handler
  • Setting
  • Translations
  • Tests

Screenshot

Setting
aaa

Behavior
screencast 2020-04-16 13-51-22


🔄 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/BoostIO/BoostNote-App/pull/411 **Author:** [@ymtdzzz](https://github.com/ymtdzzz) **Created:** 4/16/2020 **Status:** ❌ Closed **Base:** `master` ← **Head:** `feature/auto-fetch-page-title` --- ### 📝 Commits (8) - [`d152895`](https://github.com/BoostIO/BoostNote-App/commit/d1528952a5d20ed8a08538edfac216d4d173d0e5) Added auto fetching web page title when url pasted - [`a5c6f2a`](https://github.com/BoostIO/BoostNote-App/commit/a5c6f2a8ae1cd7f0cc3ae35863bff4a451cdb187) Implemented another solution - [`7d13063`](https://github.com/BoostIO/BoostNote-App/commit/7d1306307bbba7e218ad00cfd537cf43b35865c7) Fixed the feature to be only for desktop and mobile version application. - [`1d1f365`](https://github.com/BoostIO/BoostNote-App/commit/1d1f365d017ac9bd0f572667a3f444cc874888f6) change target to desktop app only and resolve cors error - [`79a76a4`](https://github.com/BoostIO/BoostNote-App/commit/79a76a43ce095a333f51254dcc074e3873f11a6a) fixed some review issues - [`3436464`](https://github.com/BoostIO/BoostNote-App/commit/343646415e3aa0756be41ae6f42715456da2f163) fix copyright - [`c1f29dc`](https://github.com/BoostIO/BoostNote-App/commit/c1f29dcc056f11f841921d38150009182022c8a0) check only if the response is text/html when fetching page title - [`21bc392`](https://github.com/BoostIO/BoostNote-App/commit/21bc392477931c0d7367dc83d2cfd60c042abcb8) Merge branch 'master' into feature/auto-fetch-page-title ### 📊 Changes **22 files changed** (+271 additions, -12 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+19 -8) 📝 `package.json` (+6 -2) 📝 `src/components/PreferencesModal/EditorTab.tsx` (+28 -0) 📝 `src/components/atoms/CodeEditor.tsx` (+2 -2) 📝 `src/components/atoms/CustomizedCodeEditor.tsx` (+3 -0) 📝 `src/electron/index.ts` (+4 -0) ➕ `src/electron/ipcEventHandlers.ts` (+22 -0) ➕ `src/lib/eventHandler/pasteHandler.ts` (+159 -0) 📝 `src/lib/preferences.ts` (+2 -0) 📝 `src/locales/de.ts` (+2 -0) 📝 `src/locales/enUS.ts` (+2 -0) 📝 `src/locales/esES.ts` (+2 -0) 📝 `src/locales/frFR.ts` (+2 -0) 📝 `src/locales/ja.ts` (+2 -0) 📝 `src/locales/ko.ts` (+2 -0) 📝 `src/locales/ptBR.ts` (+2 -0) 📝 `src/locales/ukUA.ts` (+2 -0) 📝 `src/locales/zhCN.ts` (+2 -0) 📝 `src/locales/zhHK.ts` (+2 -0) 📝 `src/locales/zhTW.ts` (+2 -0) _...and 2 more files_ </details> ### 📄 Description related issue: #410 ## Description Added auto fetching web page title when url pasted. I referred to the old BoostNote source code. - [x] Paste handler - [x] Setting - [x] Translations - [x] Tests ## Screenshot Setting <img width="469" alt="aaa" src="https://user-images.githubusercontent.com/44557218/79416678-2f8c7e00-7feb-11ea-8c3f-8ca69e3e3608.png"> Behavior ![screencast 2020-04-16 13-51-22](https://user-images.githubusercontent.com/44557218/79416074-ca845880-7fe9-11ea-892b-c1d81986788d.gif) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 00:23:01 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/BoostNote-App#747
No description provided.