Skip to content
This repository has been archived by the owner on Jan 5, 2024. It is now read-only.

Updated and standardized code and file structure to match current SN standards. #4

Open
wants to merge 23 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"presets": [ "es2016"],
}
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules
.sass-cache
.DS_Store
*.swp
work
31 changes: 31 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
module.exports = function(grunt) {

grunt.initConfig({
watch: {
css: {
files: ['src/**/*.scss'],
tasks: ['sass'],
options: {
spawn: false,
},
}
},

sass: {
dist: {
options: {
style: 'expanded'
},
files: {
'dist/dist.css': 'src/main.scss'
}
}
},
});

grunt.loadNpmTasks('grunt-newer');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-sass');

grunt.registerTask('default', ['sass']);
};
Empty file modified LICENSE
100644 → 100755
Empty file.
4 changes: 2 additions & 2 deletions README.md
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ Standard Notes is not related to Evernote.
Open "Extensions" in Standard Notes and click "Import Extension". Paste the following URL and press enter:

```
https://listed.to/p/u0KtH2x98F
```
https://raw.githubusercontent.com/xthursdayx/sn-theme-evernote-dark/master/ext.json
```
83 changes: 64 additions & 19 deletions dist/dist.css
100644 → 100755

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions dist/dist.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 13 additions & 9 deletions ext.json
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,20 +1,24 @@
{
"identifier": "io.github.ilindaniel.sn-theme-evernote-dark",
---
metatype: json
---

{
"identifier": "io.github.xthursdayx.sn-theme-evernote-dark",
"name": "Evernote-style Dark Theme",
"content_type": "SN|Theme",
"area": "themes",
"version": "1.2.6",
"description": "Evernote inspired dark theme for Standard Notes",
"version": "v1.2",
"url": "https://raw.githubusercontent.com/ilindaniel/sn-theme-evernote-dark/master/dist/dist.css",
"download_url": "https://github.com/ilindaniel/sn-theme-evernote-dark/archive/master.zip",
"marketing_url": "https://github.com/ilindaniel/sn-theme-evernote-dark",
"latest_url": "https://listed.to/p/u0KtH2x98F",
"thumbnail_url": "https://raw.githubusercontent.com/ilindaniel/sn-theme-evernote-dark/master/preview.png",
"url": "https://raw.githubusercontent.com/xthursdayx/sn-theme-evernote-dark/master/dist/dist.css",
"download_url": "https://github.com/xthursdayx/sn-theme-evernote-dark/archive/1.2.6.zip",
"latest_url": "https://raw.githubusercontent.com/xthursdayx/sn-theme-evernote-dark/master/ext.json",
"marketing_url": "https://github.com/xthursdayx/sn-theme-evernote-dark",
"thumbnail_url": "https://raw.githubusercontent.com/xthursdayx/sn-theme-evernote-dark/master/preview.png",
"dock_icon": {
"type": "circle",
"background_color": "#00a82e",
"foreground_color": "#0081c2",
"border_color": "#00a82e"
},
"statusBar": "dark-content"
}
}
Loading