Skip to content

Commit 575ffd8

Browse files
leandroBorgesFerreiraLeandro Ferreira
andauthored
Adding cloud (#465)
Co-authored-by: Leandro Ferreira <[email protected]>
1 parent 1c7f93c commit 575ffd8

7 files changed

Lines changed: 9 additions & 4 deletions

File tree

application/composeApp/src/jvmMain/kotlin/io/writeopia/desktop/MainDesktop.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ private fun ApplicationScope.App(onCloseRequest: () -> Unit = ::exitApplication)
213213
val database = databaseState.writeopiaDb
214214

215215
WriteopiaDbInjector.initialize(database)
216-
WriteopiaConnectionInjector.setBaseUrl("http://localhost:8080")
216+
WriteopiaConnectionInjector.setBaseUrl("https://writeopia.dev")
217217

218218
val authInjection = AuthInjection()
219219

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
ALTER TABLE writeopia_user_entity ADD COLUMN tier TEXT;
2+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ALTER TABLE folderEntity ADD COLUMN last_synced_at INTEGER;
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
ALTER TABLE documentEntity ADD COLUMN company_id INTEGER;
2+
ALTER TABLE documentEntity ADD COLUMN deleted INTEGER NOT NULL DEFAULT 0;

application/core/resources/src/commonMain/composeResources/values-en/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
<string name="download_models">Download Model</string>
5454
<string name="suggestions">Suggestions:</string>
5555
<string name="error_model_download">Error when downloading model.</string>
56-
<string name="version">Alpha43 - Amado, Jorge</string>
56+
<string name="version">Alpha44 - Amado, Jorge</string>
5757
<string name="light_theme">Light</string>
5858
<string name="dark_theme">Dark</string>
5959
<string name="system_theme">System</string>

application/core/resources/src/commonMain/composeResources/values-pt/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
<string name="download_models">Baixar modelos</string>
5252
<string name="suggestions">Sugestões:</string>
5353
<string name="error_model_download">Error ao baixar modelo.</string>
54-
<string name="version">"Alpha43 - Amado, Jorge"</string>
54+
<string name="version">"Alpha44 - Amado, Jorge"</string>
5555
<string name="light_theme">Claro</string>
5656
<string name="dark_theme">Escuro</string>
5757
<string name="system_theme">Sistema</string>

application/core/resources/src/commonMain/composeResources/values/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
<string name="download_models">Download Model</string>
5454
<string name="suggestions">Suggestions:</string>
5555
<string name="error_model_download">Error when downloading model.</string>
56-
<string name="version">Alpha43 - Amado, Jorge</string>
56+
<string name="version">Alpha44 - Amado, Jorge</string>
5757
<string name="light_theme">Light</string>
5858
<string name="dark_theme">Dark</string>
5959
<string name="system_theme">System</string>

0 commit comments

Comments
 (0)