From 5bac6fbc88d0a29b1990bf3fb9909c8d8e67916d Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Sun, 25 Jul 2021 01:50:19 +0200 Subject: [PATCH] Tabby 1.0.148 --- CHANGELOG.md | 4 ++++ README.md | 20 ++++++++++---------- build.properties | 16 ++++++++-------- build.xml | 4 ++-- go.mod | 2 +- main.go | 6 +++--- 6 files changed, 28 insertions(+), 24 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2289f9a..5da455e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.0.148-5 (2021/07/25) + +* Tabby 1.0.148 + ## 1.0.138-4 (2021/05/13) * Terminus 1.0.138 diff --git a/README.md b/README.md index ecc6f4e..ab59a33 100644 --- a/README.md +++ b/README.md @@ -1,28 +1,28 @@ -

+

- GitHub release - Total downloads - Build Status - Go Report + GitHub release + Total downloads + Build Status + Go Report
Become a sponsor Donate Paypal

## Notice of Non-Affiliation and Disclaimer -Portapps is not affiliated, associated, authorized, endorsed by, or in any way officially connected with Terminus™, +Portapps is not affiliated, associated, authorized, endorsed by, or in any way officially connected with Tabby™, or any of its subsidiaries or its affiliates. -The official Terminus™ website can be found at https://eugeny.github.io/terminus/. +The official Tabby™ website can be found at https://tabby.sh. -The name Terminus™ as well as related names, marks, emblems and images are registered trademarks of their respective +The name Tabby™ as well as related names, marks, emblems and images are registered trademarks of their respective owners. ## About -Terminus™ portable app made with 🚀 [Portapps](https://portapps.io).
-Documentation and downloads can be found on https://portapps.io/app/terminus-portable/ +Tabby™ portable app made with 🚀 [Portapps](https://portapps.io).
+Documentation and downloads can be found on https://portapps.io/app/tabby-portable/ ## How can I help? diff --git a/build.properties b/build.properties index 56bd7c1..6a20346 100644 --- a/build.properties +++ b/build.properties @@ -2,12 +2,12 @@ core.dir = ../portapps # App -app = terminus -app.name = Terminus +app = tabby +app.name = Tabby app.type = archive -app.version = 1.0.138 -app.release = 4 -app.homepage = https://eugeny.github.io/terminus/ +app.version = 1.0.148 +app.release = 5 +app.homepage = https://tabby.sh # Portable app papp.id = ${app}-portable @@ -18,8 +18,8 @@ papp.url = https://github.com/portapps/${papp.id} papp.folder = app # Official artifacts -atf.id = terminus -atf.win64.filename = terminus-${app.version}-setup +atf.id = tabby +atf.win64.filename = tabby-${app.version}-setup atf.win64.ext = .exe -atf.win64.url = https://github.com/Eugeny/terminus/releases/download/v${app.version}/terminus-${app.version}-setup.exe +atf.win64.url = https://github.com/Eugeny/tabby/releases/download/v${app.version}/tabby-${app.version}-setup.exe atf.win64.assertextract = $PLUGINSDIR/app-64.7z diff --git a/build.xml b/build.xml index b8cbd58..57d0554 100644 --- a/build.xml +++ b/build.xml @@ -1,7 +1,7 @@ - + - + diff --git a/go.mod b/go.mod index dd99e29..729621f 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/portapps/terminus-portable +module github.com/portapps/tabby-portable go 1.16 diff --git a/main.go b/main.go index 23831ba..35db02a 100644 --- a/main.go +++ b/main.go @@ -29,14 +29,14 @@ func init() { } // Init app - if app, err = portapps.NewWithCfg("terminus-portable", "Terminus", cfg); err != nil { + if app, err = portapps.NewWithCfg("tabby-portable", "Tabby", cfg); err != nil { log.Fatal().Err(err).Msg("Cannot initialize application. See log file for more info.") } } func main() { utl.CreateFolder(app.DataPath) - app.Process = utl.PathJoin(app.AppPath, "Terminus.exe") + app.Process = utl.PathJoin(app.AppPath, "Tabby.exe") app.Args = []string{ "--user-data-dir=" + app.DataPath, } @@ -45,7 +45,7 @@ func main() { if cfg.Cleanup { defer func() { utl.Cleanup([]string{ - path.Join(os.Getenv("APPDATA"), "terminus"), + path.Join(os.Getenv("APPDATA"), "tabby"), }) }() }