Jump to content

tommax123

Clients
  • Posts

    37
  • Joined

  • Last visited

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Posts posted by tommax123

  1. On 10/30/2018 at 10:13 PM, opentype said:

    I saw it and noted it as feedback. There is no need to bump it. It might come in a future release, but since updating Pages template sets is quite cumbersome for users at this point, I will certainly not push out a new release to 350 clients just to add a button. If the IPS Community Suite 4.4 requires changes to SuperGrid, which I expect, the next release will probably right after the 4.4 release. 

    How about this?

     

  2. Could you consider the creation of similar component for books using the foundation of videos component? I'm interested in different formats (docx, pdf, djvu etc). The main idea is preview of book content and creation of discussion topic with rich token substitution. Maybe for creation of preview we can write server side service (on .NET) and return preview in pdf format for any supporting formats of books. Any other ideas are welcome. You have a good foundation for different types of content to structure them on the portal

    Definitely in first version we can have only PDF files support. And some other formats like docx can be easily converted to PDF by user.

  3. Quote

     

    Вопрос: Мы заметили, что Клэр борется против первой формы мутировавшего G-вирусом ученого, чего не было в первом сценарии, и, кроме того, история Айронса, похоже, куда больше, чем в оригинале. Таким образом, можем ли мы сказать, что изменение сюжета - это то, чего можно ожидать в основной игре?
    Кадои: Ну, значительная часть сюжета и разворачивающиеся события основаны на оригинальной игре, но с другой стороны, мы не только изменили и преобразовали некоторые части сюжета, чтобы повысить кинематоргафичную подачу, но также изменили порядок событий. Мы создали эту игру, чтобы дать игрокам возможность полностью оценить драматическое качество истории, и более того, мы дошли до того, что добавили диалоги в некоторых местах, чтобы игроки смогли полностью погрузиться в историю. Мне бы хотелось думать, что игра по-настоящему воодушевит тех игроков, которые играли в оригинальную игру.
    Канда: Я бы сказал, что шеф Айронс гораздо больше «вертится» в истории ремейка и люди начинают ненавидеть его еще больше [смеется].

    Вопрос: Является ли сюжетная линия единой и линейной или вы добавили к ней нелинейные аспекты?

    Кадои: Несмотря на то, что история воспринимается как одно целое, есть такое ощущение, что вы играете, будто оба персонажа имеют каждый свой собственный сценарий.
    Вопрос: Просто сравнивая Шерри с ее оригинальной моделью, мы видим, что здесь она более взрослая, чем в оригинальной игре.

    Кадои: В оригинале она была юным 12-летним ребенком, похожей больше на мультяшных японских детей. Мы постарались сделать ее похожей на свой возраст и более реалистичной. Также мы постараемся сделать для нее костюм, отображающий стиль 90-х годов.

     

     

    1.jpg

  4. 21 minutes ago, Adriano Faria said:

    I'd suggest you to compare CSS classes between default and your theme.

    I'll test Tutotial in default theme and problem not resolve. :(

    On the default theme for some reason, the gaps between the lines are displayed.

    horrorterritory.com/tutorials/article/1-intervyu-s-prodyuserami-resident-evil-2-remake-kadzunori-kadoi-i-cuyosi-kanda/

  5. On 10/21/2018 at 3:50 AM, Mike John said:

    It might be better to switch to the "localeDate" function then. It should use the correct date depending on the language selected.

    If we will have separate setting per language then we can specify any format we want (long or short date time) for each language. On my view big opportunities are in setting of any format (m-Y, d-m, etc) as setting.

    On 10/21/2018 at 3:50 AM, Mike John said:

    This is in addition to the quick add bug?

    It's separate bug.

  6. Hello,

    I have a problem with the editor: indent between lines in the article is more than it shows in the editor. In the remaining sections everything is fine. The problem is only with Tutorials. How to fix it?

    First screen - article. Second screen - editor.

    1.jpg

    2.jpg

  7. Quote

     

    Add one more configuration to discussion topic in order to allow to specify date format per language

    $tags['%DATE_ADDED%']     = \IPS\DateTime::create( $this->date )->format( 'd-m-Y' );
    $tags['%DATE_UPDATED%']     = $this->last_updated ? \IPS\DateTime::create( $this->last_updated )->format( 'd-m-Y' ) : '';

     

    Could you consider this feature? To allow user to use any format of date supported by php (Y-m-d, d-m-Y etc) and depending from using language.

    And we have one more bug. For some reasons during first saving of new added video the "%BOARD_URL%" token is being lost. We need to edit new added video and specify this token one more time. After that he is being saved properly.

    Thank you for your feedback!

  8. if( $this->video_type == 'media_upload_url' )
            {
                /* Change board url tag to actual url */
                if( mb_substr( $this->video_data, 0, 11 ) === '%BOARD_URL%' )
                {
                    $this->video_data = str_replace( '%BOARD_URL%', '', $this->video_data );
                }
            }

    This is what i want and it works. Substitution str_replace( '%BOARD_URL%', '', $this->video_data ). Could you include this fix in the next build? And what about video addresses in pages of video system? Are they being recalculated every time (request) based on current site address? I still mean the case of change of site address

    Can we do by the same way site-relative values of other tokens (%VIDEO_LINK%, %CATEGORY_LINK% etc)?

    $tags['%CATEGORY_LINK%'] = "<a href=".str_replace( \IPS\Http\Url::internal( '' ), '', $this->container()->url() ).">".$this->container()->_title."</a>";
    $tags['%VIDEO_LINK%']	 = "<a href=".str_replace( \IPS\Http\Url::internal( '' ), '', $this->url() ).">{$this->title}</a>";
    $tags['%PROFILE_LINK%']	 = "<a href=".str_replace( \IPS\Http\Url::internal( '' ), '', $this->author()->url() ).">".$this->author()->name."</a>";

    You have a bug when the name of picture contains brackets ( )

    https://yadi.sk/i/bQFp2z54o1UQlg

    You can't add video with site-relative address via "Quick Add" dialog

    https://yadi.sk/i/-VSqYix9VE82rw

    Issue with category content

    https://yadi.sk/i/zc_ls9h8R-pmGw

    Add one more configuration to discussion topic in order to allow to specify date format per language

    $tags['%DATE_ADDED%']     = \IPS\DateTime::create( $this->date )->format( 'd-m-Y' );
    $tags['%DATE_UPDATED%']     = $this->last_updated ? \IPS\DateTime::create( $this->last_updated )->format( 'd-m-Y' ) : '';

  9. Hello,

    When you specify "Media Upload URL" value during "Enter url to uploaded file" mode like "%BOARD_URL%/OpenData/video.mp4" then in discussion topic via "%VIDEO_DATA%" token we have "%BOARD_URL%/OpenData/video.mp4". It's not right. We need to substitute this token if we go by this way. Will be better if we will have only part after %BOARD_URL% token in discussion topic because in case of change of site address we will not require to update existing topics. On my view we can reject the use of %BOARD_URL% fully even in video page. Simply allow user to specify site relative url as is. Because in current moment if we don't include %BOARD_URL% then additional value like "http://site/uploads/" is being prepended to specified url by user. Could you provide a quick fix?

×
×
  • Create New...