Skip to content

Commit

Permalink
add license, release ver
Browse files Browse the repository at this point in the history
  • Loading branch information
stormon-force committed Apr 15, 2021
1 parent 0756753 commit 7dcdca6
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 4 deletions.
21 changes: 21 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) [year] [fullname]

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,16 @@
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.

## Current Status
* 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/))
* 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/))
* Additional features like utilizing a custom relay server are not implemented.
* GUI is still lacking in error checking and communicating information to the user (~~such as the progress bar~~, what files will be accepted, etc.)
* GUI is still lacking in error checking and communicating information to the user
* Currently program has only been tested on Windows 10.

Any comments or suggestions are appreciated.

## Build
To compile without background terminal, add these flags.
```go build -ldflags -H=windowsgui gui.go```
```go build -ldflags -H=windowsgui gui.go```

*Windows Firewall keeps asking about this program, what gives?*
https://stackoverflow.com/questions/55201561/golang-run-on-windows-without-deal-with-the-firewall
3 changes: 2 additions & 1 deletion gui.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
)

const (
VERSION = "0.1.4"
VERSION = "1.0.0"
)

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

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

0 comments on commit 7dcdca6

Please sign in to comment.