Plugin Directory

Changeset 2636211


Ignore:
Timestamp:
11/27/2021 06:48:05 AM (4 years ago)
Author:
traveledmap
Message:

Version update and fixes

Location:
traveledmap-trip-itinerary-embedded-map
Files:
1 added
11 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • traveledmap-trip-itinerary-embedded-map/trunk/README.md

    r2636205 r2636211  
    11## Develop
    2 `yarn start`
     2The main thing is to change the variables in the `src/contants/env.php` file
     3Then `cd src/blocks` and `yarn start`
    34
    4 ## Build
    5 `yarn build`
     5## Deploy
     6 - `cd src/blocks && yarn build`
     7 - `git add .`
     8 - `git push`
     9 - Go to the cloned svn repository (see instructions below if the svn repository isn't cloned yet)
     10 - Go inside the svn/trunk folder
     11 - `svn add .`
     12 - `svn commit`
     13 - `svn copy https://plugins.svn.wordpress.org/traveledmap-trip-itinerary-embedded-map/trunk https://plugins.svn.wordpress.org/traveledmap-trip-itinerary-embedded-map/tags/1.1.0 -m "message...."` (creates the tag)
    614
     15If the svn repository has to be installed:
     16 - `svn checkout https://plugins.svn.wordpress.org/traveledmap-trip-itinerary-embedded-map`
     17 - `cd traveledmap-trip-itinerary-embedded-map && rm -rf trunk`
     18 - `git clone [email protected]:qlerebours-bs/wp-traveledmap-trip.git trunk` (will clone in the trunk folder)
     19 - Be careful don't to version .git under svn (you can svn add . --force and then svn revert trunk/.git)
    720## Description
    821The plugin has multiple parts
  • traveledmap-trip-itinerary-embedded-map/trunk/plugin.php

    r2636205 r2636211  
    66 * Author: TraveledMap
    77 * Author URI: https://www.traveledmap.com
    8  * Version: 1.1.0
     8 * Version: 1.1.1
    99 * License: GPL2+
    1010 * License URI: https://www.gnu.org/licenses/gpl-2.0.txt
  • traveledmap-trip-itinerary-embedded-map/trunk/readme.txt

    r2636205 r2636211  
    66Tested up to: 5.8.2
    77Requires PHP: 5.6
    8 Stable tag: 1.1.0
     8Stable tag: 1.1.1
    99License: GPLv2
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    198198* Made compatible with the latest WordPress version
    199199
     200= 1.1.1 =
     201* Update version and fixes
     202
    200203== Upgrade Notice ==
    201204= 1.1.0 =
  • traveledmap-trip-itinerary-embedded-map/trunk/src/shared/constants/env.php

    r2636205 r2636211  
    11<?php
    22
    3 define("ENV_URL", "http://localhost:3000");
    4 define("API_URL", "https://us-central1-traveledmap-dev.cloudfunctions.net");
     3define("ENV_URL", "https://www.traveledmap.com");
     4define("API_URL", "https://us-central1-traveledmap.cloudfunctions.net");
    55define("SDK_VERSION", "1.0.1");
Note: See TracChangeset for help on using the changeset viewer.