Skip to content

Commit 7dcdca6

Browse files
committed
add license, release ver
1 parent 0756753 commit 7dcdca6

File tree

3 files changed

+29
-4
lines changed

3 files changed

+29
-4
lines changed

LICENSE.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) [year] [fullname]
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,16 @@
22
Odile is a simple GUI for the [croc](https://github.com/schollz/croc) utility by Schollz. This program uses [Fyne](https://fyne.io/), a UI toolkit written in Go, as the graphical interface. Effort was made to keep the language in Go (what croc is written in) and the code in one file.
33

44
## Current Status
5-
* Fyne works well, but the file selection currently doesn't fulfill all of croc's needs. I am looking into allowing multiple selection options and folders (perhaps like the [FileZilla interface](https://filezilla-project.org/))
5+
* Fyne works well, but the file selection doesn't fulfill all of croc's needs. Features are ongoing, changes are possible. (perhaps like the [FileZilla interface](https://filezilla-project.org/))
66
* Additional features like utilizing a custom relay server are not implemented.
7-
* GUI is still lacking in error checking and communicating information to the user (~~such as the progress bar~~, what files will be accepted, etc.)
7+
* GUI is still lacking in error checking and communicating information to the user
88
* Currently program has only been tested on Windows 10.
99

1010
Any comments or suggestions are appreciated.
1111

1212
## Build
1313
To compile without background terminal, add these flags.
14-
```go build -ldflags -H=windowsgui gui.go```
14+
```go build -ldflags -H=windowsgui gui.go```
15+
16+
*Windows Firewall keeps asking about this program, what gives?*
17+
https://stackoverflow.com/questions/55201561/golang-run-on-windows-without-deal-with-the-firewall

gui.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
)
2121

2222
const (
23-
VERSION = "0.1.4"
23+
VERSION = "1.0.0"
2424
)
2525

2626
// TO DO : Better error checking
@@ -232,6 +232,7 @@ func (g *OdileGUI) RunProgressBar(){
232232

233233
// Spin locks ahoy!
234234
// Wait until send is ready
235+
// TO DO : This could be a condition variable that waits
235236
for !g.Croc.Transmitting{
236237
}
237238
log.Println("Croc client is ready, waiting for file info transfer")

0 commit comments

Comments
 (0)