[orx-gitarchiver] Disable GitArchiverDemo01.kt in an attempt to fix README generation

This commit is contained in:
Edwin Jakobs
2023-12-14 11:03:02 +01:00
parent 1ef7cdc278
commit 578cc57bf9

View File

@@ -1,25 +1,25 @@
import org.openrndr.application
import org.openrndr.extensions.Screenshots
import org.openrndr.extensions.SingleScreenshot
import org.openrndr.extra.gitarchiver.GitArchiver
fun main() = application {
program {
if (System.getProperty("takeScreenshot") == "true") {
extend(SingleScreenshot()) {
this.outputFile = System.getProperty("screenshotPath")
}
}
val ga = extend(GitArchiver()) {
commitOnRun = true
commitOnRequestAssets = false
}
extend(Screenshots())
extend {
}
}
}
//
//import org.openrndr.application
//import org.openrndr.extensions.Screenshots
//import org.openrndr.extensions.SingleScreenshot
//import org.openrndr.extra.gitarchiver.GitArchiver
//
//fun main() = application {
// program {
// if (System.getProperty("takeScreenshot") == "true") {
// extend(SingleScreenshot()) {
// this.outputFile = System.getProperty("screenshotPath")
// }
// }
// val ga = extend(GitArchiver()) {
// commitOnRun = true
// commitOnRequestAssets = false
// }
// extend(Screenshots())
// extend {
//
//
// }
// }
//
//}