From a1d03973c6029c75185c940394d71b75fb45fda4 Mon Sep 17 00:00:00 2001 From: Ione 15 Date: Thu, 28 Mar 2024 22:44:33 +0100 Subject: [PATCH] test --- ...pak-mainfest.yaml => flatpak-mainfest.json | 32 ++++++++----------- main.py | 1 + 2 files changed, 15 insertions(+), 18 deletions(-) rename flatpak-mainfest.yaml => flatpak-mainfest.json (95%) diff --git a/flatpak-mainfest.yaml b/flatpak-mainfest.json similarity index 95% rename from flatpak-mainfest.yaml rename to flatpak-mainfest.json index 627910f..970c0d1 100644 --- a/flatpak-mainfest.yaml +++ b/flatpak-mainfest.json @@ -4,9 +4,20 @@ "runtime-version": "23.08", "sdk": "org.freedesktop.Sdk", "name": "com.ione15.ion_todo_planner", + "buildsystem": "simple", "command": "main.py", - "modules": [ + "build-commands": [ + "pip3 install --prefix=${FLATPAK_DEST} ." + ], + "sources": [ { + "type": "git", + "url": "https://github.com/iwalton3/tkinter-standalone", + "commit": "d9cb97c5bd4f814c73678366e0e48220776b6ad3" + } + ], + "modules": [ + { "name": "main", "buildsystem": "simple", "build-commands": [ @@ -17,20 +28,8 @@ "type": "file", "path": "main.py" } - ], - "name": "tkinter", - "buildsystem": "simple", - "build-commands": [ - "pip3 install --prefix=${FLATPAK_DEST} ." - ], - "sources": [ - { - "type": "git", - "url": "https://github.com/iwalton3/tkinter-standalone", - "commit": "d9cb97c5bd4f814c73678366e0e48220776b6ad3" - } - ], - "modules": [ + ] + }, { "name": "tcl8.6", "sources": [ @@ -60,7 +59,4 @@ ] } ] - } - ] } - diff --git a/main.py b/main.py index abd6a75..411d1e9 100755 --- a/main.py +++ b/main.py @@ -18,6 +18,7 @@ from datetime import datetime import time import tkinter as tk from collections import OrderedDict +print("alive") con = sqlite3.connect("todo.db") cur = con.cursor()