test
This commit is contained in:
parent
88e1644a16
commit
a1d03973c6
2 changed files with 15 additions and 18 deletions
|
@ -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 @@
|
|||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
1
main.py
1
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()
|
||||
|
|
Reference in a new issue