Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions AnkiDroid/src/main/java/com/ichi2/libanki/DecksV16.kt
Original file line number Diff line number Diff line change
Expand Up @@ -873,3 +873,8 @@ class DecksV16(private val col: Collection, private val decksBackend: DecksBacke
val Deck.name: str get() = this.getString("name")
val Deck.conf: Long get() = this.getLong("conf")
}

// These take and return bytes that the frontend TypeScript code will encode/decode.
fun CollectionV16.getDeckNamesRaw(input: ByteArray): ByteArray {
return backend.getDeckNamesRaw(input)
}
9 changes: 9 additions & 0 deletions AnkiDroid/src/main/java/com/ichi2/libanki/ModelsV16.kt
Original file line number Diff line number Diff line change
Expand Up @@ -720,3 +720,12 @@ private fun Deck.getLongOrNull(key: String): int? {
return null
}
}

// These take and return bytes that the frontend TypeScript code will encode/decode.
fun CollectionV16.getNotetypeNamesRaw(input: ByteArray): ByteArray {
return backend.getNotetypeNamesRaw(input)
}

fun CollectionV16.getFieldNamesRaw(input: ByteArray): ByteArray {
return backend.getFieldNamesRaw(input)
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
/***************************************************************************************
* Copyright (c) 2022 Ankitects Pty Ltd <http://apps.ankiweb.net> *
* *
* This program is free software; you can redistribute it and/or modify it under *
* the terms of the GNU 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 General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License along with *
* this program. If not, see <http://www.gnu.org/licenses/>. *
****************************************************************************************/

package com.ichi2.libanki.importer

import com.ichi2.libanki.CollectionV16

// These take and return bytes that the frontend TypeScript code will encode/decode.

fun CollectionV16.getCsvMetadataRaw(input: ByteArray): ByteArray {
return backend.getCsvMetadataRaw(input)
}

fun CollectionV16.importCsvRaw(input: ByteArray): ByteArray {
return backend.importCsvRaw(input)
}