Skip to content
This repository has been archived by the owner on Jul 20, 2022. It is now read-only.

Commit

Permalink
Make fork official
Browse files Browse the repository at this point in the history
  • Loading branch information
balloob committed Jun 21, 2021
1 parent 9fc0996 commit 4c85629
Show file tree
Hide file tree
Showing 7 changed files with 51 additions and 28 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ name: CI

on:
push:
branches: [main, fork]
branches:
- main
pull_request:
branches: [main, fork]
branches:
- main

jobs:
build:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
branches:
- main
- fork

jobs:
update_release_draft:
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,4 @@ A Web Serial package for updating your ESP bootloader via the browser.

## Fork

This is a fork of [Adafruit WebSerial ESPTool](https://github.com/adafruit/Adafruit_WebSerial_ESPTool). Their repository is a single-use website. This fork converts the code into a reusable package.

The changes of this fork are part of [an open pull request](https://github.com/adafruit/Adafruit_WebSerial_ESPTool/pull/10) upstream. If accepted in a way that it's usable for our projects, we can retire this project.
This is a fork of [Adafruit WebSerial ESPTool](https://github.com/adafruit/Adafruit_WebSerial_ESPTool). At the time fo the fork, their repository was a single-use website. This fork converted the code into a reusable package and published it to NPM.
31 changes: 15 additions & 16 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@
color: #000;
}

button, .firmware {
button,
.firmware {
height: 25px;
font-size: 16px;
border-radius: 15px;
Expand All @@ -54,7 +55,10 @@ p {
margin: 0;
}

input, select, button, label {
input,
select,
button,
label {
font-weight: 600;
outline: none;
}
Expand All @@ -75,12 +79,6 @@ div.clear {
clear: both;
}

.Adafruit-Logo {
width: 115px;
height: 40px;
object-fit: contain;
}

.main {
overflow-x: hidden;
overflow-y: auto;
Expand Down Expand Up @@ -125,7 +123,8 @@ div.clear {
height: calc(100vh - 330px);
}

#commands, #log {
#commands,
#log {
transition: height 0.5s;
}

Expand All @@ -144,7 +143,7 @@ div.clear {
font-size: 16px;
overflow-x: hidden;
overflow-x: auto;
transition : color 0.1s linear;
transition: color 0.1s linear;
padding: 0 50px;
border: 20px solid #000;
-ms-overflow-style: none;
Expand Down Expand Up @@ -310,12 +309,12 @@ div.clear {
}

.firmware > input {
width: 0.1px;
height: 0.1px;
opacity: 0;
overflow: hidden;
position: absolute;
z-index: -1;
width: 0.1px;
height: 0.1px;
opacity: 0;
overflow: hidden;
position: absolute;
z-index: -1;
}

.firmware {
Expand Down
4 changes: 1 addition & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,7 @@
</head>
<body>
<header class="header">
<div class="left">
<!-- <img src="assets/adafruit-logo.svg" class="Adafruit-Logo" /> -->
</div>
<div class="left"></div>
<div class="right">
<select id="baudRate"></select>
<button id="butConnect" type="button">Connect</button>
Expand Down
31 changes: 29 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "esp-web-flasher",
"version": "2.1.1",
"version": "3.0.0",
"description": "Flash ESP devices using WebSerial",
"main": "dist/index.js",
"repository": "https://github.com/nabucasa/ESP-Web-flasher",
Expand Down

0 comments on commit 4c85629

Please sign in to comment.