forked from MapComplete/MapComplete
		
	Remove maintainer and version fields
This commit is contained in:
		
							parent
							
								
									7be371f24a
								
							
						
					
					
						commit
						8f1d63b20a
					
				
					 6 changed files with 27 additions and 29 deletions
				
			
		| 
						 | 
					@ -6,8 +6,7 @@
 | 
				
			||||||
  "#5": "If you don't know how to run a webserver: go to https://www.base64encode.org/ , copy paste this entire document in the 'encode' field and encode it;",
 | 
					  "#5": "If you don't know how to run a webserver: go to https://www.base64encode.org/ , copy paste this entire document in the 'encode' field and encode it;",
 | 
				
			||||||
  "#6": "Then, go to https://mapcomplete.osm.be/theme?userlayout=true#your-base64-encoded-file",
 | 
					  "#6": "Then, go to https://mapcomplete.osm.be/theme?userlayout=true#your-base64-encoded-file",
 | 
				
			||||||
  "id": "template",
 | 
					  "id": "template",
 | 
				
			||||||
  "maintainer": "Write your name here",
 | 
					  "credits": "Write your name here (or remove everything)",
 | 
				
			||||||
  "version": "2022-03-12",
 | 
					 | 
				
			||||||
  "title": {
 | 
					  "title": {
 | 
				
			||||||
    "en": "Title of your theme",
 | 
					    "en": "Title of your theme",
 | 
				
			||||||
    "#1": "You can add extra languages here (and in all translation blocks), but make sure 'en' is everywhere"
 | 
					    "#1": "You can add extra languages here (and in all translation blocks), but make sure 'en' is everywhere"
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -133,6 +133,7 @@ class UpdateLegacyTheme extends DesugaringStep<LayoutConfigJson> {
 | 
				
			||||||
            delete oldThemeConfig.socialImage
 | 
					            delete oldThemeConfig.socialImage
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        if (oldThemeConfig["roamingRenderings"] !== undefined) {
 | 
					        if (oldThemeConfig["roamingRenderings"] !== undefined) {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            if (oldThemeConfig["roamingRenderings"].length == 0) {
 | 
					            if (oldThemeConfig["roamingRenderings"].length == 0) {
 | 
				
			||||||
| 
						 | 
					@ -148,6 +149,21 @@ class UpdateLegacyTheme extends DesugaringStep<LayoutConfigJson> {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        oldThemeConfig.layers = Utils.NoNull(oldThemeConfig.layers)
 | 
					        oldThemeConfig.layers = Utils.NoNull(oldThemeConfig.layers)
 | 
				
			||||||
        delete oldThemeConfig["language"]
 | 
					        delete oldThemeConfig["language"]
 | 
				
			||||||
 | 
					        delete oldThemeConfig["version"]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        if (oldThemeConfig["maintainer"] !== undefined) {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            console.log("Maintainer: ", oldThemeConfig["maintainer"], "credits: ", oldThemeConfig["credits"])
 | 
				
			||||||
 | 
					            if (oldThemeConfig.credits === undefined) {
 | 
				
			||||||
 | 
					                oldThemeConfig["credits"] = oldThemeConfig["maintainer"]
 | 
				
			||||||
 | 
					                delete oldThemeConfig["maintainer"]
 | 
				
			||||||
 | 
					            } else if (oldThemeConfig["maintainer"].toLowerCase().trim() === "mapcomplete") {
 | 
				
			||||||
 | 
					                delete oldThemeConfig["maintainer"]
 | 
				
			||||||
 | 
					            } else if (oldThemeConfig["maintainer"].toLowerCase().trim() === "") {
 | 
				
			||||||
 | 
					                delete oldThemeConfig["maintainer"]
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        return {
 | 
					        return {
 | 
				
			||||||
            errors: [],
 | 
					            errors: [],
 | 
				
			||||||
            warnings: [],
 | 
					            warnings: [],
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -32,17 +32,6 @@ export interface LayoutConfigJson {
 | 
				
			||||||
     */
 | 
					     */
 | 
				
			||||||
    credits?: string;
 | 
					    credits?: string;
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
    /**
 | 
					 | 
				
			||||||
     * Who does maintain this preset?
 | 
					 | 
				
			||||||
     */
 | 
					 | 
				
			||||||
    maintainer: string;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    /**
 | 
					 | 
				
			||||||
     * A version number, either semantically or by date.
 | 
					 | 
				
			||||||
     * Should be sortable, where the higher value is the later version
 | 
					 | 
				
			||||||
     */
 | 
					 | 
				
			||||||
    version: string;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
     * Only used in 'generateLayerOverview': if present, every translation will be checked to make sure it is fully translated.
 | 
					     * Only used in 'generateLayerOverview': if present, every translation will be checked to make sure it is fully translated.
 | 
				
			||||||
     * 
 | 
					     * 
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -10,9 +10,7 @@ import ExtraLinkConfig from "./ExtraLinkConfig";
 | 
				
			||||||
export default class LayoutConfig {
 | 
					export default class LayoutConfig {
 | 
				
			||||||
    public static readonly defaultSocialImage = "assets/SocialImage.png"
 | 
					    public static readonly defaultSocialImage = "assets/SocialImage.png"
 | 
				
			||||||
    public readonly id: string;
 | 
					    public readonly id: string;
 | 
				
			||||||
    public readonly maintainer: string;
 | 
					 | 
				
			||||||
    public readonly credits?: string;
 | 
					    public readonly credits?: string;
 | 
				
			||||||
    public readonly version: string;
 | 
					 | 
				
			||||||
    public readonly language: string[];
 | 
					    public readonly language: string[];
 | 
				
			||||||
    public readonly title: Translation;
 | 
					    public readonly title: Translation;
 | 
				
			||||||
    public readonly shortDescription: Translation;
 | 
					    public readonly shortDescription: Translation;
 | 
				
			||||||
| 
						 | 
					@ -76,9 +74,7 @@ export default class LayoutConfig {
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        const context = this.id
 | 
					        const context = this.id
 | 
				
			||||||
        this.maintainer = json.maintainer;
 | 
					 | 
				
			||||||
        this.credits = json.credits;
 | 
					        this.credits = json.credits;
 | 
				
			||||||
        this.version = json.version;
 | 
					 | 
				
			||||||
        this.language = json.mustHaveLanguage ?? Array.from(Object.keys(json.title));
 | 
					        this.language = json.mustHaveLanguage ?? Array.from(Object.keys(json.title));
 | 
				
			||||||
        this.usedImages = Array.from(new ExtractImages(official, undefined).convertStrict(json, "while extracting the images of " + json.id + " " + context ?? "")).sort()
 | 
					        this.usedImages = Array.from(new ExtractImages(official, undefined).convertStrict(json, "while extracting the images of " + json.id + " " + context ?? "")).sort()
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -146,8 +146,8 @@ export default class CopyrightPanel extends Combine {
 | 
				
			||||||
        const iconAttributions = layoutToUse.usedImages.map(CopyrightPanel.IconAttribution)
 | 
					        const iconAttributions = layoutToUse.usedImages.map(CopyrightPanel.IconAttribution)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        let maintainer: BaseUIElement = undefined
 | 
					        let maintainer: BaseUIElement = undefined
 | 
				
			||||||
        if (layoutToUse.maintainer !== undefined && layoutToUse.maintainer !== "" && layoutToUse.maintainer.toLowerCase() !== "mapcomplete") {
 | 
					        if (layoutToUse.credits !== undefined && layoutToUse.credits !== "") {
 | 
				
			||||||
            maintainer = t.themeBy.Subs({author: layoutToUse.maintainer})
 | 
					            maintainer = t.themeBy.Subs({author: layoutToUse.credits})
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        const contributions = new ContributorCount(state).Contributors
 | 
					        const contributions = new ContributorCount(state).Contributors
 | 
				
			||||||
| 
						 | 
					@ -190,7 +190,6 @@ export default class CopyrightPanel extends Combine {
 | 
				
			||||||
            new Title(t.attributionTitle),
 | 
					            new Title(t.attributionTitle),
 | 
				
			||||||
            t.attributionContent,
 | 
					            t.attributionContent,
 | 
				
			||||||
            maintainer,
 | 
					            maintainer,
 | 
				
			||||||
            new FixedUiElement(layoutToUse.credits),
 | 
					 | 
				
			||||||
             dataContributors,
 | 
					             dataContributors,
 | 
				
			||||||
            CopyrightPanel.CodeContributors(contributors, t.codeContributionsBy),
 | 
					            CopyrightPanel.CodeContributors(contributors, t.codeContributionsBy),
 | 
				
			||||||
            CopyrightPanel.CodeContributors(translators, t.translatedBy),
 | 
					            CopyrightPanel.CodeContributors(translators, t.translatedBy),
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,10 +1,9 @@
 | 
				
			||||||
import ScriptUtils from "./ScriptUtils";
 | 
					import ScriptUtils from "./ScriptUtils";
 | 
				
			||||||
import {mkdirSync, writeFileSync} from "fs";
 | 
					import {writeFileSync} from "fs";
 | 
				
			||||||
import {FixLegacyTheme, UpdateLegacyLayer} from "../Models/ThemeConfig/Conversion/LegacyJsonConvert";
 | 
					import {FixLegacyTheme, UpdateLegacyLayer} from "../Models/ThemeConfig/Conversion/LegacyJsonConvert";
 | 
				
			||||||
import Translations from "../UI/i18n/Translations";
 | 
					import Translations from "../UI/i18n/Translations";
 | 
				
			||||||
import {Translation} from "../UI/i18n/Translation";
 | 
					import {Translation} from "../UI/i18n/Translation";
 | 
				
			||||||
import {LayerConfigJson} from "../Models/ThemeConfig/Json/LayerConfigJson";
 | 
					import {LayerConfigJson} from "../Models/ThemeConfig/Json/LayerConfigJson";
 | 
				
			||||||
import {LayoutConfigJson} from "../Models/ThemeConfig/Json/LayoutConfigJson";
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
/*
 | 
					/*
 | 
				
			||||||
 * This script reads all theme and layer files and reformats them inplace
 | 
					 * This script reads all theme and layer files and reformats them inplace
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue