changed string Bamort to BaMoRT

This commit is contained in:
2026-01-17 07:35:18 +01:00
parent 7731aa4125
commit 36c619dbb6
19 changed files with 28 additions and 1986 deletions
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1,3 +1,3 @@
This package is part of the Bamort monorepo and is licensed under the PolyForm Noncommercial License 1.0.0.
This package is part of the BaMoRT monorepo and is licensed under the PolyForm Noncommercial License 1.0.0.
See ../LICENSE
+2 -2
View File
@@ -1,6 +1,6 @@
# Bamort Deployment CLI Tool
# BaMoRT Deployment CLI Tool
Command-line interface for Bamort database deployment and maintenance operations.
Command-line interface for BaMoRT database deployment and maintenance operations.
## Building
+2 -2
View File
@@ -50,7 +50,7 @@ func main() {
}
func printHelp() {
fmt.Printf("\n%s%sBamort Deployment Tool%s\n", ColorBold, ColorCyan, ColorReset)
fmt.Printf("\n%s%sBaMoRT Deployment Tool%s\n", ColorBold, ColorCyan, ColorReset)
fmt.Printf("Version: %s\n\n", config.GetVersion())
fmt.Println("Usage: deploy <command> [options]")
fmt.Println("\nCommands:")
@@ -68,7 +68,7 @@ func printHelp() {
}
func cmdVersion() {
fmt.Printf("\n%s%sBamort Deployment Tool%s\n", ColorBold, ColorCyan, ColorReset)
fmt.Printf("\n%s%sBaMoRT Deployment Tool%s\n", ColorBold, ColorCyan, ColorReset)
fmt.Printf("Backend Version: %s%s%s\n", ColorGreen, config.GetVersion(), ColorReset)
fmt.Printf("Required DB Version: %s%s%s\n", ColorGreen, version.GetRequiredDBVersion(), ColorReset)
fmt.Println()
+2 -2
View File
@@ -18,7 +18,7 @@ import (
"github.com/gin-gonic/gin"
)
// @title Bamort API
// @title BaMoRT API
// @version 1
// @description This is the API for Bamort
// @host localhost:8180
@@ -40,7 +40,7 @@ func main() {
logger.SetMinLogLevel(logger.INFO)
}
logger.Info("Bamort Server wird gestartet...")
logger.Info("BaMoRT Server wird gestartet...")
logger.Debug("Debug-Modus ist aktiviert")
logger.Info("Environment: %s", cfg.Environment)
logger.Info("testingDB Set: %s", cfg.DevTesting)
+1 -1
View File
@@ -6,7 +6,7 @@
## Overview
Phase 2 implements master data versioning and fresh installation capabilities for Bamort deployment system.
Phase 2 implements master data versioning and fresh installation capabilities for BaMoRT deployment system.
## Implemented Components
+1 -1
View File
@@ -226,7 +226,7 @@ Admin user: admin
```
```
Bamort Deployment Tool
BaMoRT Deployment Tool
Version: 0.1.37
Usage: deploy <command> [options]
+1 -1
View File
@@ -52,7 +52,7 @@ func (n *NewInstallation) Initialize() (*InstallationResult, error) {
Version: config.GetVersion(),
}
logger.Info("Initializing new Bamort installation...")
logger.Info("Initializing new BaMoRT installation...")
logger.Info("Backend version: %s", result.Version)
// Step 1: Create database schema using GORM
+1 -1
View File
@@ -10,7 +10,7 @@ import (
"strings"
)
// ExportCharToVTT converts a Bamort character to VTT JSON format
// ExportCharToVTT converts a BaMoRT character to VTT JSON format
func ExportCharToVTT(char *models.Char) (*CharacterImport, error) {
vtt := &CharacterImport{}
+1 -1
View File
@@ -1,4 +1,4 @@
# Environment variables for Bamort development environment
# Environment variables for BaMoRT development environment
# API Configuration
# API_URL=http://localhost:8180
+1 -1
View File
@@ -6,7 +6,7 @@
BACKEND_URL="http://localhost:8180"
ENDPOINT="/api/maintenance/transfer-sqlite-to-mariadb"
echo "=== Bamort Data Transfer: SQLite to MariaDB ==="
echo "=== BaMoRT Data Transfer: SQLite to MariaDB ==="
echo ""
# Check if clear parameter is provided
+1 -1
View File
@@ -1,3 +1,3 @@
This package is part of the Bamort monorepo and is licensed under the PolyForm Noncommercial License 1.0.0.
This package is part of the BaMoRT monorepo and is licensed under the PolyForm Noncommercial License 1.0.0.
See ../LICENSE
+2 -2
View File
@@ -1,6 +1,6 @@
# Bamort Frontend
# BaMoRT Frontend
Vue 3 + Vite frontend for the Bamort monorepo.
Vue 3 + Vite frontend for the BaMoRT monorepo.
## Development
+1 -1
View File
@@ -5,7 +5,7 @@
<!-- <link rel="icon" href="/favicon.ico">-->
<link rel="icon" href="/favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bamort</title>
<title>BaMoRT</title>
</head>
<body>
<div id="app"></div>
+5 -5
View File
@@ -16,7 +16,7 @@
<option value="">{{ $t('export.pleaseSelectFormat') }}</option>
<option value="pdf">{{ $t('export.formatPDF') }}</option>
<option value="vtt">{{ $t('export.formatVTT') }}</option>
<option value="bamort">{{ $t('export.formatBamort') }}</option>
<option value="bamort">{{ $t('export.formatBaMoRT') }}</option>
</select>
</div>
<div v-if="selectedFormat === 'pdf'" class="form-group">
@@ -111,7 +111,7 @@ export default {
} else if (this.selectedFormat === 'vtt') {
await this.exportToVTT()
} else if (this.selectedFormat === 'bamort') {
await this.exportToBamort()
await this.exportToBaMoRT()
}
},
@@ -187,11 +187,11 @@ export default {
}
},
async exportToBamort() {
async exportToBaMoRT() {
this.isExporting = true
try {
// Get Bamort JSON data and trigger download
// Get BaMoRT JSON data and trigger download
const response = await API.get(`/api/transfer/download/${this.characterId}`, {
responseType: 'blob'
})
@@ -210,7 +210,7 @@ export default {
this.$emit('export-success')
this.closeDialog()
} catch (error) {
console.error('Failed to export Bamort format:', error)
console.error('Failed to export BaMoRT format:', error)
alert(this.$t('export.exportFailed') + ': ' + (error.response?.data?.error || error.message))
} finally {
this.isExporting = false
+2 -2
View File
@@ -88,7 +88,7 @@ export default {
},
landing:{
title:'BaMoRT - Charakterverwaltung für mein Lieblingsrollenspielsystem',
description:'Bamort ist ein Werkzeug zur Charakterverwaltung für Rollenspiele. Es bietet Funktionen zur Charaktererstellung, -entwicklung und -verwaltung mit Unterstützung für Fertigkeiten, Zauber, Ausrüstung und mehr. Viele Ausrüstungsteile, Fertikeiten und Zauber fehlen noch, da das Projekt noch in der Entwicklung ist.',
description:'BaMoRT ist ein Werkzeug zur Charakterverwaltung für Rollenspiele. Es bietet Funktionen zur Charaktererstellung, -entwicklung und -verwaltung mit Unterstützung für Fertigkeiten, Zauber, Ausrüstung und mehr. Viele Ausrüstungsteile, Fertikeiten und Zauber fehlen noch, da das Projekt noch in der Entwicklung ist.',
frontendVersion:'Frontend Version',
backendVersion:'Backend Version',
version:'Version',
@@ -497,7 +497,7 @@ export default {
selectFormat: 'Format wählen',
formatPDF: 'PDF',
formatVTT: 'VTT Format',
formatBamort: 'Bamort Format (JSON)',
formatBaMoRT: 'BaMoRT Format (JSON)',
selectTemplate: 'Vorlage',
exportPDF: 'PDF Export',
exporting: 'Exportiere...',
+2 -2
View File
@@ -87,7 +87,7 @@ export default {
},
landing:{
title:'BaMoRT - Character Management for Role-Playing Games',
description:'Bamort is a modern character management tool for role-playing games. It provides comprehensive features for character creation, development, and management with support for skills, spells, equipment, and more.',
description:'BaMoRT is a modern character management tool for role-playing games. It provides comprehensive features for character creation, development, and management with support for skills, spells, equipment, and more.',
frontendVersion:'Frontend Version',
backendVersion:'Backend Version',
version:'Version',
@@ -493,7 +493,7 @@ export default {
selectFormat: 'Select Format',
formatPDF: 'PDF',
formatVTT: 'VTT Format',
formatBamort: 'Bamort Format (JSON)',
formatBaMoRT: 'BaMoRT Format (JSON)',
selectTemplate: 'Template',
exportPDF: 'Export PDF',
exporting: 'Exporting...',
+1 -1
View File
@@ -2,7 +2,7 @@
<div class="landing-page">
<div class="landing-content">
<div class="dragon-container">
<img src="/bamorty.png" alt="Bamort Dragon" class="dragon-image" />
<img src="/bamorty.png" alt="BaMoRT Dragon" class="dragon-image" />
</div>
<div class="info-container">
+1 -1
View File
@@ -1,4 +1,4 @@
# Environment variables for Bamort development environment
# Environment variables for BaMoRT development environment
# API Configuration
# API_URL=http://localhost:8180