Skip to content

Commit

Permalink
Getting ready for launch
Browse files Browse the repository at this point in the history
  • Loading branch information
mvaneijgen committed Jan 24, 2024
1 parent 2dff24e commit f0dfe3c
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 7 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ I've made this tool so I could send pixel art to my SO, just as a fun way to lea
- [ ] Setup proper JSON object
- [ ] Load current image
- [ ] Undo/redo
- [ ] Propper build step, complile scss, setup local server and run `node build.js` on changes

## Tools used
This tool is build using Vue.js and there is some SCSS to easily write CSS
Expand Down
1 change: 1 addition & 0 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,7 @@ input {
width: 100%;
margin-top: 10px;
margin-bottom: 10px;
padding: 5px 10px;
}

select {
Expand Down
2 changes: 1 addition & 1 deletion assets/css/style.css.map

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

2 changes: 1 addition & 1 deletion assets/css/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ input {
width: 100%;
margin-top: 10px;
margin-bottom: 10px;
// padding: $base-margin/2;
padding: 5px 10px;
}

select {
Expand Down
2 changes: 1 addition & 1 deletion assets/js/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const App = {
return {
// App info
title: "Draw something",
version: "beta 1.2",
version: "1.2",
// WLED JSON
url: "",
size: 10,
Expand Down
4 changes: 3 additions & 1 deletion dist/drawsomething.html
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,7 @@
width: 100%;
margin-top: 10px;
margin-bottom: 10px;
padding: 5px 10px;
}

select {
Expand Down Expand Up @@ -625,6 +626,7 @@
}/*# sourceMappingURL=style.css.map */</style>
<!-- HTML Meta Tags -->
<title>WLED Draw Something</title>

<meta name="description" content="A pixel art tool that allows you to draw something and see it live update in your WLED 2D Matrix">

<!-- Facebook Meta Tags -->
Expand Down Expand Up @@ -775,7 +777,7 @@ <h3>We could not fetch your settings at <i>{{url}}</i></h3>
return {
// App info
title: "Draw something",
version: "beta 1.2",
version: "1.2",
// WLED JSON
url: "",
size: 10,
Expand Down
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<link rel="stylesheet" href="./assets/css/style.css" inline>
<!-- HTML Meta Tags -->
<title>WLED Draw Something</title>

<meta name="description" content="A pixel art tool that allows you to draw something and see it live update in your WLED 2D Matrix">

<!-- Facebook Meta Tags -->
Expand Down
5 changes: 5 additions & 0 deletions nodemon.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"watch": [
"*"
]
}
10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"dependencies": {
"name": "wled-draw-something",
"version": "1.0.0",
"devDependencies": {
"dev": "nodemon build.js",
"cheerio": "^1.0.0-rc.12",
"fs-extra": "^11.2.0"
"fs-extra": "^11.2.0",
"nodemon": "^3.0.3"
}
}
}

0 comments on commit f0dfe3c

Please sign in to comment.