Name change to ppForge
build
Details
build
Details
This commit is contained in:
parent
e367842000
commit
6ebd7b45ca
|
@ -1,6 +1,6 @@
|
|||
# This is an example .goreleaser.yml file with some sensible defaults.
|
||||
# Make sure to check the documentation at https://goreleaser.com
|
||||
project_name: ppf
|
||||
project_name: ppforge
|
||||
before:
|
||||
hooks:
|
||||
# You may remove this if you don't use go modules.
|
||||
|
@ -8,9 +8,9 @@ before:
|
|||
# you may remove this if you don't need go generate
|
||||
#- go generate ./...
|
||||
builds:
|
||||
- main: ./cmd/ppf/main.go
|
||||
id: "ppf"
|
||||
binary: ppf
|
||||
- main: ./cmd/ppforge/main.go
|
||||
id: "ppforge"
|
||||
binary: ppforge
|
||||
# env:
|
||||
# - CGO_ENABLED=0
|
||||
goarch:
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"gitea.mmo.to/ProtocolPacketForger/ppf/internal/app"
|
||||
"gitea.mmo.to/ppForge/ppforge/internal/app"
|
||||
)
|
||||
|
||||
func main() {
|
2
go.mod
2
go.mod
|
@ -1,4 +1,4 @@
|
|||
module gitea.mmo.to/ProtocolPacketForger/ppf
|
||||
module gitea.mmo.to/ppForge/ppforge
|
||||
|
||||
go 1.20
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ package app
|
|||
import (
|
||||
"fyne.io/fyne/v2"
|
||||
"fyne.io/fyne/v2/app"
|
||||
"gitea.mmo.to/ProtocolPacketForger/ppf/internal/ui"
|
||||
"gitea.mmo.to/ppForge/ppforge/internal/ui"
|
||||
)
|
||||
|
||||
var fyneApp fyne.App
|
||||
|
|
|
@ -2,7 +2,7 @@ package ui
|
|||
|
||||
import (
|
||||
"fyne.io/fyne/v2/widget"
|
||||
"gitea.mmo.to/ProtocolPacketForger/ppf/protocolctl"
|
||||
"gitea.mmo.to/ppForge/ppforge/protocolctl"
|
||||
)
|
||||
|
||||
func GetAdder(pEd *ProtocolEditor) *widget.Button {
|
||||
|
|
|
@ -9,8 +9,8 @@ import (
|
|||
"fyne.io/fyne/v2/layout"
|
||||
"fyne.io/fyne/v2/theme"
|
||||
"fyne.io/fyne/v2/widget"
|
||||
"gitea.mmo.to/ProtocolPacketForger/ppf/protocol"
|
||||
"gitea.mmo.to/ProtocolPacketForger/ppf/protocolctl"
|
||||
"gitea.mmo.to/ppForge/ppforge/protocol"
|
||||
"gitea.mmo.to/ppForge/ppforge/protocolctl"
|
||||
)
|
||||
|
||||
type FieldEditor struct {
|
||||
|
|
|
@ -2,7 +2,7 @@ package ui
|
|||
|
||||
import (
|
||||
"fyne.io/fyne/v2/widget"
|
||||
"gitea.mmo.to/ProtocolPacketForger/ppf/protocol"
|
||||
"gitea.mmo.to/ppForge/ppforge/protocol"
|
||||
)
|
||||
|
||||
func CreateView(field protocol.Field) *widget.BaseWidget {
|
||||
|
|
|
@ -7,9 +7,9 @@ import (
|
|||
"fyne.io/fyne/v2/container"
|
||||
"fyne.io/fyne/v2/layout"
|
||||
"fyne.io/fyne/v2/widget"
|
||||
"gitea.mmo.to/ProtocolPacketForger/ppf/packet"
|
||||
"gitea.mmo.to/ProtocolPacketForger/ppf/protocol"
|
||||
"gitea.mmo.to/ProtocolPacketForger/ppf/protocolctl"
|
||||
"gitea.mmo.to/ppForge/ppforge/packet"
|
||||
"gitea.mmo.to/ppForge/ppforge/protocol"
|
||||
"gitea.mmo.to/ppForge/ppforge/protocolctl"
|
||||
)
|
||||
|
||||
type Metadata struct {
|
||||
|
|
|
@ -5,8 +5,8 @@ import (
|
|||
|
||||
"fyne.io/fyne/v2"
|
||||
"fyne.io/fyne/v2/container"
|
||||
"gitea.mmo.to/ProtocolPacketForger/ppf/packet"
|
||||
"gitea.mmo.to/ProtocolPacketForger/ppf/packetctl"
|
||||
"gitea.mmo.to/ppForge/ppforge/packet"
|
||||
"gitea.mmo.to/ppForge/ppforge/packetctl"
|
||||
)
|
||||
|
||||
type PacketEditor struct {
|
||||
|
|
|
@ -4,8 +4,8 @@ import (
|
|||
"fyne.io/fyne/v2"
|
||||
"fyne.io/fyne/v2/container"
|
||||
"fyne.io/fyne/v2/widget"
|
||||
"gitea.mmo.to/ProtocolPacketForger/ppf/packet"
|
||||
"gitea.mmo.to/ProtocolPacketForger/ppf/packetctl"
|
||||
"gitea.mmo.to/ppForge/ppforge/packet"
|
||||
"gitea.mmo.to/ppForge/ppforge/packetctl"
|
||||
)
|
||||
|
||||
type PacketFieldEditor struct {
|
||||
|
|
|
@ -2,8 +2,8 @@ package ui
|
|||
|
||||
import (
|
||||
"fyne.io/fyne/v2/container"
|
||||
"gitea.mmo.to/ProtocolPacketForger/ppf/packet"
|
||||
"gitea.mmo.to/ProtocolPacketForger/ppf/packetctl"
|
||||
"gitea.mmo.to/ppForge/ppforge/packet"
|
||||
"gitea.mmo.to/ppForge/ppforge/packetctl"
|
||||
)
|
||||
|
||||
// PacketFileHandler implements TabProvider, FileHandler
|
||||
|
|
|
@ -5,8 +5,8 @@ import (
|
|||
|
||||
"fyne.io/fyne/v2"
|
||||
"fyne.io/fyne/v2/container"
|
||||
"gitea.mmo.to/ProtocolPacketForger/ppf/protocol"
|
||||
"gitea.mmo.to/ProtocolPacketForger/ppf/protocolctl"
|
||||
"gitea.mmo.to/ppForge/ppforge/protocol"
|
||||
"gitea.mmo.to/ppForge/ppforge/protocolctl"
|
||||
)
|
||||
|
||||
type ProtocolEditor struct {
|
||||
|
|
|
@ -5,8 +5,8 @@ import (
|
|||
|
||||
"fyne.io/fyne/v2"
|
||||
"fyne.io/fyne/v2/container"
|
||||
"gitea.mmo.to/ProtocolPacketForger/ppf/protocol"
|
||||
"gitea.mmo.to/ProtocolPacketForger/ppf/protocolctl"
|
||||
"gitea.mmo.to/ppForge/ppforge/protocol"
|
||||
"gitea.mmo.to/ppForge/ppforge/protocolctl"
|
||||
)
|
||||
|
||||
// implements FileHandler, TabProvider
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package packet
|
||||
|
||||
import "gitea.mmo.to/ProtocolPacketForger/ppf/protocol"
|
||||
import "gitea.mmo.to/ppForge/ppforge/protocol"
|
||||
|
||||
// FieldValue implements protocol.ProtocolFieldReferencer
|
||||
type FieldValue struct {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package packet
|
||||
|
||||
import "gitea.mmo.to/ProtocolPacketForger/ppf/protocol"
|
||||
import "gitea.mmo.to/ppForge/ppforge/protocol"
|
||||
|
||||
// Layer implements protocol.ProtocolReferencer
|
||||
type Layer struct {
|
||||
|
|
|
@ -5,7 +5,7 @@ import (
|
|||
"io/fs"
|
||||
"os"
|
||||
|
||||
"gitea.mmo.to/ProtocolPacketForger/ppf/packet"
|
||||
"gitea.mmo.to/ppForge/ppforge/packet"
|
||||
)
|
||||
|
||||
func NewPacketStructure() *packet.Structure {
|
||||
|
|
|
@ -5,7 +5,7 @@ import (
|
|||
"io/fs"
|
||||
"os"
|
||||
|
||||
"gitea.mmo.to/ProtocolPacketForger/ppf/protocol"
|
||||
"gitea.mmo.to/ppForge/ppforge/protocol"
|
||||
)
|
||||
|
||||
func NewProtocolStructure() *protocol.ProtocolStructure {
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"fmt"
|
||||
"testing"
|
||||
|
||||
"gitea.mmo.to/ProtocolPacketForger/ppf/protocol"
|
||||
"gitea.mmo.to/ppForge/ppforge/protocol"
|
||||
)
|
||||
|
||||
func TestUpdateMetaData(t *testing.T) {
|
||||
|
|
|
@ -8,8 +8,8 @@ import (
|
|||
"path/filepath"
|
||||
"strings"
|
||||
|
||||
"gitea.mmo.to/ProtocolPacketForger/ppf/protocol"
|
||||
"gitea.mmo.to/ProtocolPacketForger/ppf/protocolctl"
|
||||
"gitea.mmo.to/ppForge/ppforge/protocol"
|
||||
"gitea.mmo.to/ppForge/ppforge/protocolctl"
|
||||
)
|
||||
|
||||
// PPFDatabases is a list of all databases, with the most simple interface
|
||||
|
|
Loading…
Reference in New Issue