Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 2 additions & 13 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,2 @@
# These are supported funding model platforms

github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
custom: ['https://buymeacoffee.com/millan']
ko_fi: milanpetrovic
buy_me_a_coffee: millan
14 changes: 7 additions & 7 deletions archivespress.php
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
<?php
/**
* Plugin Name: ArchivesPress: Index Blocks for WordPress
* Plugin URI: https://plugins.dev4press.com/archivespress/
* Plugin URI: https://www.dev4press.com/plugins/archivespress/
* Description: Display indexes based on the dates (years, months, and days archives), authors, and taxonomy terms for quick navigation and filtering of posts.
* Author: Milan Petrovic
* Author URI: https://www.dev4press.com/
* Text Domain: archivespress
* Version: 3.3
* Requires at least: 6.1
* Tested up to: 6.6
* Requires PHP: 7.4
* Version: 3.4
* Requires at least: 6.4
* Tested up to: 7.0
* Requires PHP: 8.0
* License: GPLv3 or later
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
*
* @package ArchivesPress
*
* == Copyright ==
* Copyright 2008 - 2024 Milan Petrovic (email: support@dev4press.com)
* Copyright 2008 - 2026 Milan Petrovic (email: support@dev4press.com)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand All @@ -34,7 +34,7 @@

use Dev4Press\Plugin\ArchivesPress\Basic\Plugin;

const ARCHIVESPRESS_VERSION = '3.3';
const ARCHIVESPRESS_VERSION = '3.4';

$archivespress_dirname_basic = dirname( __FILE__ ) . '/';
$archivespress_urlname_basic = plugins_url( '/', __FILE__ );
Expand Down
2 changes: 1 addition & 1 deletion archivespress.pot
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ msgid "ArchivesPress: Index Blocks for WordPress"
msgstr ""

#. Plugin URI of the plugin
msgid "https://plugins.dev4press.com/archivespress/"
msgid "https://www.dev4press.com/plugins/archivespress/"
msgstr ""

#. Description of the plugin
Expand Down
4 changes: 2 additions & 2 deletions build/blocks/authors/block.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 2,
"apiVersion": 3,
"name": "archivespress/authors",
"category": "archivespress",
"title": "Authors Archives Index",
"description": "Display authors archives index.",
"textdomain": "archivespress",
"version": "3.0",
"version": "3.4",
"supports": {
"customClassName": false
},
Expand Down
4 changes: 2 additions & 2 deletions build/blocks/dates/block.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 2,
"apiVersion": 3,
"name": "archivespress/dates",
"category": "archivespress",
"title": "Dates Archives Index",
"description": "Display dates archives index.",
"textdomain": "archivespress",
"version": "3.0",
"version": "3.4",
"supports": {
"customClassName": false
},
Expand Down
4 changes: 2 additions & 2 deletions build/blocks/terms/block.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 2,
"apiVersion": 3,
"name": "archivespress/terms",
"category": "archivespress",
"title": "Terms Archives Index",
"description": "Display taxonomy terms archives index.",
"textdomain": "archivespress",
"version": "3.0",
"version": "3.4",
"supports": {
"customClassName": false
},
Expand Down
2 changes: 1 addition & 1 deletion build/index.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('react', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-i18n', 'wp-server-side-render'), 'version' => '761b598cac79b2f4e0d8');
<?php return array('dependencies' => array('react', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-i18n', 'wp-server-side-render'), 'version' => '0d7567b17a416c06a5a9');
2 changes: 1 addition & 1 deletion build/index.js

Large diffs are not rendered by default.

14 changes: 3 additions & 11 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

## Changelog

### Version: 3.4 / October 1, 2024

### Version: 3.4 / July 19, 2026

* **edit** updated blocks to API version 3
* **edit** updated blocks packages dependencies to WP 6.4

### Version: 3.3 / June 28, 2024

Expand All @@ -22,12 +23,3 @@

* **new** updated plugin system requirements
* **edit** built with the updated core libraries

### Version: 3.0 / October 12, 2023

* **new** blocks source uses JSON file format for blocks
* **new** built with the updated core libraries
* **new** requires WordPress 5.8 or newer
* **edit** few changes to the block controls imports
* **edit** updated missing default values for blocks
* **fix** issue with having the colors as CSS variables
10 changes: 5 additions & 5 deletions core/basic/Information.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@
class Information {
public $code = 'archivespress';

public $version = '3.2';
public $build = 32;
public $version = '3.4';
public $build = 34;
public $edition = 'free';
public $status = 'stable';
public $updated = '2024.03.02';
public $updated = '2026.07.19';
public $released = '2021.04.22';

public $author_name = 'Milan Petrovic';
public $author_url = 'https://www.dev4press.com/';

public $php = '7.4';
public $wordpress = '6.0';
public $php = '8.0';
public $wordpress = '6.4';

public static function instance() : Information {
static $instance = null;
Expand Down
9 changes: 9 additions & 0 deletions history.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

## Changelog

### Version: 3.0 / October 12, 2023

* **new** blocks source uses JSON file format for blocks
* **new** built with the updated core libraries
* **new** requires WordPress 5.8 or newer
* **edit** few changes to the block controls imports
* **edit** updated missing default values for blocks
* **fix** issue with having the colors as CSS variables

### Version: 2.6 / July 15, 2023

* **new** built with the updated core libraries
Expand Down
Loading