Rename project to GoSentry
Rename the application, Go module path, command package, build artifacts, resource script, and embedded icon assets from PySentry/pysentry to GoSentry/gosentry. Move portable settings to gosentry.yaml while reading legacy pysentry.yaml during the transition, then rewrite settings under the new name. Update Windows and Linux autostart integration to use GoSentry names while cleaning up legacy PySentry registry, desktop-entry, and systemd artifacts. Refresh README, architecture notes, roadmap, changelog, and release examples for version 0.3.0.
This commit is contained in:
+5
-1
@@ -8,7 +8,11 @@ import (
|
||||
const (
|
||||
// The config file stays beside the executable so the portable build behaves
|
||||
// predictably: moving the program folder moves its settings with it.
|
||||
ConfigFileName = "pysentry.yaml"
|
||||
ConfigFileName = "gosentry.yaml"
|
||||
// Older builds were named PySentry. Keep the old config name readable during
|
||||
// the rename window so portable installations can start once and rewrite the
|
||||
// settings to gosentry.yaml without manual file copying.
|
||||
LegacyConfigFileName = "pysentry.yaml"
|
||||
// Jobs are kept in a separate YAML file because the user can choose a
|
||||
// different jobs directory, while application settings remain local to the
|
||||
// installed/copied program.
|
||||
|
||||
Reference in New Issue
Block a user