version bump

This commit is contained in:
ppc
2024-09-05 10:45:10 +01:00
parent e7c521cf2e
commit e467329db8
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "AMNet",
"scheme": "amnet",
"version": "1.0.0",
"version": "1.1.0",
"slug": "amnet-native",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "amnet-native",
"version": "1.0.0",
"version": "1.1.0",
"private": true,
"scripts": {
"android": "expo run:android",
+1 -1
View File
@@ -19,7 +19,7 @@ const db = new Dexie('amnet_db') as Dexie & {
cards: EntityTable<AimeCard, 'id'>;
};
db.version(1).stores({
db.version(2).stores({
servers: '++id, serverAddress',
cards: 'id'
});