Refactors README instance tables by adding comment markers
to delineate clearnet and onion entries. Introduces a new
JSON file to centralize instance metadata.
Updates CI/CD workflow to trigger on tag pushes and use Forgejo credentials
Renames login and push steps to reflect the new container registry
Modifies documentation and compose file to point to the updated image URL
Configures a CI/CD pipeline to build and push Docker images to git.private.coffee.
Sets up dependencies, QEMU, Buildx, and authentication for seamless Docker operations.
Enables the entrypoint script by setting its executable permission in the Dockerfile,
ensuring proper container startup. Also updates the project version for the new release.
Changes headers from level 2 to level 3 for section
uniformity, emphasizing consistent formatting throughout
the documentation. Enhances readability by following
document structure standards.
Introduces a Docker section in the README with instructions on
setting up Wikimore using Docker Compose, providing an
alternative to the standard installation method.
Updates .gitignore to exclude docker-compose.yml from version
control to prevent accidental configuration changes from being
tracked.
Switches base image from Python to Alpine for a slimmer image and improved startup efficiency.
Uses a virtual environment for Python dependencies and adds a dedicated user for the application, enhancing security and environment isolation.
Introduces a new entrypoint script for better configuration of uWSGI server and updates Docker compose setup to include security options and resource limits. Removes old compose file in favor of a more secure configuration example.
Introduces a Docker CI/CD pipeline for automatic builds and
deployment to Docker Hub upon new tag pushes. Increments
project version from 0.1.8 to 0.1.9.
Enhances API request to include categories for articles and displays
categories with links on article pages. Aligns styling for category
links by updating CSS class names. This change improves article
navigation by providing users direct access to related categories.
Refactors to integrate fetching article info, badges, and interwiki links in a single request. Adds support to display category members and improves interwiki link processing by translating links where feasible. Adds error handling for interwiki processing. Updates HTML template to display category members.
Improves performance and reduces external requests, enhancing user navigation and data retrieval efficiency.
Fixes#19.
Fetches and displays badges for articles using the MediaWiki API.
Updates templates to show badges as icons linking to detailed info.
Adds CSS styling for badge presentation in the article view.
Enhances user experience by providing additional context through
quick-access badge information.
Fixes#21.
Adds emoji flags next to country names to improve
visual clarity and usability in the instances list.
Improves user understanding of instance locations.
Updates the project version from 0.1.5 to 0.1.6 in the pyproject.toml file. This version increment likely signifies minor changes, improvements, or bug fixes in the project.
Adds functionality to sort languages by user activity with overriding via environment variables.
Implements fetching and integration of interwiki links using the MediaWiki API.
Introduces UI elements for language selection with new styling.
Improves user experience by prioritizing more active languages and providing easy navigation via interwiki links.
Fixes#45
Adds lazy loading attribute to images to improve page load
performance and user experience by deferring the loading
of images until they are in the viewport.
Fixes#44.
Adds new public and Tor hidden service instances to the instances
section, including a new entry for Darkness.services.
Introduces sections for Tor Hidden Services and instructions
for adding new instances via pull requests or issues.
Enhances user support by detailing how to open issues or
provide feedback through Git or Github, and promotes
community engagement via a Matrix room.
Added a new public instance of Wikimore hosted by Lumaeris to the README list. This helps users discover more available instances and expands the visibility of the project.
Closes#42.
Incremented version number to prepare for the new release, ensuring the changes made are properly reflected and versioned. This update helps maintain proper version tracking for future development and release cycles.
Introduce a new route to handle redirects for different Wikimedia project domains. The route dynamically identifies the target project and language based on the domain name and redirects accordingly. If the project is not found, it displays a custom error page.
Enhances user navigation across Wikimedia subdomains, improving user experience and simplifying URL management. Addresses redirect issues for integration with LibRedirect (https://codeberg.org/LibRedirect/browser_extension/issues/142)
Updated single quote usage in URL generation for consistency and readability in `wiki_article` function. This improves code maintainability and avoids potential issues with character escaping.
Switched double quotes to single quotes in URL handling code for better consistency and to avoid potential issues with escaping characters. This ensures the proper construction of the API request URL, improving reliability when fetching wiki articles.
Included a new public instance of Wikimore provided by bloat.cat based in Germany. This update helps users find more public instances for better accessibility and redundancy.
Closes#39
Removed the unused exception variable from the error handling block during MediaWiki API request. This helps in reducing potential future linting errors and maintains cleaner code. No functional changes.
Introduced caching for license data retrieved from the MediaWiki API. This avoids redundant API requests by storing the license information for each base URL. Enhances performance and reduces the risk of hitting request limits or encountering errors due to multiple API calls.
Extended the home route to accept optional project and language
parameters to dynamically render content based on these inputs.
Improved handling within the article fetching function, including
validating projects and languages, adding variant headers, and
following redirects conditionally. Updated links to accommodate
internal, external, and interwiki links, with structured checks
for main page redirections. Removed redundant meta links and edit
sections to clean up the rendered content. Added proxying for images
and videos, converted category elements to links, and improved class
assignments for reference links. Ensured right-to-left languages are
handled appropriately.
Fixes#29.