Update icons, hide page title
This commit is contained in:
@ -47,6 +47,8 @@ struct LocalizedPageFile {
|
||||
let lastModifiedDate: Date?
|
||||
|
||||
let originalURL: String?
|
||||
|
||||
let hideTitle: Bool?
|
||||
}
|
||||
|
||||
extension LocalizedPageFile: Codable {
|
||||
|
@ -13,18 +13,22 @@ struct PathSettingsFile {
|
||||
|
||||
let tagsOutputFolderPath: String
|
||||
|
||||
let audioOutputFolderPath: String
|
||||
|
||||
init(assetsOutputFolderPath: String,
|
||||
pagesOutputFolderPath: String,
|
||||
imagesOutputFolderPath: String,
|
||||
filesOutputFolderPath: String,
|
||||
videosOutputFolderPath: String,
|
||||
tagsOutputFolderPath: String) {
|
||||
tagsOutputFolderPath: String,
|
||||
audioOutputFolderPath: String) {
|
||||
self.assetsOutputFolderPath = assetsOutputFolderPath
|
||||
self.pagesOutputFolderPath = pagesOutputFolderPath
|
||||
self.imagesOutputFolderPath = imagesOutputFolderPath
|
||||
self.filesOutputFolderPath = filesOutputFolderPath
|
||||
self.videosOutputFolderPath = videosOutputFolderPath
|
||||
self.tagsOutputFolderPath = tagsOutputFolderPath
|
||||
self.audioOutputFolderPath = audioOutputFolderPath
|
||||
}
|
||||
}
|
||||
|
||||
@ -41,7 +45,8 @@ extension PathSettingsFile {
|
||||
imagesOutputFolderPath: "image",
|
||||
filesOutputFolderPath: "file",
|
||||
videosOutputFolderPath: "video",
|
||||
tagsOutputFolderPath: "tag")
|
||||
tagsOutputFolderPath: "tag",
|
||||
audioOutputFolderPath: "audio")
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user