Plugin Directory

Changeset 3372484


Ignore:
Timestamp:
10/03/2025 04:52:37 PM (5 months ago)
Author:
newcodebyte
Message:

Update to 1.0.2

Location:
advanced-redirect-manager
Files:
78 added
5 edited

Legend:

Unmodified
Added
Removed
  • advanced-redirect-manager/trunk/admin/class-arm-admin-page.php

    r3342802 r3372484  
    6262            'tools'          => __( 'Tools & Options', 'advanced-redirect-manager' ),
    6363            'support'        => __( 'Support', 'advanced-redirect-manager' ),
     64            'ncb_apps'       => __( 'NewCodeByte Apps', 'advanced-redirect-manager' ),           
    6465        );
    6566       
  • advanced-redirect-manager/trunk/advanced-redirect-manager.php

    r3346799 r3372484  
    44 * Plugin URI:        https://wordpress.org/plugins/advanced-redirect-manager/
    55 * Description:       A powerful suite for site maintenance: create and manage 301/302 redirects, monitor 404 errors in real-time, and proactively scan your content for broken links.
    6  * Version:           1.0.1
     6 * Version:           1.0.2
    77 * Requires at least: 5.2
    88 * Requires PHP:      7.4
     
    2323 * Define core plugin constants.
    2424 */
    25 define( 'NCB_ARM_VERSION', '1.0.0' );
     25define( 'NCB_ARM_VERSION', '1.0.2' );
    2626define( 'NCB_ARM_PLUGIN_FILE', __FILE__ );
    2727define( 'NCB_ARM_PLUGIN_PATH', plugin_dir_path( NCB_ARM_PLUGIN_FILE ) );
  • advanced-redirect-manager/trunk/assets/css/arm-admin-styles.css

    r3346799 r3372484  
    278278    font-size: 13px;
    279279}
     280
     281/*
     282=====================================================
     283  Stili per la Tab "NewCodeByte Apps"
     284=====================================================
     285*/
     286
     287/* 1. Il contenitore, ora usa Flexbox */
     288.newcodebyte-plugins-grid {
     289    display: flex;
     290    flex-wrap: wrap;
     291    gap: 20px;
     292    margin-top: 20px;
     293}
     294
     295/* 2. La singola card */
     296.plugin-card {
     297    flex: 1 1 350px;
     298    max-width: 550px;
     299    background: #fff;
     300    border: 1px solid #c3c4c7;
     301    padding: 20px;
     302    border-radius: 4px;
     303    display: flex;
     304    align-items: flex-start;
     305    gap: 20px;
     306}
     307
     308/* 3. L'icona del plugin */
     309.plugin-card .plugin-icon-img {
     310    width: 125px;
     311    height: auto;
     312    border-radius: 8px;
     313    flex-shrink: 0;
     314}
     315
     316/* 4. Il contenitore del testo */
     317.plugin-card .plugin-info {
     318    display: flex;
     319    flex-direction: column;
     320    flex-grow: 1;
     321}
     322
     323.plugin-card .plugin-info h3 {
     324    margin: 0 0 8px 0;
     325    font-size: 1.2em; /* Dimensione del titolo della card */
     326}
     327
     328.plugin-card .plugin-info p {
     329    margin: 0;
     330    flex-grow: 1; /* Fa in modo che il paragrafo occupi lo spazio disponibile */
     331}
     332
     333.plugin-card .plugin-info .plugin-links {
     334    margin-top: 15px;
     335}
  • advanced-redirect-manager/trunk/readme.txt

    r3346803 r3372484  
    55Tested up to: 6.8
    66Requires PHP: 7.4
    7 Stable tag: 1.0.1
     7Stable tag: 1.0.2
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    112112== Changelog ==
    113113
     114= 1.0.2 =
     115*   **New Feature:** Added "NewCodeByte Apps" section for a cleaner and more intuitive user experience, a new "NewCodeByte Apps" tab to showcase other available plugins from the author.
     116
    114117=1.0.1 =
    115118*   New Feature: Added support for 308 Permanent Redirects, the modern and more precise alternative to 301s.
  • advanced-redirect-manager/trunk/templates/admin-page-wrapper.php

    r3342802 r3372484  
    6464                require_once NCB_ARM_PLUGIN_PATH . 'templates/tab-support.php';
    6565                break;
     66            case 'ncb_apps':
     67            require_once NCB_ARM_PLUGIN_PATH . 'templates/tab-ncb-apps.php';
     68                break;               
    6669            case 'redirect_rules':
    6770            default:
Note: See TracChangeset for help on using the changeset viewer.