[READ-ONLY] Mirror of https://github.com/probablykasper/taskler. Simple text editor for your New Tab page taskler.kasper.space
browser-extension chrome chrome-extension editor extension firefox firefox-addon firefox-extension notes
0

Configure Feed

Select the types of activity you want to include in your feed.

Update info and commands

Kasper (Sep 25, 2022, 7:32 AM +0200) aeeed250 863f46b8

+13 -15
+6 -7
README.md
··· 1 1 <p align="center"> 2 - <a href="https://taskler.kasp.io/" title="Taskler"><img alt="Quill Logo" src="https://raw.githubusercontent.com/SpectralKH/taskler/9363a32916f6f0f7316528c92a7df265a5b53d62/logo/logo.png" width="96"></a> 2 + <a href="https://taskler.kasper.space" title="Taskler"><img alt="Quill Logo" src="https://raw.githubusercontent.com/SpectralKH/taskler/9363a32916f6f0f7316528c92a7df265a5b53d62/logo/logo.png" width="96"></a> 3 3 </p> 4 4 <p align="center"> 5 5 <img alt="Chrome Web Store" src="https://img.shields.io/chrome-web-store/users/jnibmbpjkpfgaefgbnaneldfbfecpjih?color=yellow&logo=Google%20Chrome&logoColor=white&style=flat-square"> ··· 8 8 <h1 align="center"> 9 9 Taskler 10 10 </h1> 11 - Taskler is a simple text editor web page. It's available as a <a href='https://taskler.kasp.io'>website</a>, <a href='https://chrome.google.com/webstore/detail/jnibmbpjkpfgaefgbnaneldfbfecpjih'>Chrome extension</a> and a <a href='https://addons.mozilla.org/addon/taskler'>Firefox extension</a>. 11 + Taskler is a simple text editor web page. It's available as a <a href='https://taskler.kasper.space'>website</a>, <a href='https://chrome.google.com/webstore/detail/jnibmbpjkpfgaefgbnaneldfbfecpjih'>Chrome extension</a> and a <a href='https://addons.mozilla.org/addon/taskler'>Firefox extension</a>. 12 12 13 13 You can use shortcuts like cmd+B for <b>bold</b>, cmd+I for <i>italics</i>, cmd+U for <u>underline</u> and cmd+K for <a href='https://www.youtube.com/watch?v=LDU_Txk06tM'>links</a>. 14 14 ··· 22 22 2. Run `npm install` to install dependencies 23 23 24 24 ## Commands 25 - - `npm run start`: Same as `npm run website`. 26 - - `npm run website`: Build `/src` in website mode, watch for changes and start dev server at http://localhost:3000. 27 - - `npm run extension`: Build `/src` in extension mode, watch for changes and start dev server at http://localhost:3000. 28 - - `npm run website:deploy`: Build `/src` in website mode and deploy to `/docs` folder (GitHub Pages). 29 - - `npm run extension:zip`: Build `/src` in extension mode and create a zip in `/dist`, ready to be uploaded to Chrome Web Store and such. You'll be prompted to type in a new version. 25 + - `npm run dev`: Build `/src` in website mode, watch for changes and start dev server at http://localhost:3000. 26 + - `npm run dev:extension`: Build `/src` in extension mode, watch for changes and start dev server at http://localhost:3000. 27 + - `npm run build:website`: Build `/src` in website mode and deploy to `/docs` folder (GitHub Pages). 28 + - `npm run build:extension`: Build `/src` in extension mode and create a zip in `/dist`, ready to be uploaded to Chrome Web Store and such. You'll be prompted to type in a new version. 30 29 31 30 ## Publish new version 32 31 1. Update `CHANGELOG.md`
+4 -5
package.json
··· 1 1 { 2 2 "name": "taskler", 3 3 "scripts": { 4 - "start": "gulp website", 5 - "website": "gulp website", 6 - "extension": "gulp extension", 7 - "website:deploy": "gulp website:deploy", 8 - "extension:zip": "gulp extension:zip" 4 + "dev": "gulp website", 5 + "dev:extension": "gulp extension", 6 + "build:website": "gulp website:deploy", 7 + "build:extension": "gulp extension:zip" 9 8 }, 10 9 "browserslist": "> 0.2%", 11 10 "devDependencies": {
+1 -1
src/index.pug
··· 34 34 .dialog-container.settings-dialog 35 35 .dialog 36 36 h1 Taskler 37 - p Taskler is a simple text editor web page. It's available as a <a href='https://taskler.kasp.io'>website</a>, <a href='https://chrome.google.com/webstore/detail/jnibmbpjkpfgaefgbnaneldfbfecpjih'>Chrome extension</a> and a <a href='https://addons.mozilla.org/addon/taskler'>Firefox extension</a>. 37 + p Taskler is a simple text editor web page. It's available as a <a href='https://taskler.kasper.space'>website</a>, <a href='https://chrome.google.com/webstore/detail/jnibmbpjkpfgaefgbnaneldfbfecpjih'>Chrome extension</a> and a <a href='https://addons.mozilla.org/addon/taskler'>Firefox extension</a>. 38 38 p You can use shortcuts like cmd+B for <b>bold</b>, cmd+<i>I</i> for italics, cmd+U for <u>underline</u> and cmd+K for <a href='https://www.youtube.com/watch?v=LDU_Txk06tM'>links</a>. 39 39 h1 Settings 40 40 .checkbox-container.dark-mode-checkbox
+2 -2
src/manifest.json
··· 2 2 "manifest_version": 2, 3 3 "name": "Taskler", 4 4 "version": "2.2.0", 5 - "homepage_url": "https://taskler.kasp.io/", 5 + "homepage_url": "https://taskler.kasper.space", 6 6 "description": "A simple text editor on your New Tab page", 7 7 "icons": { 8 8 "16": "icon16.png", ··· 13 13 "newtab": "index.html" 14 14 }, 15 15 "permissions": [] 16 - } 16 + }