mirror of
				https://github.com/InsanusMokrassar/TelegramBotApiLibraries.git
				synced 2025-10-31 12:10:15 +00:00 
			
		
		
		
	Compare commits
	
		
			5 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 63af9ba8e0 | |||
| b5d0eda79d | |||
| 5d32bf567c | |||
| 0444d5fe8d | |||
| ea18b23a2c | 
| @@ -51,12 +51,12 @@ class DefaultAdminsCacheAPIRepo( | ||||
|     } | ||||
|  | ||||
|     override suspend fun getChatAdmins(chatId: ChatId): List<AdministratorChatMember>? = suspendCoroutine { | ||||
|         actor.offer(GetChatAdminsRepoAction(chatId, it)) | ||||
|         actor.trySend(GetChatAdminsRepoAction(chatId, it)) | ||||
|     } | ||||
|     override suspend fun setChatAdmins(chatId: ChatId, chatMembers: List<AdministratorChatMember>) = suspendCoroutine<Unit> { | ||||
|         actor.offer(SetChatAdminsRepoAction(chatId, chatMembers, it)) | ||||
|         actor.trySend(SetChatAdminsRepoAction(chatId, chatMembers, it)) | ||||
|     } | ||||
|     override suspend fun lastUpdate(chatId: ChatId): DateTime? = suspendCoroutine { | ||||
|         actor.offer(GetUpdateDateTimeRepoAction(chatId, it)) | ||||
|         actor.trySend(GetUpdateDateTimeRepoAction(chatId, it)) | ||||
|     } | ||||
| } | ||||
|   | ||||
| @@ -7,14 +7,14 @@ android.useAndroidX=true | ||||
| android.enableJetifier=true | ||||
|  | ||||
| kotlin_version=1.5.31 | ||||
| kotlin_serialisation_core_version=1.2.2 | ||||
| kotlin_serialisation_core_version=1.3.1 | ||||
|  | ||||
| github_release_plugin_version=2.2.12 | ||||
|  | ||||
| tgbotapi_version=0.35.9 | ||||
| micro_utils_version=0.5.28 | ||||
| exposed_version=0.34.2 | ||||
| plagubot_version=0.3.2 | ||||
| tgbotapi_version=0.37.0 | ||||
| micro_utils_version=0.8.2 | ||||
| exposed_version=0.36.1 | ||||
| plagubot_version=0.4.0 | ||||
|  | ||||
| # ANDROID | ||||
|  | ||||
| @@ -28,10 +28,10 @@ espresso_core=3.3.0 | ||||
|  | ||||
| # Dokka | ||||
|  | ||||
| dokka_version=1.5.30 | ||||
| dokka_version=1.5.31 | ||||
|  | ||||
| # Project data | ||||
|  | ||||
| group=dev.inmo | ||||
| version=0.0.12 | ||||
| android_code_version=11 | ||||
| version=0.0.13 | ||||
| android_code_version=12 | ||||
|   | ||||
							
								
								
									
										2
									
								
								gradle/wrapper/gradle-wrapper.properties
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								gradle/wrapper/gradle-wrapper.properties
									
									
									
									
										vendored
									
									
								
							| @@ -1,5 +1,5 @@ | ||||
| distributionBase=GRADLE_USER_HOME | ||||
| distributionPath=wrapper/dists | ||||
| distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip | ||||
| distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip | ||||
| zipStoreBase=GRADLE_USER_HOME | ||||
| zipStorePath=wrapper/dists | ||||
|   | ||||
| @@ -28,3 +28,9 @@ kotlin { | ||||
|         } | ||||
|     } | ||||
| } | ||||
|  | ||||
| java { | ||||
|     toolchain { | ||||
|         languageVersion = JavaLanguageVersion.of(8) | ||||
|     } | ||||
| } | ||||
|   | ||||
| @@ -47,4 +47,10 @@ kotlin { | ||||
|     } | ||||
| } | ||||
|  | ||||
| java { | ||||
|     toolchain { | ||||
|         languageVersion = JavaLanguageVersion.of(8) | ||||
|     } | ||||
| } | ||||
|  | ||||
| apply from: "$defaultAndroidSettingsPresetPath" | ||||
|   | ||||
		Reference in New Issue
	
	Block a user