map system updates
This commit is contained in:
parent
1236c6b646
commit
2778b1590d
@ -330,4 +330,10 @@ export function openAddModal(lat, lng) {
|
||||
|
||||
// Show modal
|
||||
modal.classList.remove('hidden');
|
||||
|
||||
// Trigger custom event for auto address lookup
|
||||
const autoLookupEvent = new CustomEvent('autoAddressLookup', {
|
||||
detail: { mode: 'add', lat, lng }
|
||||
});
|
||||
document.dispatchEvent(autoLookupEvent);
|
||||
}
|
||||
|
||||
@ -284,6 +284,7 @@ export function setupGeoLocationSync() {
|
||||
}
|
||||
}
|
||||
|
||||
// ...existing code...
|
||||
export function setupEventListeners() {
|
||||
// Desktop controls
|
||||
document.getElementById('refresh-btn')?.addEventListener('click', () => {
|
||||
@ -345,6 +346,17 @@ export function setupEventListeners() {
|
||||
lookupAddress('edit');
|
||||
});
|
||||
|
||||
// Auto address lookup event listener
|
||||
document.addEventListener('autoAddressLookup', (e) => {
|
||||
const { mode } = e.detail;
|
||||
if (mode === 'add') {
|
||||
// Add a small delay to ensure the form is fully rendered
|
||||
setTimeout(() => {
|
||||
lookupAddress('add');
|
||||
}, 200);
|
||||
}
|
||||
});
|
||||
|
||||
// Geo-location field sync
|
||||
setupGeoLocationSync();
|
||||
|
||||
|
||||
@ -7,10 +7,10 @@
|
||||
"stars_count": 0,
|
||||
"forks_count": 0,
|
||||
"open_issues_count": 0,
|
||||
"updated_at": "2025-07-09T15:57:35-06:00",
|
||||
"updated_at": "2025-07-09T17:18:52-06:00",
|
||||
"created_at": "2025-05-28T14:54:59-06:00",
|
||||
"clone_url": "https://gitea.bnkops.com/admin/changemaker.lite.git",
|
||||
"ssh_url": "git@gitea.bnkops.com:admin/changemaker.lite.git",
|
||||
"default_branch": "main",
|
||||
"last_build_update": "2025-07-09T15:57:35-06:00"
|
||||
"last_build_update": "2025-07-09T17:18:52-06:00"
|
||||
}
|
||||
@ -4,10 +4,10 @@
|
||||
"description": "Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.",
|
||||
"html_url": "https://github.com/anthropics/claude-code",
|
||||
"language": "PowerShell",
|
||||
"stars_count": 18368,
|
||||
"stars_count": 18369,
|
||||
"forks_count": 1038,
|
||||
"open_issues_count": 1717,
|
||||
"updated_at": "2025-07-09T23:09:07Z",
|
||||
"open_issues_count": 1718,
|
||||
"updated_at": "2025-07-09T23:22:25Z",
|
||||
"created_at": "2025-02-22T17:41:21Z",
|
||||
"clone_url": "https://github.com/anthropics/claude-code.git",
|
||||
"ssh_url": "git@github.com:anthropics/claude-code.git",
|
||||
|
||||
@ -4,10 +4,10 @@
|
||||
"description": "Git with a cup of tea! Painless self-hosted all-in-one software development service, including Git hosting, code review, team collaboration, package registry and CI/CD",
|
||||
"html_url": "https://github.com/go-gitea/gitea",
|
||||
"language": "Go",
|
||||
"stars_count": 49481,
|
||||
"stars_count": 49482,
|
||||
"forks_count": 5907,
|
||||
"open_issues_count": 2720,
|
||||
"updated_at": "2025-07-09T22:11:47Z",
|
||||
"updated_at": "2025-07-09T23:14:46Z",
|
||||
"created_at": "2016-11-01T02:13:26Z",
|
||||
"clone_url": "https://github.com/go-gitea/gitea.git",
|
||||
"ssh_url": "git@github.com:go-gitea/gitea.git",
|
||||
|
||||
@ -12,5 +12,5 @@
|
||||
"clone_url": "https://github.com/n8n-io/n8n.git",
|
||||
"ssh_url": "git@github.com:n8n-io/n8n.git",
|
||||
"default_branch": "master",
|
||||
"last_build_update": "2025-07-09T23:06:18Z"
|
||||
"last_build_update": "2025-07-09T23:22:28Z"
|
||||
}
|
||||
11
mkdocs/docs/build/index.md
vendored
11
mkdocs/docs/build/index.md
vendored
@ -1,10 +1,17 @@
|
||||
# Getting Started with Digital Liberation
|
||||
# Getting Started
|
||||
|
||||
Welcome to Changemaker-Lite! You're about to reclaim your digital sovereignty and stop feeding your secrets to corporations. This guide will help you set up your own political infrastructure that you actually own and control.
|
||||
|
||||
This documentation is broken into a few sections:
|
||||
|
||||
- **Build:** Instructions on how to build the cm-lite on your own hardware
|
||||
- **Services:** Overview of all the services that are installed when you install cm-lite
|
||||
- **Configuration:** Information on how to configure all the services that you install in cm-lite
|
||||
- **Manuals:** Manuals on how to use the applications inside cm-lite (with videos!)
|
||||
|
||||
## Quick Start
|
||||
|
||||
### Build Changemkaer-Lite
|
||||
### Build Changemaker-Lite
|
||||
|
||||
```bash
|
||||
# Clone the repository
|
||||
|
||||
@ -1,5 +1,9 @@
|
||||
# Map Manual
|
||||
|
||||
Quick Tips:
|
||||
|
||||
- Map works best when you clear your cookies, cache, and other data before use! This is because it is a web-app that pushes information to your phone. By clearing that data, you will always load the most recent version of the app to your browser.
|
||||
|
||||
## How to add new location - Video
|
||||
|
||||
<div style="position: relative; padding-top: 56.25%;">
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 47 KiB After Width: | Height: | Size: 32 KiB |
@ -7,10 +7,10 @@
|
||||
"stars_count": 0,
|
||||
"forks_count": 0,
|
||||
"open_issues_count": 0,
|
||||
"updated_at": "2025-07-09T15:57:35-06:00",
|
||||
"updated_at": "2025-07-09T17:18:52-06:00",
|
||||
"created_at": "2025-05-28T14:54:59-06:00",
|
||||
"clone_url": "https://gitea.bnkops.com/admin/changemaker.lite.git",
|
||||
"ssh_url": "git@gitea.bnkops.com:admin/changemaker.lite.git",
|
||||
"default_branch": "main",
|
||||
"last_build_update": "2025-07-09T15:57:35-06:00"
|
||||
"last_build_update": "2025-07-09T17:18:52-06:00"
|
||||
}
|
||||
@ -4,10 +4,10 @@
|
||||
"description": "Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.",
|
||||
"html_url": "https://github.com/anthropics/claude-code",
|
||||
"language": "PowerShell",
|
||||
"stars_count": 18368,
|
||||
"stars_count": 18369,
|
||||
"forks_count": 1038,
|
||||
"open_issues_count": 1717,
|
||||
"updated_at": "2025-07-09T23:09:07Z",
|
||||
"open_issues_count": 1718,
|
||||
"updated_at": "2025-07-09T23:22:25Z",
|
||||
"created_at": "2025-02-22T17:41:21Z",
|
||||
"clone_url": "https://github.com/anthropics/claude-code.git",
|
||||
"ssh_url": "git@github.com:anthropics/claude-code.git",
|
||||
|
||||
@ -4,10 +4,10 @@
|
||||
"description": "Git with a cup of tea! Painless self-hosted all-in-one software development service, including Git hosting, code review, team collaboration, package registry and CI/CD",
|
||||
"html_url": "https://github.com/go-gitea/gitea",
|
||||
"language": "Go",
|
||||
"stars_count": 49481,
|
||||
"stars_count": 49482,
|
||||
"forks_count": 5907,
|
||||
"open_issues_count": 2720,
|
||||
"updated_at": "2025-07-09T22:11:47Z",
|
||||
"updated_at": "2025-07-09T23:14:46Z",
|
||||
"created_at": "2016-11-01T02:13:26Z",
|
||||
"clone_url": "https://github.com/go-gitea/gitea.git",
|
||||
"ssh_url": "git@github.com:go-gitea/gitea.git",
|
||||
|
||||
@ -12,5 +12,5 @@
|
||||
"clone_url": "https://github.com/n8n-io/n8n.git",
|
||||
"ssh_url": "git@github.com:n8n-io/n8n.git",
|
||||
"default_branch": "master",
|
||||
"last_build_update": "2025-07-09T23:06:18Z"
|
||||
"last_build_update": "2025-07-09T23:22:28Z"
|
||||
}
|
||||
@ -26,7 +26,7 @@
|
||||
|
||||
|
||||
|
||||
<title>Getting Started with Digital Liberation - Changemaker Lite</title>
|
||||
<title>Getting Started - Changemaker Lite</title>
|
||||
|
||||
|
||||
|
||||
@ -65,7 +65,7 @@
|
||||
|
||||
<meta property="og:type" content="website" >
|
||||
|
||||
<meta property="og:title" content="Getting Started with Digital Liberation - Changemaker Lite" >
|
||||
<meta property="og:title" content="Getting Started - Changemaker Lite" >
|
||||
|
||||
<meta property="og:description" content="Build Power. Not Rent It. Own your digital infrastructure." >
|
||||
|
||||
@ -81,7 +81,7 @@
|
||||
|
||||
<meta name="twitter:card" content="summary_large_image" >
|
||||
|
||||
<meta name="twitter:title" content="Getting Started with Digital Liberation - Changemaker Lite" >
|
||||
<meta name="twitter:title" content="Getting Started - Changemaker Lite" >
|
||||
|
||||
<meta name="twitter:description" content="Build Power. Not Rent It. Own your digital infrastructure." >
|
||||
|
||||
@ -111,7 +111,7 @@
|
||||
<div data-md-component="skip">
|
||||
|
||||
|
||||
<a href="#getting-started-with-digital-liberation" class="md-skip">
|
||||
<a href="#getting-started" class="md-skip">
|
||||
Skip to content
|
||||
</a>
|
||||
|
||||
@ -164,7 +164,7 @@ Changemaker Archive. <a href="https://docs.bnkops.com">Learn more</a>
|
||||
<div class="md-header__topic" data-md-component="header-topic">
|
||||
<span class="md-ellipsis">
|
||||
|
||||
Getting Started with Digital Liberation
|
||||
Getting Started
|
||||
|
||||
</span>
|
||||
</div>
|
||||
@ -1485,9 +1485,9 @@ Changemaker Archive. <a href="https://docs.bnkops.com">Learn more</a>
|
||||
<ul class="md-nav__list">
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#build-changemkaer-lite" class="md-nav__link">
|
||||
<a href="#build-changemaker-lite" class="md-nav__link">
|
||||
<span class="md-ellipsis">
|
||||
Build Changemkaer-Lite
|
||||
Build Changemaker-Lite
|
||||
</span>
|
||||
</a>
|
||||
|
||||
@ -1943,10 +1943,17 @@ Changemaker Archive. <a href="https://docs.bnkops.com">Learn more</a>
|
||||
|
||||
|
||||
|
||||
<h1 id="getting-started-with-digital-liberation">Getting Started with Digital Liberation<a class="headerlink" href="#getting-started-with-digital-liberation" title="Permanent link">¶</a></h1>
|
||||
<h1 id="getting-started">Getting Started<a class="headerlink" href="#getting-started" title="Permanent link">¶</a></h1>
|
||||
<p>Welcome to Changemaker-Lite! You're about to reclaim your digital sovereignty and stop feeding your secrets to corporations. This guide will help you set up your own political infrastructure that you actually own and control.</p>
|
||||
<p>This documentation is broken into a few sections: </p>
|
||||
<ul>
|
||||
<li><strong>Build:</strong> Instructions on how to build the cm-lite on your own hardware </li>
|
||||
<li><strong>Services:</strong> Overview of all the services that are installed when you install cm-lite</li>
|
||||
<li><strong>Configuration:</strong> Information on how to configure all the services that you install in cm-lite</li>
|
||||
<li><strong>Manuals:</strong> Manuals on how to use the applications inside cm-lite (with videos!)</li>
|
||||
</ul>
|
||||
<h2 id="quick-start">Quick Start<a class="headerlink" href="#quick-start" title="Permanent link">¶</a></h2>
|
||||
<h3 id="build-changemkaer-lite">Build Changemkaer-Lite<a class="headerlink" href="#build-changemkaer-lite" title="Permanent link">¶</a></h3>
|
||||
<h3 id="build-changemaker-lite">Build Changemaker-Lite<a class="headerlink" href="#build-changemaker-lite" title="Permanent link">¶</a></h3>
|
||||
<div class="language-bash highlight"><pre><span></span><code><span id="__span-0-1"><a id="__codelineno-0-1" name="__codelineno-0-1" href="#__codelineno-0-1"></a><span class="c1"># Clone the repository</span>
|
||||
</span><span id="__span-0-2"><a id="__codelineno-0-2" name="__codelineno-0-2" href="#__codelineno-0-2"></a>git<span class="w"> </span>clone<span class="w"> </span>https://gitea.bnkops.com/admin/changemaker.lite
|
||||
</span><span id="__span-0-3"><a id="__codelineno-0-3" name="__codelineno-0-3" href="#__codelineno-0-3"></a><span class="nb">cd</span><span class="w"> </span>changemaker.lite
|
||||
|
||||
@ -2169,7 +2169,7 @@ Changemaker Archive. <a href="https://docs.bnkops.com">Learn more</a>
|
||||
<nav class="md-footer__inner md-grid" aria-label="Footer" >
|
||||
|
||||
|
||||
<a href="../" class="md-footer__link md-footer__link--prev" aria-label="Previous: Getting Started with Digital Liberation">
|
||||
<a href="../" class="md-footer__link md-footer__link--prev" aria-label="Previous: Getting Started">
|
||||
<div class="md-footer__button md-icon">
|
||||
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11z"/></svg>
|
||||
@ -2179,7 +2179,7 @@ Changemaker Archive. <a href="https://docs.bnkops.com">Learn more</a>
|
||||
Previous
|
||||
</span>
|
||||
<div class="md-ellipsis">
|
||||
Getting Started with Digital Liberation
|
||||
Getting Started
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
@ -1973,13 +1973,13 @@ Changemaker Archive. <a href="https://docs.bnkops.com">Learn more</a>
|
||||
|
||||
|
||||
|
||||
<a href="../../build/" class="md-footer__link md-footer__link--next" aria-label="Next: Getting Started with Digital Liberation">
|
||||
<a href="../../build/" class="md-footer__link md-footer__link--next" aria-label="Next: Getting Started">
|
||||
<div class="md-footer__title">
|
||||
<span class="md-footer__direction">
|
||||
Next
|
||||
</span>
|
||||
<div class="md-ellipsis">
|
||||
Getting Started with Digital Liberation
|
||||
Getting Started
|
||||
</div>
|
||||
</div>
|
||||
<div class="md-footer__button md-icon">
|
||||
|
||||
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user