From 17cfeb4f771df440d9be6b782193d1ce7c081163 Mon Sep 17 00:00:00 2001 From: m1ga Date: Thu, 15 Sep 2022 13:31:11 +0200 Subject: [PATCH 01/18] feat(docs): fix menu links --- .../vuepress/vuepress-plugin-apidocs/components/EventList.vue | 4 ++-- .../vuepress-plugin-apidocs/components/MethodList.vue | 4 ++-- .../vuepress-plugin-apidocs/components/PropertyList.vue | 3 ++- .../vuepress-plugin-apidocs/lib/metadata/processor.js | 2 +- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/packages/vuepress/vuepress-plugin-apidocs/components/EventList.vue b/packages/vuepress/vuepress-plugin-apidocs/components/EventList.vue index e5aee6f0..ea316654 100644 --- a/packages/vuepress/vuepress-plugin-apidocs/components/EventList.vue +++ b/packages/vuepress/vuepress-plugin-apidocs/components/EventList.vue @@ -5,8 +5,8 @@
-
-

+
+

# {{event.name}}

diff --git a/packages/vuepress/vuepress-plugin-apidocs/components/MethodList.vue b/packages/vuepress/vuepress-plugin-apidocs/components/MethodList.vue index ab181acc..825cd90a 100644 --- a/packages/vuepress/vuepress-plugin-apidocs/components/MethodList.vue +++ b/packages/vuepress/vuepress-plugin-apidocs/components/MethodList.vue @@ -5,8 +5,8 @@

-
-

+
+

# {{method.name}}

diff --git a/packages/vuepress/vuepress-plugin-apidocs/components/PropertyList.vue b/packages/vuepress/vuepress-plugin-apidocs/components/PropertyList.vue index 30e050d8..6368c369 100644 --- a/packages/vuepress/vuepress-plugin-apidocs/components/PropertyList.vue +++ b/packages/vuepress/vuepress-plugin-apidocs/components/PropertyList.vue @@ -5,8 +5,9 @@

-
+

+

# {{property.name}}

