Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
xssnick committed Apr 22, 2024
1 parent b43bbfd commit 80778bd
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions additional/port-check-server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ func main() {
}
defer listen.Close()

println("started on tcp 9099")
log.Println("started on tcp 9099")
for {
conn, err := listen.Accept()
if err != nil {
Expand All @@ -25,7 +25,7 @@ func main() {
}

func handle(conn net.Conn) {
println("conn from", conn.RemoteAddr().String())
log.Println("conn from", conn.RemoteAddr().String())
defer conn.Close()

buffer := make([]byte, 8)
Expand All @@ -35,7 +35,7 @@ func handle(conn net.Conn) {
}

if string(buffer[:2]) == "ME" {
println("check request from", conn.RemoteAddr().String())
log.Println("check request from", conn.RemoteAddr().String())

conn.Write([]byte("OK"))

Expand Down
2 changes: 1 addition & 1 deletion app.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func NewApp() *App {
oshook.HookStartup(a.openFile, a.openHash)
adnl.Logger = func(v ...any) {}
storage.Logger = log.Println
storage.DownloadThreads = 100
storage.DownloadThreads = 120
storage.DownloadPrefetch = storage.DownloadThreads * 5

var err error
Expand Down
2 changes: 1 addition & 1 deletion build/windows/installer/project.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Unicode true
## !define INFO_PROJECTNAME "MyProject" # Default "{{.Name}}"
## !define INFO_COMPANYNAME "MyCompany" # Default "{{.Info.CompanyName}}"
## !define INFO_PRODUCTNAME "MyProduct" # Default "{{.Info.ProductName}}"
## !define INFO_PRODUCTVERSION "1.2.1" # Default "{{.Info.ProductVersion}}"
## !define INFO_PRODUCTVERSION "1.3.0" # Default "{{.Info.ProductVersion}}"
## !define INFO_COPYRIGHT "Copyright" # Default "{{.Info.Copyright}}"
###
## !define PRODUCT_EXECUTABLE "Application.exe" # Default "${INFO_PROJECTNAME}.exe"
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/ModalSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export class SettingsModal extends Component<SettingsModalProps, State> {
</button>
</div>
<div className="modal-version">
<span className="version">Version 1.2.1</span>
<span className="version">Version 1.3.0</span>
<span className="check" onClick={()=>{
BrowserOpenURL("https://github.com/xssnick/TON-Torrent/releases")
}}>Check updates</span>
Expand Down

0 comments on commit 80778bd

Please sign in to comment.