book-reader/app/src/main/java/com/aryan/reader/data/CustomFontDao.kt
Aryan c6363f3061
Update readme (#3)
docs: Revamp README and add APK naming convention

This commit introduces a complete overhaul of the `README.md` to improve project presentation. Key changes include:
*   Adds a new header with the app icon and a Google Play badge.
*   Updates the feature graphic and includes a note distinguishing the OSS version from the Play Store version.
*   Refines the "Open Source Libraries" section to be more structured.
*   Moves the main preview image into the `docs` directory.

Additionally, the `app/build.gradle.kts` file is updated to configure a standardized naming convention for output APK files, including flavor, version, and build type.

* refactor copyright headers and fix README icon alignment

This commit introduces two main changes across the codebase:

The `spotless/copyright.kt` template have been updated for consistency:
*   The author name is simplified from "Episteme Authors" to "Episteme".
*   The contact email prefix is shortened from "Electronic mail:" to "mail:".

Second, the `README.md` file is adjusted to correct the vertical alignment of the app icon with the project title.
2026-02-25 21:30:28 +05:30

53 lines
No EOL
1.9 KiB
Kotlin

/*
* Episteme Reader - A native Android document reader.
* Copyright (C) 2026 Episteme
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* mail: epistemereader@gmail.com
*/
package com.aryan.reader.data
import androidx.room.Dao
import androidx.room.Insert
import androidx.room.OnConflictStrategy
import androidx.room.Query
import kotlinx.coroutines.flow.Flow
@Dao
interface CustomFontDao {
@Query("SELECT * FROM custom_fonts WHERE isDeleted = 0 ORDER BY displayName ASC")
fun getAllFonts(): Flow<List<CustomFontEntity>>
@Query("SELECT * FROM custom_fonts WHERE isDeleted = 0")
suspend fun getAllFontsList(): List<CustomFontEntity>
@Query("SELECT * FROM custom_fonts")
suspend fun getAllFontsIncludingDeleted(): List<CustomFontEntity>
@Insert(onConflict = OnConflictStrategy.REPLACE)
suspend fun insertFont(font: CustomFontEntity)
@Query("SELECT * FROM custom_fonts WHERE id = :id")
suspend fun getFontById(id: String): CustomFontEntity?
@Query("UPDATE custom_fonts SET isDeleted = 1 WHERE id = :id")
suspend fun markAsDeleted(id: String)
@Query("DELETE FROM custom_fonts WHERE id = :id")
suspend fun deletePermanently(id: String)
@Query("SELECT * FROM custom_fonts WHERE fileName = :fileName LIMIT 1")
suspend fun getFontByFileName(fileName: String): CustomFontEntity?
}