diff --git a/wealthpilot/Chart.yaml b/wealthpilot/Chart.yaml index 153792e14..97ce102d3 100644 --- a/wealthpilot/Chart.yaml +++ b/wealthpilot/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 appVersion: "1.0.0" -version: "1.0.0" +version: "1.0.1" description: AI-powered personal finance tracker with smart categorization, budgets, and spending predictions. name: wealthpilot type: application diff --git a/wealthpilot/OlaresManifest.yaml b/wealthpilot/OlaresManifest.yaml index 68f83c051..78acf93db 100644 --- a/wealthpilot/OlaresManifest.yaml +++ b/wealthpilot/OlaresManifest.yaml @@ -1,15 +1,19 @@ -olaresManifest.version: '0.11.0' +olaresManifest.version: '0.12.0' olaresManifest.type: app +apiVersion: 'v3' + +workloadReplicas: + wealthpilot: 1 metadata: name: wealthpilot description: AI-powered personal finance tracker with smart categorization, budgets, and spending predictions icon: https://phoenix--ai.com/static/wealthpilot-icon.png appid: wealthpilot - version: '1.0.0' + version: '1.0.1' title: WealthPilot categories: - - Utilities - - Productivity + - Utilities_v112 + - Productivity_v112 permission: appData: true appCache: true @@ -51,6 +55,7 @@ spec: submitter: veyvey45-eng locale: - en-US + - zh-CN - fr-FR requiredMemory: 256Mi limitedMemory: 512Mi @@ -69,7 +74,7 @@ options: dependencies: - name: olares type: system - version: '>=1.10.0-0' + version: '>=1.12.6-0' entrances: - authLevel: private host: wealthpilot-svc diff --git a/wealthpilot/i18n/en-US.yaml b/wealthpilot/i18n/en-US/OlaresManifest.yaml similarity index 100% rename from wealthpilot/i18n/en-US.yaml rename to wealthpilot/i18n/en-US/OlaresManifest.yaml diff --git a/wealthpilot/i18n/fr-FR/OlaresManifest.yaml b/wealthpilot/i18n/fr-FR/OlaresManifest.yaml new file mode 100644 index 000000000..5b75bb4b3 --- /dev/null +++ b/wealthpilot/i18n/fr-FR/OlaresManifest.yaml @@ -0,0 +1,16 @@ +metadata: + title: WealthPilot + description: Suivi financier personnel propulsé par l'IA avec catégorisation intelligente, budgets et prévisions de dépenses +spec: + fullDescription: | + WealthPilot est un suivi financier personnel auto-hébergé propulsé par l'IA, pour maîtriser votre argent en toute confidentialité. + + Fonctionnalités : + - Catégorisation intelligente : classe automatiquement vos transactions dans 21 catégories + - Tableau de bord visuel : graphiques des tendances et répartition par catégorie + - Gestion du budget : budgets mensuels par catégorie avec alertes + - Objectifs d'épargne : montants cibles et échéances avec suivi visuel + - Import CSV : importez les transactions de n'importe quelle banque + - Prévisions de dépenses : prédictions basées sur l'historique + - Détection d'anomalies : alertes sur les transactions inhabituelles + - Confidentialité d'abord : toutes les données restent sur VOTRE serveur diff --git a/wealthpilot/i18n/zh-CN/OlaresManifest.yaml b/wealthpilot/i18n/zh-CN/OlaresManifest.yaml new file mode 100644 index 000000000..7f68339b7 --- /dev/null +++ b/wealthpilot/i18n/zh-CN/OlaresManifest.yaml @@ -0,0 +1,16 @@ +metadata: + title: WealthPilot + description: 具备智能分类、预算与消费预测的 AI 个人理财追踪工具 +spec: + fullDescription: | + WealthPilot 是一款自托管的 AI 个人理财追踪应用,帮助你在完全隐私的前提下掌控财务。 + + **主要功能:** + - 智能 AI 分类:自动将交易归入 21 个类别 + - 可视化仪表盘:展示消费趋势与分类占比 + - 预算管理:按类别设置月度预算并接收提醒 + - 储蓄目标:设定目标金额与截止日期并可视化进度 + - CSV 导入:从任意银行通过 CSV 导入交易 + - 消费预测:基于历史数据的 AI 预测,便于提前规划 + - 异常检测:对偏离日常消费的异常交易发出提醒 + - 隐私优先:所有数据保存在你自己的服务器上 diff --git a/wealthpilot/templates/wealthpilot.yaml b/wealthpilot/templates/wealthpilot.yaml index 06675315f..3b95cdddf 100644 --- a/wealthpilot/templates/wealthpilot.yaml +++ b/wealthpilot/templates/wealthpilot.yaml @@ -6,7 +6,7 @@ metadata: labels: io.kompose.service: wealthpilot spec: - replicas: 1 + replicas: {{ .Values.workloads.wealthpilot.replicaCount }} selector: matchLabels: io.kompose.service: wealthpilot diff --git a/wealthpilot/values.yaml b/wealthpilot/values.yaml index aeb2bf38a..3f3b14402 100644 --- a/wealthpilot/values.yaml +++ b/wealthpilot/values.yaml @@ -2,3 +2,7 @@ image: version: '1.0.0' userspace: appdata: "" + +workloads: + wealthpilot: + replicaCount: 1