Author Topic: 4images 1.7.6  (Read 116848 times)

0 Members and 1 Guest are viewing this topic.

Offline Jan

  • Administrator
  • 4images Guru
  • *****
  • Posts: 5.024
    • View Profile
    • 4images - Image Gallery Management System
4images 1.7.6
« on: February 05, 2008, 12:09:44 PM »
Die neue Version 1.7.6 wurde soeben veröffentlicht. Dies Release bietet neuen Funktionen sowie Detailverbesserungen und behebt kleinerere Fehler.
Wir empfehlen allen Nutzern ein Update auf die aktuelle Version. Alle Änderungen und Features sind in der Datei "docs/Changelog.txt" aufgelistet.

The new version 1.7.6 has just been released. This release comes with lots of improvements, bugfixes and minor changes.
We recommend all users to update to the current version. All changes and features are listed in "docs/Changelog.txt".

Download:
http://www.4homepages.de/4images/download.php

Demo:
http://www.4homepages.de/4images/demo.php


Für Feedback zur 4images 1.7.6 Version bitte diesen Thread nutzen.

Please use this thread for feedback about the 4images 1.7.6 version.
« Last Edit: May 14, 2009, 08:32:33 AM by kai »
Your first three "must do" before you ask a question:
1. Forum rules
2. FAQ
3. Search

Offline Jan

  • Administrator
  • 4images Guru
  • *****
  • Posts: 5.024
    • View Profile
    • 4images - Image Gallery Management System
Re: 4images 1.7.6
« Reply #1 on: February 05, 2008, 12:18:57 PM »
=========================================================
ChangeLog Version 1.7.6
=========================================================
- Fixed bugs reported at http://www.4homepages.de/forum/index.php?topic=20352.0
- Added success message after posting a comment
- Disabled download button in lightbox if there are no download permissions for all images in the lightbox
- "Delete lightbox" link is now hidden if the lightbox is empty
- Added possibility to sort by filenames in CP image search form
- Added onchange javascript for "per page" dropdown

Geänderte Dateien / Changed Files:
---------------------------------------
- admin/admin_global.php
- admin/images.php
- includes/constants.php
- includes/functions.php
- includes/page_header.php
- detail.php
- download.php
- lightbox.php
- postcard.php

Geänderte Templates / Changed Templates:
---------------------------------------
- postcard_preview.html
- lightbox.html
- setperpage_dropdown_form.html

Sprache / Language:
---------------------------------------
- main.php
    translated iptc_* strings to german (lang/deutsch/main.php only)
    new: $lang['comment_success']

=========================================================

The changelog for all versions can be found here:
http://www.4homepages.de/forum/index.php?topic=15186.0
« Last Edit: February 07, 2008, 12:34:21 PM by kai »
Your first three "must do" before you ask a question:
1. Forum rules
2. FAQ
3. Search

Offline kai

  • Administrator
  • Addicted member
  • *****
  • Posts: 1.418
    • View Profile
    • 4images - Image Gallery Management System
Re: 4images 1.7.6
« Reply #2 on: February 07, 2008, 04:37:37 PM »
Here is a detailed list of what has been changed in templates.

postcard_preview.html

Code: [Select]
<input type="hidden" name="message" value="{message}" />
is replaced by

Code: [Select]
<input type="hidden" name="message" value="{message_hidden}" />


lightbox.html

Code: [Select]
                        <script language="JavaScript">
        function clearlightbox() {
                  if (confirm('{lang_delete_lightbox_confirm}')) {
                location.href = "{url_delete_lightbox}";
                  }
                    }
        </script>
                        <a href="javascript:clearlightbox()"><b>{lang_delete_lightbox}</b></a>

is replaced by

Code: [Select]
                      {if thumbnails}
                        <script language="JavaScript">
        function clearlightbox() {
                  if (confirm('{lang_delete_lightbox_confirm}')) {
                location.href = "{url_delete_lightbox}";
                  }
                    }
        </script>
                        <a href="javascript:clearlightbox()"><b>{lang_delete_lightbox}</b></a>
                        {endif thumbnails}



setperpage_dropdown_form.html

Code: [Select]
<form method="post" action="{self}">
is replaced by

Code: [Select]
<form method="post" action="{self}" name="perpagebox">

Code: [Select]
<input type="submit" value="{lang_go}" class="button" name="submit" />
is replaced by

Code: [Select]
<input type="submit" value="{lang_go}" class="button" />
« Last Edit: May 15, 2009, 04:53:57 PM by kai »
Your first three "must do" before you ask a question:
1. Forum rules
2. FAQ
3. Search