diff --git a/packages/vuepress/vuepress-plugin-apidocs/lib/metadata/processor.js b/packages/vuepress/vuepress-plugin-apidocs/lib/metadata/processor.js index 0da21a16..fbca6014 100644 --- a/packages/vuepress/vuepress-plugin-apidocs/lib/metadata/processor.js +++ b/packages/vuepress/vuepress-plugin-apidocs/lib/metadata/processor.js @@ -108,7 +108,7 @@ class MetadataProcessor { headers.push({ level: 3, title: memberMetadata.name, - slug: memberMetadata.name.toLowerCase() + slug: memberType + "_" + memberMetadata.name.toLowerCase() }) }) if (headers.length) { From 578abddd270638c3c8887a9e51ae01f42ba50fbd Mon Sep 17 00:00:00 2001 From: m1ga Date: Thu, 15 Sep 2022 14:59:34 +0200 Subject: [PATCH 02/18] feat(docs): show inherit elements --- .../vuepress-plugin-apidocs/lib/metadata/processor.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/vuepress/vuepress-plugin-apidocs/lib/metadata/processor.js b/packages/vuepress/vuepress-plugin-apidocs/lib/metadata/processor.js index 0da21a16..b8ae7011 100644 --- a/packages/vuepress/vuepress-plugin-apidocs/lib/metadata/processor.js +++ b/packages/vuepress/vuepress-plugin-apidocs/lib/metadata/processor.js @@ -58,9 +58,9 @@ class MetadataProcessor { filterInheritedMembers (metadata) { const filterInherited = member => { - if (member.inherits && member.inherits !== metadata.name) { - return false - } + // if (member.inherits && member.inherits !== metadata.name) { + // return false + // } return true } From f7052dca412fde77a552cf4ed02cc6f7361bcda3 Mon Sep 17 00:00:00 2001 From: Chris Barber Date: Mon, 24 Oct 2022 22:12:40 -0500 Subject: [PATCH 03/18] Update package.json --- packages/vuepress/vuepress-plugin-apidocs/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vuepress/vuepress-plugin-apidocs/package.json b/packages/vuepress/vuepress-plugin-apidocs/package.json index 6db25dab..95394c28 100644 --- a/packages/vuepress/vuepress-plugin-apidocs/package.json +++ b/packages/vuepress/vuepress-plugin-apidocs/package.json @@ -1,6 +1,6 @@ { "name": "vuepress-plugin-apidocs", - "version": "4.11.0", + "version": "4.11.1", "description": "Plugin for VuePress to render API reference documentation", "main": "index.js", "scripts": { From aae9bc44e73e1cfa5f97539c2d79389cae5823ba Mon Sep 17 00:00:00 2001 From: m1ga Date: Tue, 25 Oct 2022 08:35:40 +0200 Subject: [PATCH 04/18] fix: h3 copy&paste error --- .../vuepress/vuepress-plugin-apidocs/components/PropertyList.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/vuepress/vuepress-plugin-apidocs/components/PropertyList.vue b/packages/vuepress/vuepress-plugin-apidocs/components/PropertyList.vue index 6368c369..910b6574 100644 --- a/packages/vuepress/vuepress-plugin-apidocs/components/PropertyList.vue +++ b/packages/vuepress/vuepress-plugin-apidocs/components/PropertyList.vue @@ -6,7 +6,6 @@
-

# {{property.name}}

From ad71c4e322ef90a26a8d60e164edb663e6a3b8b8 Mon Sep 17 00:00:00 2001 From: Chris Barber Date: Tue, 25 Oct 2022 10:40:49 -0500 Subject: [PATCH 05/18] vuepress-plugin-apidocs@4.11.2 --- packages/vuepress/vuepress-plugin-apidocs/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vuepress/vuepress-plugin-apidocs/package.json b/packages/vuepress/vuepress-plugin-apidocs/package.json index 95394c28..aaf8b227 100644 --- a/packages/vuepress/vuepress-plugin-apidocs/package.json +++ b/packages/vuepress/vuepress-plugin-apidocs/package.json @@ -1,6 +1,6 @@ { "name": "vuepress-plugin-apidocs", - "version": "4.11.1", + "version": "4.11.2", "description": "Plugin for VuePress to render API reference documentation", "main": "index.js", "scripts": { From 418a4797e9b2dead84280d9bb47c338ff9283dd5 Mon Sep 17 00:00:00 2001 From: m1ga Date: Wed, 8 Feb 2023 15:53:07 +0100 Subject: [PATCH 06/18] feat: more search results --- packages/vuepress/vuepress-theme-titanium/index.js | 2 +- packages/vuepress/vuepress-theme-titanium/styles/theme.styl | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/packages/vuepress/vuepress-theme-titanium/index.js b/packages/vuepress/vuepress-theme-titanium/index.js index 4000e6b4..7f5e0652 100644 --- a/packages/vuepress/vuepress-theme-titanium/index.js +++ b/packages/vuepress/vuepress-theme-titanium/index.js @@ -18,7 +18,7 @@ module.exports = (options, ctx) => ({ } }, plugins: [ - ['@vuepress/search', { searchMaxSuggestions: 10 }], + ['@vuepress/search', { searchMaxSuggestions: 30 }], '@vuepress/nprogress', ['container', { type: 'tip' }], ['container', { type: 'warning' }], diff --git a/packages/vuepress/vuepress-theme-titanium/styles/theme.styl b/packages/vuepress/vuepress-theme-titanium/styles/theme.styl index 3a0ed4cb..2c86c8d1 100644 --- a/packages/vuepress/vuepress-theme-titanium/styles/theme.styl +++ b/packages/vuepress/vuepress-theme-titanium/styles/theme.styl @@ -48,7 +48,10 @@ body background-color $white box-sizing border-box border-bottom 1px solid $borderColor - + .suggestions + max-height 400px + overflow-y auto + .sidebar-mask position fixed z-index 9 From 8225683a868d2426d39e3c03e27ef46080f0b4c6 Mon Sep 17 00:00:00 2001 From: Chris Barber Date: Thu, 9 Feb 2023 12:34:05 -0600 Subject: [PATCH 07/18] vuepress-theme-titanium@4.11.1 --- packages/vuepress/vuepress-theme-titanium/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vuepress/vuepress-theme-titanium/package.json b/packages/vuepress/vuepress-theme-titanium/package.json index f4427881..08c0a320 100644 --- a/packages/vuepress/vuepress-theme-titanium/package.json +++ b/packages/vuepress/vuepress-theme-titanium/package.json @@ -1,6 +1,6 @@ { "name": "vuepress-theme-titanium", - "version": "4.11.0", + "version": "4.11.1", "description": "VuePress theme for Titanium projects", "main": "index.js", "scripts": { From 35a730dafb5fd4e0cff8ab6ff09abc39997ce4a0 Mon Sep 17 00:00:00 2001 From: m1ga Date: Sat, 4 Mar 2023 18:28:52 +0100 Subject: [PATCH 08/18] fix: docgen interfaces --- .../titanium-docgen/generators/typescript_generator.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/packages/titanium-docgen/generators/typescript_generator.js b/packages/titanium-docgen/generators/typescript_generator.js index bdd85e80..cc4e1266 100644 --- a/packages/titanium-docgen/generators/typescript_generator.js +++ b/packages/titanium-docgen/generators/typescript_generator.js @@ -21,7 +21,13 @@ const skipApis = [ // List of modules that need to be generated as an interface instead of a namespace. const forcedInterfaces = [ 'Titanium.Android.R', - 'Titanium.App.iOS.UserDefaults' + 'Titanium.App.iOS.UserDefaults', + 'Titanium.Media.Item', + 'Titanium.Calendar.Attendee', + 'Titanium.Calendar.Reminder', + 'Titanium.Calendar.RecurrenceRule', + 'Titanium.Platform.DisplayCaps', + 'Titanium.XML.DocumentType' ]; const eventsMethods = [ From 6cdb99d10f0046c1f29be49b5baa030b88f89304 Mon Sep 17 00:00:00 2001 From: m1ga Date: Sat, 1 Apr 2023 17:08:10 +0200 Subject: [PATCH 09/18] feat: shhow constants again --- .../vuepress-plugin-apidocs/components/ConstantList.vue | 4 ++-- .../vuepress-plugin-apidocs/lib/metadata/processor.js | 4 +--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/packages/vuepress/vuepress-plugin-apidocs/components/ConstantList.vue b/packages/vuepress/vuepress-plugin-apidocs/components/ConstantList.vue index 7d38dcab..446864e9 100644 --- a/packages/vuepress/vuepress-plugin-apidocs/components/ConstantList.vue +++ b/packages/vuepress/vuepress-plugin-apidocs/components/ConstantList.vue @@ -5,8 +5,8 @@
-
-

+
+

# {{constant.name}}

diff --git a/packages/vuepress/vuepress-plugin-apidocs/lib/metadata/processor.js b/packages/vuepress/vuepress-plugin-apidocs/lib/metadata/processor.js index 0da21a16..cf0d8a30 100644 --- a/packages/vuepress/vuepress-plugin-apidocs/lib/metadata/processor.js +++ b/packages/vuepress/vuepress-plugin-apidocs/lib/metadata/processor.js @@ -117,9 +117,7 @@ class MetadataProcessor { title: memberType.charAt(0).toUpperCase() + memberType.slice(1), slug: memberType }) - if (memberType !== 'constants') { - this.additionalHeaders = this.additionalHeaders.concat(headers) - } + this.additionalHeaders = this.additionalHeaders.concat(headers) } } From f522b7b7ea2712a5e2c873f30b4082bebd590d0c Mon Sep 17 00:00:00 2001 From: Sergey Volkov Date: Mon, 31 Jul 2023 20:47:29 +0300 Subject: [PATCH 10/18] Update typescript_generator.js Update maintainers --- packages/titanium-docgen/generators/typescript_generator.js | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/titanium-docgen/generators/typescript_generator.js b/packages/titanium-docgen/generators/typescript_generator.js index bdd85e80..b5fd0d97 100644 --- a/packages/titanium-docgen/generators/typescript_generator.js +++ b/packages/titanium-docgen/generators/typescript_generator.js @@ -357,7 +357,6 @@ class GlobalTemplateWriter { this.output += '// Project: https://github.com/appcelerator/titanium_mobile\n'; this.output += '// Definitions by: Axway Appcelerator \n'; this.output += '// Jan Vennemann \n'; - this.output += '// Sergey Volkov \n'; this.output += '// Mathias Lorenzen \n'; this.output += '// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped\n'; this.output += '// TypeScript Version: 3.0\n'; From 8a76ff231b6f8bfe422fa0138fb569e674b2b7e9 Mon Sep 17 00:00:00 2001 From: m1ga Date: Fri, 22 Sep 2023 22:13:13 +0200 Subject: [PATCH 11/18] fix 'Empty string passed to getElementById()' --- .../plugins/smoothScroll/enhanceApp.js | 24 ++++++++++++------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/packages/vuepress/vuepress-theme-titanium/plugins/smoothScroll/enhanceApp.js b/packages/vuepress/vuepress-theme-titanium/plugins/smoothScroll/enhanceApp.js index daa502d7..117be37d 100644 --- a/packages/vuepress/vuepress-theme-titanium/plugins/smoothScroll/enhanceApp.js +++ b/packages/vuepress/vuepress-theme-titanium/plugins/smoothScroll/enhanceApp.js @@ -35,9 +35,11 @@ module.exports = ({ Vue, options, router }) => { }) } window.onload = () => { - const element = document.getElementById(location.hash.slice(1)) - if (element) { - element.scrollIntoView() + if (location.hash.slice(1) != "") { + const element = document.getElementById(location.hash.slice(1)) + if (element) { + element.scrollIntoView() + } } } } else { @@ -49,16 +51,20 @@ module.exports = ({ Vue, options, router }) => { if (location.hash) { setTimeout(function() { - const element = document.getElementById(location.hash.slice(1)) - if (element) { - element.scrollIntoView() + if (location.hash.slice(1) != "") { + const element = document.getElementById(location.hash.slice(1)) + if (element) { + element.scrollIntoView() + } } }, 250); } window.onload = () => { - const element = document.getElementById(location.hash.slice(1)) - if (element) { - element.scrollIntoView() + if (location.hash.slice(1) != "") { + const element = document.getElementById(location.hash.slice(1)) + if (element) { + element.scrollIntoView() + } } } } From f3c484516f01206ac50f71d74b81ae19682874c6 Mon Sep 17 00:00:00 2001 From: Chris Barber Date: Sat, 23 Sep 2023 08:53:18 -0500 Subject: [PATCH 12/18] titanium-docgen@4.10.4 --- packages/titanium-docgen/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/titanium-docgen/package.json b/packages/titanium-docgen/package.json index 321be2c9..3235f97f 100644 --- a/packages/titanium-docgen/package.json +++ b/packages/titanium-docgen/package.json @@ -1,6 +1,6 @@ { "name": "titanium-docgen", - "version": "4.10.3", + "version": "4.10.4", "description": "Generates Titanium API documentation in different formats", "main": "index.js", "scripts": { From 8b2113ca79e8d69c8c1a77ada08ad3ce8a13026d Mon Sep 17 00:00:00 2001 From: m1ga Date: Thu, 21 Mar 2024 18:55:21 +0100 Subject: [PATCH 13/18] chore: cla update --- .github/workflows/cla.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cla.yaml b/.github/workflows/cla.yaml index ac0fe232..bbfcc73f 100644 --- a/.github/workflows/cla.yaml +++ b/.github/workflows/cla.yaml @@ -8,6 +8,6 @@ jobs: name: Verify contributor steps: - - uses: tidev/tidev-cla-action@v1 + - uses: tidev/tidev-cla-action@v2 with: repo-token: ${{ secrets.GITHUB_TOKEN }} From 447428b5c37922444cdb1e4a8bbca6301ee6d8cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hans=20Kn=C3=B6chel?= Date: Tue, 19 Aug 2025 10:25:03 +0200 Subject: [PATCH 14/18] fix: properly handle promise generics --- .../generators/typescript_generator.js | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/packages/titanium-docgen/generators/typescript_generator.js b/packages/titanium-docgen/generators/typescript_generator.js index 0518e93b..1d4234b8 100644 --- a/packages/titanium-docgen/generators/typescript_generator.js +++ b/packages/titanium-docgen/generators/typescript_generator.js @@ -175,7 +175,9 @@ class DocsParser { // skip bundled documentation for modules and Node.js shims return; } - const namespaceParts = typeInfo.name.split('.'); + // Handle generic types by extracting the base type name before the first '<' + const typeName = typeInfo.name.split('<')[0]; + const namespaceParts = typeName.split('.'); namespaceParts.pop(); if (skipApis.includes(typeInfo.name)) { return; @@ -622,7 +624,17 @@ class GlobalTemplateWriter { if (Array.isArray(docType)) { const normalizedTypes = docType.map(typeName => this.normalizeType(typeName)); - return normalizedTypes.includes('any') ? 'any' : normalizedTypes.join(' | '); + if (normalizedTypes.includes('any')) { + return 'any'; + } + // Parenthesize function types in unions to avoid TypeScript syntax errors + const parenthesizedTypes = normalizedTypes.map(type => { + if (type.includes(') => ')) { + return `(${type})`; + } + return type; + }); + return parenthesizedTypes.join(' | '); } const lessThanIndex = docType.indexOf('<'); @@ -649,6 +661,9 @@ class GlobalTemplateWriter { } } else if (baseType === 'Dictionary') { return `Dictionary<${subType}>`; + } else if (baseType === 'Promise') { + // Use standard Promise generic syntax + return `Promise<${subTypes.join(', ')}>`; } } From 2afeb59c0857ce0b8286080ae9c4aa67183b9f30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hans=20Kn=C3=B6chel?= Date: Tue, 19 Aug 2025 10:43:54 +0200 Subject: [PATCH 15/18] fix: do not throw error regarding generic promises --- packages/titanium-docgen/validate.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/packages/titanium-docgen/validate.js b/packages/titanium-docgen/validate.js index 3c4c17ba..f879773f 100644 --- a/packages/titanium-docgen/validate.js +++ b/packages/titanium-docgen/validate.js @@ -434,8 +434,12 @@ function validateDataType(type, fullTypeContext) { // Should it have been written as a complex type? if (common.COMPLEX_TYPES.has(type)) { const argCount = common.COMPLEX_TYPES.get(type); // may be 0 if Function/Callback - // Enforce as ERROR if Promise/Set/Map doesn't have exact generic type count - const severity = [ 'Map', 'Set', 'Promise' ].includes(type) ? ERROR : WARNING; + // Skip validation for Promise to allow Promise without generics (Promise not supported by build system) + if (type === 'Promise') { + return errors; + } + // Enforce as ERROR if Set/Map doesn't have exact generic type count + const severity = [ 'Map', 'Set' ].includes(type) ? ERROR : WARNING; errors.push(new Problem(`${type} ${severity === ERROR ? 'must' : 'should'} have ${argCount || 'any number of'} generic type(s) specified, but had 0: ${fullTypeContext || type}`, severity)); } else if (type === 'Object') { // Warn about generic Object types (Dictionary is handled above as a complex type) From e42cf37e9cfe4f19564c8c7f753ad456f842655c Mon Sep 17 00:00:00 2001 From: m1ga Date: Tue, 17 Mar 2026 20:33:25 +0100 Subject: [PATCH 16/18] fix module edit link --- .../generators/jsduck_generator.js | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/packages/titanium-docgen/generators/jsduck_generator.js b/packages/titanium-docgen/generators/jsduck_generator.js index 744cdb80..382a18f4 100644 --- a/packages/titanium-docgen/generators/jsduck_generator.js +++ b/packages/titanium-docgen/generators/jsduck_generator.js @@ -328,17 +328,17 @@ function exportEditUrl(api) { const file = api.__file; const blackList = [ 'appcelerator.https', 'ti.geofence' ]; // Don't include Edit button for these modules let rv = ''; - let basePath = 'https://github.com/appcelerator/titanium_mobile/edit/master/'; + let basePath = 'https://github.com/tidev/titanium-sdk/edit/master/'; // Determine edit URL by file's folder location - if (file.indexOf('titanium_mobile/apidoc') !== -1) { + if (file.indexOf('titanium-sdk/apidoc') !== -1) { const startIndex = file.indexOf('apidoc/'); const path = file.substr(startIndex); rv = basePath + path; - } else if (file.indexOf('titanium_modules') !== -1 || file.indexOf('appc_modules') !== -1) { + } else { // URL template with placeholders for module name and path. - const urlTemplate = 'https://github.com/appcelerator-modules/%MODULE_NAME%/edit/master/%MODULE_PATH%'; - const re = /titanium_modules|appc_modules\/(.+)\/apidoc/; + const urlTemplate = 'https://github.com/tidev/%MODULE_NAME%/edit/master/%MODULE_PATH%'; + const re = /(.+)\/apidoc/; const match = file.match(re); let modulename; if (match) { @@ -358,15 +358,6 @@ function exportEditUrl(api) { rv = urlTemplate.replace(/%\w+%/g, function (all) { return urlReplacements[all] || all; }); - } else if (file.indexOf('titanium_mobile_tizen/modules/tizen/apidoc') !== -1) { - const index = file.indexOf('modules/tizen/apidoc/'); - basePath = 'https://github.com/appcelerator/titanium_mobile_tizen/edit/master/'; - if (index !== -1) { - rv = basePath + file.substr(index); - } else { - common.log(common.LOG_WARN, 'Error creating edit URL for:', file, '. Couldn\'t find apidoc/ folder.'); - return rv; - } } return rv; From c23582293f35216dd820eb2a387025fd199b331c Mon Sep 17 00:00:00 2001 From: m1ga Date: Tue, 17 Mar 2026 20:38:58 +0100 Subject: [PATCH 17/18] regex update --- packages/titanium-docgen/generators/jsduck_generator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/titanium-docgen/generators/jsduck_generator.js b/packages/titanium-docgen/generators/jsduck_generator.js index 382a18f4..6559f8d4 100644 --- a/packages/titanium-docgen/generators/jsduck_generator.js +++ b/packages/titanium-docgen/generators/jsduck_generator.js @@ -338,7 +338,7 @@ function exportEditUrl(api) { } else { // URL template with placeholders for module name and path. const urlTemplate = 'https://github.com/tidev/%MODULE_NAME%/edit/master/%MODULE_PATH%'; - const re = /(.+)\/apidoc/; + const re = /tidev\/(.+)\/apidoc/; const match = file.match(re); let modulename; if (match) { From 69ae6d9c64894a86d290a31bb32bcae7c444b739 Mon Sep 17 00:00:00 2001 From: Chris Barber Date: Sat, 23 Sep 2023 08:57:17 -0500 Subject: [PATCH 18/18] vuepress-theme-titanium@4.11.2 --- packages/vuepress/vuepress-theme-titanium/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/vuepress/vuepress-theme-titanium/package.json b/packages/vuepress/vuepress-theme-titanium/package.json index 08c0a320..f0e94ab4 100644 --- a/packages/vuepress/vuepress-theme-titanium/package.json +++ b/packages/vuepress/vuepress-theme-titanium/package.json @@ -1,12 +1,12 @@ { "name": "vuepress-theme-titanium", - "version": "4.11.1", + "version": "4.11.2", "description": "VuePress theme for Titanium projects", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, - "author": "Axway Appcelerator", + "author": "TiDev, Inc. ", "license": "Apache-2.0", "repository": { "type": "git",