Plugin Directory

Changeset 3473604


Ignore:
Timestamp:
03/03/2026 12:13:24 PM (4 weeks ago)
Author:
vinacles
Message:

Release 3.1.0 — plugin source

Location:
vinacles-api-shop/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • vinacles-api-shop/trunk/README.md

    r3465804 r3473604  
    44Tested up to: 6.9 
    55Requires PHP: 8.3 
    6 Stable tag: 3.0.5
     6Stable tag: 3.1.0
    77License: GPLv3 or later
    88License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    3939Once configured, you can start adding products via the admin menu and customers will be able to order them via the frontend.
    4040
    41 == Source Code and Build ==
    42 
    43 This plugin ships both compiled assets and their human-readable source code.
    44 
    45 Compiled asset to source mapping:
    46 
    47 - `dist/assets/admin.js` -> `includes/Templates/assets/js/app.js`
    48 - `dist/assets/adminCss.css` -> `includes/Templates/assets/css/shop.css`
    49 - `includes/Admin/dist/assets/admin.js` -> `includes/Admin/src/js/admin.js`
    50 - `includes/Admin/dist/assets/adminCss.css` -> `includes/Admin/src/css/admin.css`
    51 
    52 Build configuration files are included in the plugin package:
    53 
    54 - `package.json`, `package-lock.json`, `vite.config.js`, `tailwind.config.js`, `postcss.config.js`
    55 - `includes/Admin/package.json`, `includes/Admin/package-lock.json`, `includes/Admin/vite.config.js`, `includes/Admin/tailwind.config.js`, `includes/Admin/postcss.config.js`
    56 
    57 To rebuild the frontend/admin bundles:
    58 
    59 ```bash
    60 cd wp-content/plugins/vinacles-api-shop
    61 npm install
    62 npm run build
    63 
    64 cd includes/Admin
    65 npm install
    66 npm run build
    67 ```
    68 
    6941== Screenshots ==
    7042
     
    8961== Changelog ==
    9062
    91 = 3.0.5 =
    92 * handle SVN tree conflicts during batch retries
     63= 3.1.0 =
     64* Release 3.1.0
    9365
    9466
  • vinacles-api-shop/trunk/includes/Admin/package.json

    r3465804 r3473604  
    11{
    22  "name": "AdminDashboard",
    3   "version": "3.0.5",
     3  "version": "3.1.0",
    44  "main": "index.js",
    55  "scripts": {
  • vinacles-api-shop/trunk/package.json

    r3465804 r3473604  
    11{
    22  "name": "WpApiShop",
    3   "version": "3.0.5",
     3  "version": "3.1.0",
    44  "main": "index.js",
    55  "scripts": {
  • vinacles-api-shop/trunk/readme.txt

    r3465804 r3473604  
    44Tested up to: 6.9
    55Requires PHP: 8.3
    6 Stable tag: 3.0.5
     6Stable tag: 3.1.0
    77License: GPLv3 or later
    88License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    3535- Mollie API key
    3636
    37 == Source Code and Build ==
    38 
    39 This plugin includes both compiled assets and their human-readable source files.
    40 
    41 Compiled asset to source mapping:
    42 - `dist/assets/admin.js` -> `includes/Templates/assets/js/app.js`
    43 - `dist/assets/adminCss.css` -> `includes/Templates/assets/css/shop.css`
    44 - `includes/Admin/dist/assets/admin.js` -> `includes/Admin/src/js/admin.js`
    45 - `includes/Admin/dist/assets/adminCss.css` -> `includes/Admin/src/css/admin.css`
    46 
    47 Build configuration files are included in this plugin package:
    48 - `package.json`, `package-lock.json`, `vite.config.js`, `tailwind.config.js`, `postcss.config.js`
    49 - `includes/Admin/package.json`, `includes/Admin/package-lock.json`, `includes/Admin/vite.config.js`, `includes/Admin/tailwind.config.js`, `includes/Admin/postcss.config.js`
    50 
    51 Build steps:
    52 1. `cd wp-content/plugins/vinacles-api-shop`
    53 2. `npm install && npm run build`
    54 3. `cd includes/Admin`
    55 4. `npm install && npm run build`
    56 
    5737== Frequently Asked Questions ==
    5838
     
    6848== Changelog ==
    6949
    70 = 3.0.5 =
    71 * handle SVN tree conflicts during batch retries
     50= 3.1.0 =
     51* Release 3.1.0
    7252
    7353
  • vinacles-api-shop/trunk/vinacles-api-shop.php

    r3465804 r3473604  
    44 * Plugin Name: VINACLES API Shop
    55 * Description: Handles eCommerce product listings, payments via Mollie, and external order API integration.
    6  * Version: 3.0.5
     6 * Version: 3.1.0
    77 * Author: Vinacles
    88 * License: GPLv3 or later
Note: See TracChangeset for help on using the changeset viewer.