Changeset 2333075
- Timestamp:
- 06/30/2020 08:35:23 PM (6 years ago)
- Location:
- cornell-notes/trunk
- Files:
-
- 7 edited
-
README.txt (modified) (7 diffs)
-
changelog.txt (modified) (1 diff)
-
package-lock.json (modified) (1 diff)
-
package.json (modified) (1 diff)
-
plugin.php (modified) (1 diff)
-
readme.md (modified) (3 diffs)
-
src/init.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
cornell-notes/trunk/README.txt
r2333066 r2333075 5 5 Requires PHP: 7.0 6 6 Tested up to: 5.4.2 7 Stable tag: 1.0. 17 Stable tag: 1.0.2 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html 10 10 11 Create perfect study notes with the Cornell Notes Gutenberg Block. 11 == Description == 12 **Create perfect study notes with the Cornell Notes Gutenberg Block.** 12 13 13 == Description == 14 [Cornell Notes](https://en.wikipedia.org/wiki/Cornell_Notes) provides an excellent structure for organising and summarized your notes, ideas and concepts - this logical approach is an invaluable way to help learning and retention for students of all ages. This plugin provides a new, dedicated Cornell Notes Gutenberg block to enable you to quickly and easily take your notes within WordPress. 14 [Cornell Notes](https://en.wikipedia.org/wiki/Cornell_Notes) provides an excellent structure for organising and summarized your notes, ideas and concepts - this logical approach is an invaluable way to help learning and retention for students of all ages. 15 16 This plugin provides a new, dedicated Cornell Notes Gutenberg block to enable you to quickly and easily take your notes within WordPress. 15 17 16 18 == Installation == … … 21 23 5. Learn and grow :) 22 24 23 = How to Use Cornell Notes=24 1. Add your title at the top of thenote - this is a summary of context of the notes.25 == How to Use Cornell Notes == 26 1. Add your title at the top of your note - this is a summary of context of the notes. 25 27 2. Take long-form notes in the right-hand column - you can take notes during a class, lecture, video tutorial or WordCamp Talk, it doesn't matter. Add as many ideas as you need - click the 'Add Idea' indicator to add a new idea. 26 28 3. Once you've finished your notes, review them and summarise the concepts with key ideas in the left-hand column. … … 32 34 There are currently no specific settings required by the Cornell Notes Block. 33 35 34 == How to Extend This Plugin == 35 `npm install ` -- install all required dependencies. 36 `npm start` -- serve the development version of the block. 37 `npm run build` -- build the production-ready version of the block. 36 == Screenshots == 37 1. Cornell Notes adds a new block to the editor 38 2. Cornell Notes contains an 'Idea' block - only available as a child of the Cornell Note block 39 3. The Cornell Note Block on the frontend (inheriting the theme styles) 40 4. Simply add another idea to your Cornell Notes 38 41 39 == Localization == 40 * English (default) 41 42 == Frequently Asked Questions == 43 = How can I style the block? = 44 The Cornell Notes Block contains minimalist styling - it should inherit the styles from you existing theme. Overriding the styles is straightforward (for reference, the Sass stylesheet can be found at: `cornell-notes/src/blocks/cornell-notes/styles.scss` 45 46 > **Note**: The Summary section is forced to the bottom of the Cornell Note via Flexbox (`order: 1`) - this only affects the display - in the DOM, the Summary sits below the first key idea and long-form note. 47 48 = Style via CSS Variables = 42 == Style via CSS Variables == 49 43 CSS Variables are used with default settings - you can override these in your theme by setting the variables in the `root` 50 44 ``` … … 58 52 ``` 59 53 60 = Style via Classes=54 == Style via Classes == 61 55 The structure to the Cornell Notes Block: 62 56 ``` … … 69 63 ``` 70 64 (This structure is simplified - you will find additional classes added via Gutenberg) 65 66 == Localization == 67 * English (default) 68 69 == Frequently Asked Questions == 70 = How can I style the block? = 71 The Cornell Notes Block contains minimalist styling - it should inherit the styles from you existing theme. Overriding the styles is straightforward (for reference, the Sass stylesheet can be found at: `cornell-notes/src/blocks/cornell-notes/styles.scss` 72 73 **Note**: The Summary section is forced to the bottom of the Cornell Note via Flexbox (`order: 1`) - this only affects the display - in the DOM, the Summary sits below the first key idea and long-form note. 71 74 72 75 = Why am I getting some different styling at different device sizes? = … … 91 94 It's funny you should ask that - yes, definitely maybe. 92 95 93 == Screenshots ==94 1. Cornell Notes adds a new block to the editor95 2. Cornell Notes contains an 'Idea' block - only available as a child of the Cornell Note block96 3. The Cornell Note Block on the frontend (inheriting the theme styles)97 4. Simply add another idea to your Cornell Notes98 99 96 == Upgrade Notice == 100 97 1.0 … … 111 108 [Sean Blakeley](https://github.com/SeanBlakeley) 112 109 113 == Test Notes ==114 Tested up to version 8.4.0 of the [Gutenberg Development Plugin](https://wordpress.org/plugins/gutenberg/)115 116 110 == Credits == 117 111 This project was bootstrapped with [Create Guten Block](https://github.com/ahmadawais/create-guten-block). -
cornell-notes/trunk/changelog.txt
r2333066 r2333075 1 1 == Cornell Notes Changelog == 2 1.0.2 3 * Readme edits 4 * Corrected `register_block_type` reference in `init.php` 5 2 6 1.0.1 3 7 * Changed styling for increased backwards compatibility with older versions of Gutenberg -
cornell-notes/trunk/package-lock.json
r2333066 r2333075 1 1 { 2 2 "name": "cornell-notes", 3 "version": "1.0. 1",3 "version": "1.0.2", 4 4 "lockfileVersion": 1, 5 5 "requires": true, -
cornell-notes/trunk/package.json
r2333066 r2333075 1 1 { 2 2 "name": "cornell-notes", 3 "version": "1.0. 1",3 "version": "1.0.2", 4 4 "private": true, 5 5 "scripts": { -
cornell-notes/trunk/plugin.php
r2333066 r2333075 6 6 * Author: Sean Blakeley 7 7 * Author URI: https://sean.work 8 * Version: 1.0. 18 * Version: 1.0.2 9 9 * Text Domain: cornell-notes 10 10 * License: GPL2+ -
cornell-notes/trunk/readme.md
r2333066 r2333075 13 13 ### How to Use Cornell Notes 14 14 1. Add your title at the top of the note - this is a summary of context of the notes. 15 *example:* `ES6 Main Concepts from Kyle Simpson` or `American Civil War Lecture: 06-20-2020`.16 15 2. Take long-form notes in the right-hand column - you can take notes during a class, lecture, video tutorial or WordCamp Talk, it doesn't matter. Add as many ideas as you need - click the 'Add Idea' indicator to add a new idea. 17 16 3. Once you've finished your notes, review them and summarise the concepts with key ideas in the left-hand column 18 *example:* `Arrow Functions` or `Supply and Demand`.19 17 4. Finally, summarize all the notes in a sentence or two at the bottom of the page. 20 18 5. To fully benefit from Cornell Notes, you should consider adding [Spaced Repetition](https://en.wikipedia.org/wiki/Spaced_repetition) to your learning plan. … … 36 34 The Cornell Notes Block contains minimalist styling - it should inherit the styles from you existing theme. Overriding the styles is straightforward (for reference, the Sass stylesheet can be found at: `cornell-notes/src/blocks/cornell-notes/styles.scss` 37 35 38 >**Note**: The Summary section is forced to the bottom of the Cornell Note via Flexbox (`order: 1`) - this only affects the display - in the DOM, the Summary sits below the first key idea and long-form note.36 **Note**: The Summary section is forced to the bottom of the Cornell Note via Flexbox (`order: 1`) - this only affects the display - in the DOM, the Summary sits below the first key idea and long-form note. 39 37 40 38 #### Style via CSS Variables … … 85 83 ### Screenshots 86 84  87 >Cornell Notes adds a new block to the editor85 Cornell Notes adds a new block to the editor 88 86 89 87 ### Translations -
cornell-notes/trunk/src/init.php
r2333066 r2333075 68 68 */ 69 69 register_block_type( 70 'c gb/block-cornell-notes', array(70 'cornell-notes/cornell-note', array( 71 71 // Enqueue blocks.style.build.css on both frontend & backend. 72 72 'style' => 'cornell_notes-style-css',
Note: See TracChangeset
for help on using the changeset viewer.