[PR #22] [CLOSED] V0.2.0 #528

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

📋 Pull Request Information

Original PR: https://github.com/BoostIO/BoostNote-App/pull/22
Author: @Sarah-Seo
Created: 1/4/2017
Status: Closed

Base: masterHead: v0.2.0


📝 Commits (10+)

  • 9d32d89 Clean Lint issue and Update gh-pages
  • 51c32ec Bump up to v0.2.0
  • 4e7edbe 🎨 Add Loading screen
  • 5438f03 🎨 set dracula as a default codemirror theme
  • b31b3de 🎨 Update loading screen style
  • 4423f43 👕 Lint
  • 02a0956 🔥 Remove unused resources
  • fc426ec 🎨 Trim result when stripping node
  • 447d84a 🎨 Set Octicon to use current color by default
  • d1fa7b6 🎨 Update dataApi for tags

📊 Changes

73 files changed (+2382 additions, -885 deletions)

View changed files

📝 .babelrc (+2 -3)
.travis.yml (+3 -0)
📝 app/lib/main.html (+40 -2)
📝 app/lib/main.production.html (+40 -2)
📝 app/lib/menuTemplate.js (+18 -0)
📝 docs/development/database.md (+13 -5)
📝 docs/development/keymap-and-commands.md (+12 -6)
📝 gh-pages (+1 -1)
📝 package.json (+42 -7)
resources/dmg.png (+0 -0)
resources/dmg@2x.png (+0 -0)
resources/install.gif (+0 -0)
specs/__functional__/lib/markdown.spec.js (+66 -0)
specs/__functional__/main/lib/dataApi/createNote.spec.js (+62 -0)
specs/__functional__/main/lib/dataApi/deleteFolder.spec.js (+82 -0)
📝 specs/__functional__/main/lib/dataApi/deleteNote.spec.js (+21 -21)
specs/__functional__/main/lib/dataApi/deleteTag.spec.js (+77 -0)
specs/__functional__/main/lib/dataApi/loadAllStorages.spec.js (+21 -0)
specs/__functional__/main/lib/dataApi/loadStorage.spec.js (+46 -0)
📝 specs/__functional__/main/lib/dataApi/renameFolder.spec.js (+30 -30)

...and 53 more files

📄 Description

  • Loading screen
  • Change default codemirror theme(Default -> Dracula)
  • Windows support #2
  • Linux support #2
  • Show task to NoteList #19
  • Map notes by tag
  • Use Jest
  • Migrate DB from WebSQL to IndexedDB
  • DB Management page
  • Add bottom margin to Latex block
  • Add Nav toggle button
  • Add update indicator(Inform new release)
  • Add keybinding to choose editor style(CmdOrCtrl-1 : Single view, CmdOrCtrl-2: 2-pane view)

🔄 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/22 **Author:** [@Sarah-Seo](https://github.com/Sarah-Seo) **Created:** 1/4/2017 **Status:** ❌ Closed **Base:** `master` ← **Head:** `v0.2.0` --- ### 📝 Commits (10+) - [`9d32d89`](https://github.com/BoostIO/BoostNote-App/commit/9d32d89217d9465e0ba2b7e6d5b44480400eb293) Clean Lint issue and Update gh-pages - [`51c32ec`](https://github.com/BoostIO/BoostNote-App/commit/51c32eca2d827e9d1ac589c74e2b60fd0c6b3598) Bump up to v0.2.0 - [`4e7edbe`](https://github.com/BoostIO/BoostNote-App/commit/4e7edbeca17f02ccbdf216c90dc2caab4711564d) :art: Add Loading screen - [`5438f03`](https://github.com/BoostIO/BoostNote-App/commit/5438f03ec92219cf8f4bbd602c5e7c5ca568d774) :art: set dracula as a default codemirror theme - [`b31b3de`](https://github.com/BoostIO/BoostNote-App/commit/b31b3de7fe31d309caa960f82cbfcdbc841faf2a) :art: Update loading screen style - [`4423f43`](https://github.com/BoostIO/BoostNote-App/commit/4423f43a75877c835710ff8cdaeda6c208cb33ea) :shirt: Lint - [`02a0956`](https://github.com/BoostIO/BoostNote-App/commit/02a09568888b7fb64988bc715c4d224619e87bfc) :fire: Remove unused resources - [`fc426ec`](https://github.com/BoostIO/BoostNote-App/commit/fc426ec1f8b61c9b454b92f6fa0eaafde6ee3037) :art: Trim result when stripping node - [`447d84a`](https://github.com/BoostIO/BoostNote-App/commit/447d84a4e505378d4873f134385a62849ab93947) :art: Set Octicon to use current color by default - [`d1fa7b6`](https://github.com/BoostIO/BoostNote-App/commit/d1fa7b635962a08c7e40a6a58d05ab6ce8c3d143) :art: Update dataApi for tags ### 📊 Changes **73 files changed** (+2382 additions, -885 deletions) <details> <summary>View changed files</summary> 📝 `.babelrc` (+2 -3) ➕ `.travis.yml` (+3 -0) 📝 `app/lib/main.html` (+40 -2) 📝 `app/lib/main.production.html` (+40 -2) 📝 `app/lib/menuTemplate.js` (+18 -0) 📝 `docs/development/database.md` (+13 -5) 📝 `docs/development/keymap-and-commands.md` (+12 -6) 📝 `gh-pages` (+1 -1) 📝 `package.json` (+42 -7) ➖ `resources/dmg.png` (+0 -0) ➖ `resources/dmg@2x.png` (+0 -0) ➖ `resources/install.gif` (+0 -0) ➕ `specs/__functional__/lib/markdown.spec.js` (+66 -0) ➕ `specs/__functional__/main/lib/dataApi/createNote.spec.js` (+62 -0) ➕ `specs/__functional__/main/lib/dataApi/deleteFolder.spec.js` (+82 -0) 📝 `specs/__functional__/main/lib/dataApi/deleteNote.spec.js` (+21 -21) ➕ `specs/__functional__/main/lib/dataApi/deleteTag.spec.js` (+77 -0) ➕ `specs/__functional__/main/lib/dataApi/loadAllStorages.spec.js` (+21 -0) ➕ `specs/__functional__/main/lib/dataApi/loadStorage.spec.js` (+46 -0) 📝 `specs/__functional__/main/lib/dataApi/renameFolder.spec.js` (+30 -30) _...and 53 more files_ </details> ### 📄 Description - [x] Loading screen - [x] Change default codemirror theme(Default -> Dracula) - [ ] Windows support #2 - [ ] Linux support #2 - [ ] Show task to NoteList #19 - [x] Map notes by tag - [x] Use Jest - [x] Migrate DB from WebSQL to IndexedDB - [ ] DB Management page - [x] Add bottom margin to Latex block - [x] Add Nav toggle button - [ ] Add update indicator(Inform new release) - [x] Add keybinding to choose editor style(`CmdOrCtrl-1` : Single view, `CmdOrCtrl-2`: 2-pane view) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 00:22:00 +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#528
No description provided.