Plugin Directory

Changeset 3162834


Ignore:
Timestamp:
10/04/2024 03:58:42 PM (17 months ago)
Author:
codeadapted
Message:

v1.0.1 Add Spanish Translations

Location:
ai-post-visualizer
Files:
6 added
6 edited
6 copied

Legend:

Unmodified
Added
Removed
  • ai-post-visualizer/tags/1.0.1/admin/css/admin.css

    r3162770 r3162834  
    10421042
    10431043#aipv-admin-view .content-area .main-content .template-generate.not-validated .render.btn .sign-up-text div {
    1044     color: var(--light-bg);
     1044    color: var(--link-teal);
    10451045    transition: color 0.2s ease-in-out;
    10461046    cursor: pointer;
    10471047    display: inline-block;
    1048 }
    1049 
    1050 #aipv-admin-view .content-area .main-content .template-generate.not-validated .render.btn .sign-up-text div:hover {
    1051     color: var(--btn-purple);
     1048    position: relative;
     1049}
     1050
     1051#aipv-admin-view .content-area .main-content .template-generate.not-validated .render.btn .sign-up-text div:after {
     1052    content: '';
     1053    position: absolute;
     1054    bottom: -1px;
     1055    left: 0;
     1056    width: 0;
     1057    height: 1px;
     1058    background-color: var(--link-teal);
     1059    transition: width .2s ease-in-out, color 0.2s ease-in-out;
     1060}
     1061
     1062#aipv-admin-view .content-area .main-content .template-generate.not-validated .render.btn .sign-up-text div:hover:after {
     1063    width: 100%;
    10521064}
    10531065
     
    18551867}
    18561868
     1869#aipv-admin-view.light .content-area .main-content .template-generate.not-validated .render.btn .sign-up-text {
     1870    color: var(--dark-secondary-bg);
     1871}
     1872
     1873#aipv-admin-view.light .content-area .main-content .template-generate.not-validated .render.btn .sign-up-text div {
     1874    color: var(--btn-purple);
     1875}
     1876
     1877#aipv-admin-view.light .content-area .main-content .template-generate.not-validated .render.btn .sign-up-text div:after {
     1878    background-color: var(--btn-purple);
     1879}
     1880
    18571881#aipv-admin-view.light .content-area .main-content .template-settings .toggle-circle {
    18581882    background: var(--dark-border);
  • ai-post-visualizer/tags/1.0.1/admin/views/posts.php

    r3162770 r3162834  
    6767
    6868                <!-- Filter reset -->
    69                 <a class="filter-reset">Reset Filters</a>
     69                <a class="filter-reset"><?php esc_html_e( 'Reset Filters', 'ai-post-visualizer' ); ?></a>
    7070
    7171            </div>
  • ai-post-visualizer/tags/1.0.1/ai-post-visualizer.php

    r3162770 r3162834  
    33 * Plugin Name:  AI Post Visualizer
    44 * Description:  Add featured images generated by Open AI's DALL·E API into your posts all in one place.
    5  * Version:      1.0.0
     5 * Version:      1.0.1
    66 * Author:       CodeAdapted
    77 * Author URI:   https://codeadapted.com
  • ai-post-visualizer/tags/1.0.1/readme.txt

    r3162770 r3162834  
    44Requires at least: 5.0 or higher
    55Tested up to: 6.6.2
    6 Stable tag: 1.0.0
     6Stable tag: 1.0.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8585== Screenshots ==
    8686
    87 1. Settings: Configure your API key and data retention settings.
    88 2. Posts: View and manage the featured images for each post.
    89 3. Posts Filtering: Filter and search through your posts to quickly find the posts you need to update.
    90 4. Generate AI Images: Effortlessly create custom images using DALL·E by entering keyword prompts, and seamlessly apply them to your posts.
    91 5. Generation History: Quickly access and reuse previously generated images for any post, and easily revert to the original image if needed.
    92 6. Viewer Mode: Easily switch between light and dark modes for a customized viewing experience.
     871. **Settings**: Configure your API key and data retention settings.
     882. **Posts**: View and manage the featured images for each post.
     893. **Posts Filtering**: Filter and search through your posts to quickly find the posts you need to update.
     904. **Generate AI Images**: Effortlessly create custom images using DALL·E by entering keyword prompts, and seamlessly apply them to your posts.
     915. **Generation History**: Quickly access and reuse previously generated images for any post, and easily revert to the original image if needed.
     926. **Viewer Mode**: Easily switch between light and dark modes for a customized viewing experience.
    9393
    9494== Frequently Asked Questions ==
     
    105105== Changelog ==
    106106
     107= 1.0.1 =
     108* Add Spanish translations.
     109
    107110= 1.0.0 =
    108111* Initial release with AI image generation, post filtering, and data retention settings.
  • ai-post-visualizer/trunk/admin/css/admin.css

    r3162770 r3162834  
    10421042
    10431043#aipv-admin-view .content-area .main-content .template-generate.not-validated .render.btn .sign-up-text div {
    1044     color: var(--light-bg);
     1044    color: var(--link-teal);
    10451045    transition: color 0.2s ease-in-out;
    10461046    cursor: pointer;
    10471047    display: inline-block;
    1048 }
    1049 
    1050 #aipv-admin-view .content-area .main-content .template-generate.not-validated .render.btn .sign-up-text div:hover {
    1051     color: var(--btn-purple);
     1048    position: relative;
     1049}
     1050
     1051#aipv-admin-view .content-area .main-content .template-generate.not-validated .render.btn .sign-up-text div:after {
     1052    content: '';
     1053    position: absolute;
     1054    bottom: -1px;
     1055    left: 0;
     1056    width: 0;
     1057    height: 1px;
     1058    background-color: var(--link-teal);
     1059    transition: width .2s ease-in-out, color 0.2s ease-in-out;
     1060}
     1061
     1062#aipv-admin-view .content-area .main-content .template-generate.not-validated .render.btn .sign-up-text div:hover:after {
     1063    width: 100%;
    10521064}
    10531065
     
    18551867}
    18561868
     1869#aipv-admin-view.light .content-area .main-content .template-generate.not-validated .render.btn .sign-up-text {
     1870    color: var(--dark-secondary-bg);
     1871}
     1872
     1873#aipv-admin-view.light .content-area .main-content .template-generate.not-validated .render.btn .sign-up-text div {
     1874    color: var(--btn-purple);
     1875}
     1876
     1877#aipv-admin-view.light .content-area .main-content .template-generate.not-validated .render.btn .sign-up-text div:after {
     1878    background-color: var(--btn-purple);
     1879}
     1880
    18571881#aipv-admin-view.light .content-area .main-content .template-settings .toggle-circle {
    18581882    background: var(--dark-border);
  • ai-post-visualizer/trunk/admin/views/posts.php

    r3162770 r3162834  
    6767
    6868                <!-- Filter reset -->
    69                 <a class="filter-reset">Reset Filters</a>
     69                <a class="filter-reset"><?php esc_html_e( 'Reset Filters', 'ai-post-visualizer' ); ?></a>
    7070
    7171            </div>
  • ai-post-visualizer/trunk/ai-post-visualizer.php

    r3162770 r3162834  
    33 * Plugin Name:  AI Post Visualizer
    44 * Description:  Add featured images generated by Open AI's DALL·E API into your posts all in one place.
    5  * Version:      1.0.0
     5 * Version:      1.0.1
    66 * Author:       CodeAdapted
    77 * Author URI:   https://codeadapted.com
  • ai-post-visualizer/trunk/readme.txt

    r3162770 r3162834  
    44Requires at least: 5.0 or higher
    55Tested up to: 6.6.2
    6 Stable tag: 1.0.0
     6Stable tag: 1.0.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8585== Screenshots ==
    8686
    87 1. Settings: Configure your API key and data retention settings.
    88 2. Posts: View and manage the featured images for each post.
    89 3. Posts Filtering: Filter and search through your posts to quickly find the posts you need to update.
    90 4. Generate AI Images: Effortlessly create custom images using DALL·E by entering keyword prompts, and seamlessly apply them to your posts.
    91 5. Generation History: Quickly access and reuse previously generated images for any post, and easily revert to the original image if needed.
    92 6. Viewer Mode: Easily switch between light and dark modes for a customized viewing experience.
     871. **Settings**: Configure your API key and data retention settings.
     882. **Posts**: View and manage the featured images for each post.
     893. **Posts Filtering**: Filter and search through your posts to quickly find the posts you need to update.
     904. **Generate AI Images**: Effortlessly create custom images using DALL·E by entering keyword prompts, and seamlessly apply them to your posts.
     915. **Generation History**: Quickly access and reuse previously generated images for any post, and easily revert to the original image if needed.
     926. **Viewer Mode**: Easily switch between light and dark modes for a customized viewing experience.
    9393
    9494== Frequently Asked Questions ==
     
    105105== Changelog ==
    106106
     107= 1.0.1 =
     108* Add Spanish translations.
     109
    107110= 1.0.0 =
    108111* Initial release with AI image generation, post filtering, and data retention settings.
Note: See TracChangeset for help on using the changeset viewer.