FM Design
Would you like to react to this message? Create an account in a few clicks or log in to continue.

IMPORTANT

FM Design is in read-only mode, please click here for more information.

Latest topics
» Forumactif Edge - Releases
by Ange Tuteur Tue 03 Sep 2019, 11:49

» GIFActif - Giphy Button for the Editor
by Ange Tuteur Wed 08 May 2019, 17:21

» Forum Closure
by Ange Tuteur Mon 01 Jan 2018, 01:28

» Chit Chat Thread
by Valoish Sun 31 Dec 2017, 19:15

» Font/Text background color.
by Valoish Sun 31 Dec 2017, 19:11

» Forumactif Messenger - Instant Message Application for Forumotion
by Wolfuryo Sun 31 Dec 2017, 18:24

» [GAME] Count to One Million!
by brandon_g Fri 29 Dec 2017, 18:58

» Post Cards
by manikbiradar Wed 20 Dec 2017, 07:50

» [GAME] Countdown from 200,000
by Valoish Wed 13 Dec 2017, 23:22

» GeekPolice Tech Support Forums - GeekPolice.net
by Dr Jay Mon 11 Dec 2017, 19:12

» Asking about some plugin for Forumotion
by Dr Jay Mon 11 Dec 2017, 19:10

» [GAME] What are you thinking right now?
by Van-Helsing Sat 09 Dec 2017, 14:51

» Widget : Similar topics
by ranbac Wed 06 Dec 2017, 18:11

» Change the Background of the Forum and put an image and how to make prefixs?
by Clement Wed 06 Dec 2017, 15:19

» Hello from Western Australia
by SarkZKalie Wed 06 Dec 2017, 05:34

Recent Tutorials
Top posting users this month

Who is online?
In total there are 29 users online :: 0 Registered, 0 Hidden and 29 Guests :: 1 Bot

None

[ View the whole list ]


Most users ever online was 515 on Tue 14 Sep 2021, 15:24

Forum Closure

Page 2 of 2 Previous  1, 2

View previous topic View next topic Go down

Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12043
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Fri 08 Dec 2017, 10:57

First topic message reminder :

Hello everyone,

After careful consideration, I've decided that I'll be closing this forum soon. Over the past few months I've lost interest in working on forums and just programming in general. With things as they are I wont be able to assist with support requests and there will be many unanswered topics if I continued to leave this forum open. So starting next year I will be placing the forum in read-only mode. You'll be able to still view the topics here, however you will not be able to reply or create new topics.

This will probably kill most support for Forumactif Edge, but if anyone is able to help someone with a question you can either link them to an existing topic here or try to help them. The structure of FAE is not much different from phpbb3 or modernbb, so I ask that you at least first try to help someone in need before sending them to another forum. It made me happy to see so many people using FAE, so I don't wish to leave those using it without anywhere to ask for help. Forumactif Edge will still be available for use and installation, it's just that I wont be available to help with support, so don't worry ; your forums will stay the same ! Thumb left

As for what I'll be doing from now on.. I'm not sure yet, however I'd prefer a hobby where I'm not staring at a computer screen all day. Razz

Thanks for reading and happy holidays.

Forum Closure - Page 2 Giphy


Last edited by Ange Tuteur on Sun 10 Dec 2017, 11:00; edited 1 time in total

Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12043
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Thu 14 Dec 2017, 10:09

I totally appreciate some of you taking on support for Forumactif Edge. It's good to know there'll be people who'll help out FAE users. If extensive changes ever need to be made to the software, feel free to let me know and I can allow collaborator access to the main repo on github, OR if I'm unreachable for whatever reason (or you just want to make a new version of FAE) you can also fork the repo and host your own version of FAE ; you'll mostly just have to replace "SethClydesdale" and "sethclydesdale" with your github username in all files, then copy the updated installer code and it should be linked to your repo. Never tried it before, but it *may* require a reinstallation to sync some elements, such as the footer link.

