Compare commits
	
		
			7 Commits
		
	
	
		
			v123020522
			...
			2c558fe6fd
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|  | 2c558fe6fd | ||
|  | ad88011454 | ||
|  | 559c17bc1d | ||
|  | ab9c46f0eb | ||
|  | aa799d2ca8 | ||
|  | 177c978474 | ||
|  | 39b9991413 | 
| @@ -52,7 +52,7 @@ steps: | ||||
|       - ./build.sh --publish --from-ci | ||||
|       - git remote add pushing https://$GITEA_USR:$GITEA_PASS@gitea.amine-louveau.fr/Louvorg/ReaderForSelfoss-multiplatform.git | ||||
|       - VER=$(git describe --tags --abbrev=0) | ||||
|       - CHANGELOG=$(git log $PREV..HEAD~ --pretty="- %s") | ||||
|       - CHANGELOG=$(git log $PREV..HEAD --pretty="- %s") | ||||
|       - echo "**$VER**\n\n$CHANGELOG\n\n--------------------------------------------------------------------\n\n$(cat CHANGELOG.md)" > CHANGELOG.md | ||||
|       - git add CHANGELOG.md | ||||
|       - git commit -m "Changelog for $VER [CI SKIP]" | ||||
|   | ||||
							
								
								
									
										11
									
								
								CHANGELOG.md
									
									
									
									
									
								
							
							
						
						
									
										11
									
								
								CHANGELOG.md
									
									
									
									
									
								
							| @@ -1,6 +1,15 @@ | ||||
| **v123020521** | ||||
| **v123020571** | ||||
|  | ||||
| - chore: remove errors logging. | ||||
| - fix: quickfix for url param not provided for some sources. | ||||
| - Update 'CHANGELOG.md' | ||||
| - Changelog for v123020523 [CI SKIP] | ||||
|  | ||||
| -------------------------------------------------------------------- | ||||
|  | ||||
| **v123020523** | ||||
|  | ||||
| - fix: Git changelog. | ||||
|  | ||||
| -------------------------------------------------------------------- | ||||
|  | ||||
|   | ||||
| @@ -325,7 +325,7 @@ class ArticleFragment : Fragment(), DIAware { | ||||
|                             getBitmapInputStream(image, Bitmap.CompressFormat.JPEG) | ||||
|                         ) | ||||
|                     } catch (e: ExecutionException) { | ||||
|                         e.sendSilentlyWithAcraWithName("shouldInterceptRequest > jpeg > $url") | ||||
|                         // Do nothing | ||||
|                     } | ||||
|                 } else if (url.lowercase(Locale.US).contains(".png")) { | ||||
|                     try { | ||||
| @@ -337,7 +337,7 @@ class ArticleFragment : Fragment(), DIAware { | ||||
|                             getBitmapInputStream(image, Bitmap.CompressFormat.PNG) | ||||
|                         ) | ||||
|                     } catch (e: ExecutionException) { | ||||
|                         e.sendSilentlyWithAcraWithName("shouldInterceptRequest > png > $url") | ||||
|                         // Do nothing | ||||
|                     } | ||||
|                 } else if (url.lowercase(Locale.US).contains(".webp")) { | ||||
|                     try { | ||||
| @@ -349,7 +349,7 @@ class ArticleFragment : Fragment(), DIAware { | ||||
|                             getBitmapInputStream(image, Bitmap.CompressFormat.WEBP) | ||||
|                         ) | ||||
|                     } catch (e: ExecutionException) { | ||||
|                         e.sendSilentlyWithAcraWithName("shouldInterceptRequest > webp > $url") | ||||
|                         // Do nothing | ||||
|                     } | ||||
|                 } | ||||
|  | ||||
|   | ||||
| @@ -76,7 +76,7 @@ class SelfossModel { | ||||
|     ) | ||||
|     @Serializable | ||||
|     data class SourceParams( | ||||
|         val url: String | ||||
|         val url: String? | ||||
|     ) | ||||
|     @Serializable | ||||
|     data class Item( | ||||
|   | ||||
| @@ -20,7 +20,7 @@ fun SOURCE.toView(): SelfossModel.Source = | ||||
|         this.spout, | ||||
|         this.error, | ||||
|         this.icon, | ||||
|         if (this.url != null) SelfossModel.SourceParams(this.url) else null | ||||
|         SelfossModel.SourceParams(this.url) | ||||
|     ) | ||||
|  | ||||
| fun SelfossModel.Source.toEntity(): SOURCE = | ||||
|   | ||||
		Reference in New Issue
	
	Block a user