1
0
mirror of https://github.com/typemill/typemill.git synced 2025-08-01 20:00:37 +02:00

Finish V 2.10.0

This commit is contained in:
trendschau
2024-10-18 15:24:34 +02:00
parent 7caaa9f7c3
commit 8520c564e3
3 changed files with 7 additions and 6 deletions

View File

@@ -6,7 +6,7 @@ To create a new page in Typemill, follow these simple steps:
* **Enter a page title** for your new page into one of the grey input fields.
* **Click the page icon** to create a new page. You can also create a folder if you want to add sub-pages later.
Here's a quick breakdown of the options:
Here's a quick breakdown of the options.
* **Folders**: Use folders to organize your website hierarchically. Folders can contain subfolders or pages. Unlike a traditional file system, folders in Typemill can also have content, similar to pages.
* **Pages**: Utilize pages for simple content without needing a deeper structure.

View File

@@ -144,7 +144,8 @@ class License
return false;
}
private function checkLicenseDomain(string $licensedomain, array $urlinfo)
# NOT IN USE ANYMORE: Check licese domain deeply with subdomains
private function checkLicenseDomainDeep(string $licensedomain, array $urlinfo)
{
$licensehost = parse_url($licensedomain, PHP_URL_HOST);
$licensehost = str_replace("www.", "", $licensehost);
@@ -165,8 +166,8 @@ class License
return false;
}
# NOT IN USE: Compare only domain without subdomains or subfolders
private function checkLicenseBaseDomain(string $licensedomain, array $urlinfo)
# Compare only domain without subdomains or subfolders
private function checkLicenseDomain(string $licensedomain, array $urlinfo)
{
$licensehost = parse_url($licensedomain, PHP_URL_HOST);
$licensehost = preg_replace('/^www\./', '', $licensehost);
@@ -189,7 +190,7 @@ class License
return false;
}
# NOT IN USE: Function to extract the base domain (ignoring subdomains)
# Function to extract the base domain (ignoring subdomains)
private function extractBaseDomain($host)
{
$parts = explode('.', $host);

View File

@@ -1,4 +1,4 @@
version: '2.9.0'
version: '2.10.0'
title: 'Typemill'
author: 'Unknown'
copyright: false