As for updates to your version take a look at the updates folder for examples. (If you're familiar with JSON it should be easy to work with) pre-update-data.js is used for beta testing a new version, simply add the new version string to the end of the array, then execute the script below in your console while in the FAE Control panel. (sometimes you may need to wait for the raw file to be updated, so click the "raw" button and refresh the page every few minutes until your new version string appears) Make sure your version string, matches the update file : like "1.2.5" matches 1.2.5.js for example, otherwise your update instructions wont be found.
Code:
// Check for updates
document.getElementById('fae_update').onclick = function() {
  FAE.log(FAE.cp_lang.fae_update_check || 'Checking for updates on Github...');
  document.getElementById('fae_options').style.display = 'none';

  $.get(FAE.raw + 'updates/pre-update-data.js', function(d) {
    FAE.script(d.replace(/forumactif_edge_version_data/, 'fae_github_version_data'));
    FAE.version_string = d; // save version data for later so we can update the forum version info

    if (forumactif_edge_version_data.length < fae_github_version_data.length) {

      FAE.update_queue = fae_github_version_data.slice(forumactif_edge_version_data.length, fae_github_version_data.length);
      FAE.update_index = -1;
      FAE.update_quota = FAE.update_queue.length;

      FAE.log(FAE.update_queue.length + ' update' + ( i == 1 ? '' : 's' ) + ' found.');
      FAE.log(FAE.cp_lang.fae_update_prepare || 'Preparing to fetch update instructions, please do not close this tab...');

      FAE.step = [];
      FAE.getUpdates();

    } else {
      FAE.log(FAE.cp_lang.fae_update_good || 'Forumactif Edge is up to date!', 'color:#8B5;font-weight:bold;');
      document.getElementById('fae_options').style.display = 'block';
    }
  });
};
Once you confirm the update working all you need to do is update version-data.js (in the javascripts folder) with the new version string and publish a new release with the update notes. (Make sure the release title is vMAJOR.MINOR.PATCH (v1.2.5 for example) ; see https://semver.org/ ) Once the update goes through, people using your version of FAE will be notified of a new update. I hope this info helps anyone interested in tinkering with FAE. Razz

Thanks again for all of your replies. <3
Derri
Derri
Member
Gender : Unspecified
Posts : 13
Points : 3745
Reputation : 8
Language : English
Browser : Browser : Mozilla Firefox Forum Version : Forum Version : Other

PostDerri Thu 14 Dec 2017, 14:23

Farewell Seth. It's been one hell of a ride at times.
Bigtuber
Bigtuber

Gender : Male
Posts : 125
Points : 3211
Reputation : 52
Location : Germany
Language : German, English
Browser : Browser : Google Chrome Forum Version : Forum Version : Forumactif Edge

PostBigtuber Thu 14 Dec 2017, 14:43

It's very sad to know that we're not going to see you anymore. But it's your decision and you know what's the best for you.
Thank you so much, @Ange Tuteur! You are such a nice person, you helped everyone. For you

I hope you'll find a nice hobby that enjoys you.
To you and all others: Merry christmas and a happy new year!!! santa
Michael_vx
Michael_vx

Gender : Male
Age : 32
Posts : 302
Points : 4096
Reputation : 76
Language : Arabic
Browser : Browser : Mozilla Firefox Forum Version : Forum Version : Other
http://miccsoft.net https://www.facebook.com/Michaelvx2008

PostMichael_vx Fri 15 Dec 2017, 05:52

im very grateful of everything you did
im glad you wont delete the forum and the forum will stay even if only read only forum
your work is still here for us
thanks so much for everything you did
JerriLeah7
JerriLeah7
Graphic Designer
Gender : Female
Age : 34
Posts : 381
Points : 3639
Reputation : 203
Language : English, Sign Language
Browser : Browser : Mozilla Firefox Forum Version : Forum Version : phpBB3
http://www.gatewaytoroleplay.com https://www.facebook.com/JerriLeah https://twitter.com/IceLeah

PostJerriLeah7 Sat 16 Dec 2017, 22:12

Good for you, Ange! It was a pleasure working with you and being your friend while we were able to and I have no doubt that your assistance will never be forgotten by the community. Everyone will miss you, but we're also happy for you and glad that you are working towards doing what is best for you and searching for your happiness.

Farewell and best wishes,
Jerri
Van-Helsing
Van-Helsing

Gender : Male
Age : 49
Posts : 853
Points : 4833
Reputation : 84
Location : Somewhere out there!
Language : English, Greek
Browser : Browser : Mozilla Firefox Forum Version : Forum Version : punBB
http://itexperts.forumgreek.com/

PostVan-Helsing Wed 20 Dec 2017, 17:20

Hello,
Thank you very much @Ange Tuteur, and thank very much for your excellent assistance & collaboration mate. I am so sad because you are leaving forums. Forum Closure - Page 2 1f62d But you have worked very hard for years and you are needing a huge break and all of us we can understand you absolutely. I am respecting your decision and I would like to wish you the best for your future.

Please don't forget us, anytime you can contact us.

With Best Regards,
Van-Helsing
Dr.kran
Dr.kran

Gender : Male
Age : 31
Posts : 73
Points : 2895
Reputation : 1
Language : english
Browser : Browser : Internet Explorer Forum Version : Forum Version : phpBB2
http://castlevania-1.forumotion.com/

PostDr.kran Wed 27 Dec 2017, 05:00

quote:

Maybe giving us the forums or giving us the full tool belt would help this update even more.


Last edited by Dr.kran on Sun 31 Dec 2017, 18:46; edited 1 time in total
Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12043
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Mon 01 Jan 2018, 01:28

Thank you for your replies everyone. It made me happy to read each and every one. Today is the first day of 2018, as such I will be setting the forum to read-only mode. As much as I enjoyed helping people and creating things for Forumotion over the years, I've decided it's time for me to move on. Once again I thank you all for your words and would also like to thank everyone for helping me grow along the way. I hope that the knowledge available here will help people for years to come.

I wish you all a wonderful new year filled with one of the blessings below.

Forum Closure - Page 2 Wishes11
Sponsored content

PostSponsored content

Page 2 of 2 Previous  1, 2

View previous topic View next topic Back to top

Create an account or log in to leave a reply

You need to be a member in order to leave a reply.

Create an account

Join our community by creating a new account. It's easy!


Create a new account

Log in

Already have an account? No problem, log in here.


Log in

 
Permissions in this forum:
You cannot reply to topics in this forum