Skip to content

Commit

Permalink
[~] release tablet v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
UserNameMax committed Aug 10, 2023
1 parent 36d46e7 commit 51b86b5
Show file tree
Hide file tree
Showing 13 changed files with 6 additions and 10 deletions.
Binary file added assets/booking-current-room.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/booking-other-room.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/cancel-event.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/main-screen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/other-room.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/select-dateTime.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/settings.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/succes-booking-current room.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/succes-booking-other-room.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/update-event.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions tabletApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ android {

defaultConfig {
applicationId = "band.effective.office.tablet"
versionCode = 1
versionName = "0.0.1"
versionCode = 2
versionName = "0.1.0"

minSdk = 26
targetSdk = 33
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,12 +164,6 @@ class BookingStoreFactory(private val storeFactory: StoreFactory) : KoinComponen
reset(getState)
}

is BookingStore.Intent.OnSetDate -> setNewDate(
getState,
intent.changedDay,
intent.changedMonth
)

is BookingStore.Intent.OnSetDate -> setNewDate(getState, intent.changedDay, intent.changedMonth, intent.changedYear, intent.changedHour, intent.changedMinute)
is BookingStore.Intent.CloseModal -> intent.close?.invoke()
is BookingStore.Intent.OnChangeIsCurrentSelectTime -> changeIsSelectCurrentTime(
Expand Down Expand Up @@ -391,7 +385,8 @@ class BookingStoreFactory(private val storeFactory: StoreFactory) : KoinComponen
selectDate = GregorianCalendar(),
length = BookingStore.State.default.length,
isSelectCurrentTime = BookingStore.State.default.isSelectCurrentTime,
isOrganizerError = BookingStore.State.default.isOrganizerError
isOrganizerError = BookingStore.State.default.isOrganizerError,
inputText = BookingStore.State.default.inputText
)

}
Expand Down
3 changes: 2 additions & 1 deletion tabletApp/src/androidMain/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
<activity
android:name=".MainActivity"
android:exported="true"
android:lockTaskMode="if_whitelisted">
android:lockTaskMode="if_whitelisted"
android:screenOrientation="landscape">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
Expand Down

0 comments on commit 51b86b5

Please sign in to comment.