forked from exelearning/iteexe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
2597 lines (2203 loc) · 139 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
intef-exe (3:2.6) lucid; urgency=medium
* Ignacio Gros
- TinyMCE: New image optimizer.
- TinyMCE: New mind maps editor plugin (mindmaps, by David Richard).
- TinyMCE: Paste as text by default. (#541)
- TinyMCE: GNU Free Documentation License added to the available licenses list.
- TinyMCE: The "Insert HTML code as text" plugin remembers the user's preferences.
- You can save an iDevice with the editor in full screen mode.
- New UDL Content iDevice and new UDL Style.
Junta de Andalucía - Consejería de Educación y Deporte
https://www.juntadeandalucia.es/organismos/educacionydeporte
Cofinanced with the European Union FEDER funds.
- Interactive Video iDevice: You can use a youtu.be URL.
- The About eXe page shows the application type instead of the revision number.
- iDevices revision (usability, HTML, presentation, strings).
- Presentation Style: New Next/Previous top links.
- Add a Show/Hide title to the time line links to improve accessibility.
- Contents with effects: Print version revision.
- Allow Mediateca (https://mediateca.educa.madrid.org/) contents in prettyPhoto/Lightbox.
- Allow H5P embedded content in tabs, carousels and accordions.
- Windows Ready To Run version: New splash image.
- Fixed: The CSS class that depends on the selected iDevice icon was missing when exporting. (#558)
- Fixed: Could not see the selected icon in Styles with SVG icons.
- Fixed: MediaElement Player download file problem. (#555)
- Fixed: Presentation Style: Prevent link default behaviour (usability problem).
- Fixed: Invalid XML in the JavaScript iDevices configuration files.
- Fixed: "New version available" message always displayed in the PPA version. (#540)
- Fixed: Add/Rename/Move page and add iDevice disabled when editing an iDevice. (#550)
- Fixed: Dropdown Activity instructions. (#574)
- Fixed: Note iDevice missing instructions. (#575)
- Fixed: TinyMCE - Paragraphs disappeared when updating/deleting a FIGURE. (#576)
- Fixed: TinyMCE - Image title changed when selecting an image. (#577)
- Fixed: exe_do exported a different HTML with missing elements. (#536)
- Fixed: Package license. CC BY-NC wrong icon. (#583)
- Fixed: The feedback was not working when using an old style. (#587)
- Fixed: Invalid HTML in the "Download source file" iDevice (and links to the elp file) (#588)
- Fixed: Geogebra iDevice - Lightbox did not work in the instructions. (#590)
* Manuel Narváez
- New iDevice category (Games):
New iDevices: Lock, Challenge, Multiple Choice Quiz.
New functionalities and bug fixes in: A-Z Quiz Game, QuExt, VideoQuExt, Word Guessing.
- GeoGebra iDevice:
It works with ID, not only URL.
Optional content after the activity.
SCORM revision (not only 0 to 10 scores).
New zoom option for big applets.
New authorship option.
The activity size is no longer required.
* SDWeb
- TinyMCE: New audio recorder plugin.
Centro Integrado de Aprendizajes Virtuales y Digitalizados (BirtLH).
- The "Advanced mode" is now a preference. It's saved in exe.conf instead of using a cookie. (#489)
- Fixed: Available iDevices were not saved. (#530)
- Fixed: Backward compatibility. Open an elp file reading its contentv2.xml file. (#206)
* APSL
- Package building.
- Fixed: The default package license was not respected. (#547)
- Fixed: Open elp with an incorrect contentv3.xml file (use the content.data file instead). (#545)
- Fixed: Strange characters in the iDevice editor. (#535)
- Fixed: Strange characters when adding a header background image. (#562)
- Fixed: Package language changed when changing eXe's language. (#564)
- Fixed: Set the default Style using the config.py file.
* Juan Rafael Fernández
- String extraction process revision.
- Translations coordination.
* eXeLearning.net Translation Team
- New complete Spanish translation, by Juan Rafael Fernández.
- New complete Basque translation, by Joxemi Andonegi.
- New complete Catalan translation, by Carles Ferrando Garcia.
- New complete Galician translation, by Pablo Nimo.
- New complete French translation, by Jesús Miguel Domínguez.
- New complete Italian translation, by Andrea Primiani.
- New complete Greek translation, by Yannis Kaskamanidis.
- New complete Simplified Chinese translation, by Chenggui Duan.
- New complete Russian translation, by Dmytro Abaydullin.
- New Traditional Chinese translation, by Franklin Weng.
- New translation to Dzongkha, by Tandin Penjor.
-- eXeLearning <[email protected]> Fri, 28 Mar 2021 11:15:00 +0200
intef-exe (3:2.5.1) lucid; urgency=medium
* Ignacio Gros
- [UI] SCORM 1.2 is now the default SCORM export.
- [UI] Tools - New - Window will open a new project instead of the current one.
- [UI] About eXe and Legal notes revision.
- [UI] Fixed: Prevent tutorial link 404 error in some languages. (#491)
- [iDevices] Allow SVG iDevice icons.
- [iDevices] Scrambled List. You can add up to 15 items now.
- [iDevices] Fixed: Wikipedia iDevice. Default article language. (#478)
- [iDevices] Wikipedia iDevice. Basic CSS revision.
- [iDevices] Rubric iDevice. Help video tutorial (in Spanish).
- [iDevices] Image gallery. Bigger thumbnails and presentation revision.
- [Styles] Print CSS revision.
- [TinyMCE] New inline format: Highlighted text (<mark>).
- [TinyMCE] New content templates: Floated images, tables, images and videos.
- [TinyMCE] Fixed: Drag and drop image. Add the ALT text to the right image. (#479)
- [TinyMCE] Fixed: "Add a paragraph at the end" plugin with more than one editor.
- [Other] Search results: Use MARK instead of SPAN.
- [Other] Predefined table design revision (better presentation of TBODY > TH).
- [Other] Fixed: Handle "Permission denied" JavaScript error in SCORM. (#472)
- [Other] Fixed: MediaElement player. No fullscreen button in G. Chrome. (#481)
- [Other] Fixed: MediaElement could not get the right content height.
- [Other] Fixed: MathJax formulas respect the text alignment. (#322)
* SDWeb
- [Export] Fixed: Missing references in the imsmanifest.xml file. (#473)
- [Export] Fixed: Windows problem. Could not export nodes with very long titles. (#503)
- [UI] Fixed: Custom error messages when importing a Style. (#475)
- [UI] Fixed: Strange characters when executing eXe for the first time. (#525)
- [Other] New Python3 translation tools.
- [Other] Requirements to generate a Snap package.
- [Other] Fixed: Missing files when the iDevice was submitted twice. (#485)
- [Other] Fixed: Change default elp language when changing eXe's language. (#495)
- [Other] Fixed: Error when importing a Style (zip with a space in its name). (#511)
- [Other] Fixed: Do not use Git to get the revision. (#515)
- [Other] Fixed: exelearning -h returned old information. (#517)
- [Other] Fixed: Save the iDevice before moving it. (#520)
- [Other] Fixed: Avoid data loss when saving from the save warning message. (#521)
- [Other] Fixed: iDevice broken when the icon was empty. (#522)
- [Other] Fixed: JavaScript error in SCORM 1.2 (invalid 1.2 property). (#509)
- [Other] Fixed: Moodle + SCORM navigation problem. (#505)
- [Other] Fixed: FPD Available iDevices were not saved (#530)
* Fran Macías
- Fixed: Portable version (Linux) export problem. (#531)
* Juan Rafael Fernández
- String extraction process revision (pybabel tests). (#524)
- Breton (brezhoneg) added to the list of supported languages.
- Translations coordination.
* eXeLearning.net Translation Team
- New full Spanish translation, by Juan Rafael Fernández.
- New full Catalan translation, by Carles Ferrando Garcia.
- New full Galician translation, by Pablo Nimo.
- New full Valencian translation, by Ricardo Nutz.
- New full Basque translation, by Joxemi Andonegi.
- New full Portuguese translation, by Dionisio Martínez.
- New full Italian translation, by Andrea Primiani.
- New full French translation, by Jesús Miguel Domínguez.
- Revised full Simplified Chinese (zh_CN) translation, by Chenggui Duan.
- New German translation, by Jan Joscha Finger.
- New Greek translation, by Yannis Kaskamanidis.
-- eXeLearning <[email protected]> Fri, 30 Oct 2020 11:15:00 +0200
intef-exe (3:2.5) lucid; urgency=medium
* Ignacio Gros
- [Export] Fixed: Common Cartridge export. Missing files. (#445)
- [Export] Fixed: Common Cartridge export. JavaScript Error. Undefined function. (#446)
- [iDevices] Fixed: You can now add a link to a node in the new iDevices. (#431)
- [iDevices] New Rubric iDevice.
- [iDevices] JavaScript iDevices: Strings in the elp language. With SDWeb.(#420)
- [iDevices] Fixed: Text iDevice. Edit code was failing (PHP, HTML...). (#433)
- [iDevices] Fixed: Download source iDevice error when editing. (#436)
- [iDevices] Fixed: Interactive Video iDevice. Use HTTPS to load the Mediateca player file. (#438)
- [iDevices] Fixed: Now you can edit Note iDevices.(#443)
- [iDevices] Fixed: The Note iDevices should not be in the search results.(#444)
- [iDevices] GeoGebra iDevice. Get size using the GeoGebra API. With Álvaro Pablos.
- [Styles] Fixed: Minor presentation problems.
- [TinyMCE] Fixed: Math code and more than one TinyMCE problem. (#440)
- [TinyMCE] TinyMCE 3 removed. Only TinyMCE 4 is available now.(#447)
- [UI] Common CSS code (new iDevices tabs).
- [UI] Change the icons to move a node (up, down, left, right). Ricardo Nutz,'s idea.
- [UI] Change the text of the "Edit iDevices" button. Now "Available iDevices". Ricardo Nutz's idea.
- [UI] The "Publish" option will be hidden until the process works.
- [UI] Disable menu close after clicking on menu item.
- [Other] Always add the HTTPS to Youtube, Vimeo, G. Maps and Daily Motion.
- [Other] Common feedback button default behaviour: Show the "Hide feedback" message when the feedback is visible.
- [Other] Fixed: Lightbox. Youtube start time was not respected.(#439)
- [Other] Fixed: Could not save score in SCORM 1.2. (#464)
* Juan Rafael Fernández
- Fixed: Invalid HTML both in source and in CA translation (with Carles Ferrando García's help). (#441)
- Added Dzongkha (Bhutanese) as a supported language.
* eXeLearning.net Translation Teams
- New full Spanish translation, by Juan Rafael Fernández.
- New full Catalan translation, by Carles Ferrando García.
- New full Galician translation, by Pablo Nimo.
- New full Valencian translation, by Ricardo Nutz.
- New full French translation, by Jesús Miguel Domínguez.
- New full Basque translation, by Joxemi Andonegi.
- New full Russian translation, by Alexey Loginov.
- New full simplified chinese translation, by Chenggui Duan.
- New partial Dzongkha translation, by Tandin Penjor.
- New partial Polish translation, coordinated by Alexey Loginov.
* Manuel Narváez
- [iDevices] New Word Guessing iDevice.
- [iDevices] New QuExt iDevice.
- [iDevices] New A-Z Quiz Game iDevice.
- [iDevices] New VideoQuExt iDevice.
* Álvaro Pablos
- [iDevices] Fixed: GeoGebra iDevice did not save the score. (#435)
- [iDevices] GeoGebra iDevice. Get size using the GeoGebra API. With Ignacio Gros.
* Francisco Javier Pulido Cuadrado
- [Styles] New icons for Kids and CEDEC.
* SDWeb
- [iDevices] Fixed: All the iDevices in the Experimental category are hidden by default. (#457)
- [iDevices] Fixed: File Attachments iDevice problem when deleting files.
- [iDevices] JavaScript iDevices: Strings in the elp language. With Ignacio Gros.(#420)
- [Export] Fixed: Error on exe_do export. (#458)
- [Import] Fixed: XLIFF import was not working. (#442)
- [Other] Fixed: Client search with nested pages problems. (#429)
- [Other] Fixed: The extended.data file is generated when opening eXe so no new strings are missing. (#441)
- [Other] Fixed: Prevent errors when getting the version.
- [Other] Fixed: Some packages do not open correctly.
- [iDevices] Fixed: Check JavaScript iDevice files.
- [Other] Fixed: Bug fixes in resource management. (#396)
- [Other] Fixed: Fixed bug with too long resource filenames.
- [iDevices] Fixed: File Attachments iDevice. Could not edit elp when a file was missing.
- [Other] Fixed: Error when opening some templates.
- [Other] Fixed: SCORM 2004 does not register activity. (#465)
- [Other] Fixed: Avoid SSL error on Mac when downloading styles from repository.
-- eXeLearning <[email protected]> Tue, 04 Feb 2020 09:00:00 +0200
intef-exe (3:2.4.2) lucid; urgency=medium
* Ignacio Gros
- [Styles] Docs Style clearfix problem (#430).
- [iDevices] Attachments iDevice: Hidden buttons (#427).
* SDWeb
- [Other] Fixed error when saving licence (#426).
-- eXeLearning <[email protected]> Tue, 20 Aug 2019 09:01:15 +0200
intef-exe (3:2.4.1) lucid; urgency=medium
* SDWeb
- [Export] Fix error when preview page (#418).
-- eXeLearning <[email protected]> Mon, 24 Jun 2019 10:01:15 +0200
intef-exe (3:2.4) lucid; urgency=medium
* Ignacio Gros
- [Preferences] New preference to add a search box (Properties - Export).
- [Preferences] New preference to export the elp file (see the new iDevice and read the TinyMCE news too).
- [Exports] ePub: No license or page footer in any page but the first and the last ones.
- [Styles] The video caption selector in hidden tabs was not visible.
- [Styles] New Styles: INTEF, CEDEC, Docs.
- [Styles] Base Style: The print button is hidden (you can show it deleting the Advanced CSS tab content).
- [Styles] Kids Style: New icons by Francisco Javier Pulido Cuadrado.
- [Styles] The SimplePoint Style is now called Presentation.
- [Styles] Styles revision: Version (it depends on the year) and compatibility with the new options.
- [Styles] Some Styles are removed, but they are still in the "Styles repository".
- [Styles] Some Styles are editable.
- [Styles] Create and edit Styles from the "Style manager" panel.
- [Styles] Handle "Styles repository" connection error (#399).
- [Styles] "Styles repository" presentation revision.
- [Styles] Style Designer: Icon navigation responsive design problems fixed.
- [Styles] Style Designer: The current page link has the same color as the other pages's hover color.
- [Styles] Style Designer: Compatibility with the page counter and the new search bar option.
- [Toolbar and menu] The Style Designer is no longer in the toolbar. It's in the "Style manager" panel now.
- [Toolbar and menu] New "Preview" button.
- [Toolbar and menu] The "Advanced user" option is now on the right.
- [Toolbar and menu] The Merge options are now part of Import and Export.
- [Toolbar and menu] Import menu: "HTML Files" instead of "HTML Course".
- [Toolbar and menu] Import/Export node literals revision to improve usability.
- [Left panel] New button to hide/show the left panel.
- [Left panel] New iDevices categories. There are less categories now.
- [Left panel] The first category is open by default and the Text iDevice is always in the first place.
- [Left panel] More iDevices are hidden by default. Use the "Edit iDevices" button to add them.
- [iDevices] GeoGebra activity. Edition presentation revision + Link to www.geogebra.org
- [iDevices] Add a class to the empty non-emphasized iDevices so the user can see the buttons to edit them.
- [iDevices] Add highlighted syntax in the new iDevices.
- [iDevices] New "Interactive video" iDevice.
- [iDevices] New "Download source file" iDevice. An easy way to add a "Download elp" link and some information about the project (title, author, license...).
- [iDevices] New "Text" iDevice. Icon, title and feedback are optional.
- [iDevices] The "ABP Tasks" iDevice is now called "Task".
- [iDevices] The experimental iDevices are now hidden. You can edit them but you can't add new ones (#401).
- [iDevices] JavaScript iDevices: Common classes for HTML elements and common JavaScript functionality.
- [iDevices] JavaScript iDevices: Presentation revision (title and icon selector).
- [iDevices] Python iDevices: Edition common code (CSS class names). In progress.
- [Edition] Images in a FIGURE tag can be linked. The link and the FIGURE will be removed when deleting the image.
- [Edition] When editing an iDevice, the others are minified and less visible.
- [Edition] Better preview while editing (just like IMS or SCORM): The buttons to edit an iDevice are hidden until you hover it.
- [Edition] Nice notification instead of an alert when saving an elp.
- [Edition] The save reminder message is not modal, so no data will be lost if you keep typing (#402).
- [Edition] Dismissible message for the empty pages: Click on the elements of the left panel to add content.
- [Edition] The "Authoring" tab is now called "Content".
- [TinyMCE] The image insertion and alignment works even if the user has TinyMCE as default editor.
- [TinyMCE] Now you can add modal windows when there's more than one editor too.
- [TinyMCE] The editor version preference is hidden. TinyMCE 4 is always the default editor.
- [TinyMCE] "Do not mix http and https when using iframes" warning (#397).
- [TinyMCE] No enable/disable editor link when there's more than one TinyMCE. To review.
- [TinyMCE] Add a link to the elp with the Link plugin. It will export the elp (see Preferences and iDevices news).
- [Other] Licenses revision and legal notes update.
- [Other] Resources report: Duplicated resources (#398).
- [Other] Resources Report. New column: Resource Size.
- [Other] "A new version of eXeLearning is available" message. You'll have to wait to see it.
- [Other] Minor bug fixes.
* Juan Rafael Fernández
- Fixes an error compiling the German translation.
- Headers, PO preparation, spell check and full revision.
- New full Spanish translation.
- New full Basque translation, by Joxemi Andonegi.
- New full French translation, by Jesús Miguel Domínguez.
- New full Valencian translation, by Pilar Embid Giner.
- New full Catalan translation, by Carles Ferrando García.
- New full Russian translation, by Alexey Loginov.
- New full Italian translation, by Andrea Primiani.
- New Polish translation, by Waldemar Stoczkowski (with the help of Andrey Loginov).
- New full Portuguese translation, by Dionisio Martínez Soler.
- New full Galician translation, by Pablo Nimo.
- New Traditional Chinese translation, by Franklin Weng.
* SDWeb
- [Python libraries] Upgrade BeautifulSoup to version 4.
- [Python libraries] Remove old dependency.
- [iDevices] Fixed error in JavaScript iDevices with custom CSS/JS
- [iDevices] Show javascript iDevices even if the "export" folder does not exist.
- [Preferences] Remove the compatibility with old versions checkbox (#382).
- [Preferences] Check the new properties (export elp and add search box) when opening an elp.
- [Import] Fixed error when importing a SCORM package.
- [Export] SCORM 2004 in Moodle: No blank elements in the navigation menu now (#394).
- [Export] Fix errors when exporting and elp generated with a previous version.
- [Export] Fix error when export after changing the package language (#388).
- [Export] Fix error when exporting package with non-unicode symbols in path (#380).
- [Other] Can write your own license.
- [Other] Escape character that breaks the translations (#389).
- [Other] Fix saving process when a JavaScript iDevice has been edited. No data loss.
-- eXeLearning <[email protected]> Tue, 21 May 2019 10:00:55 +0200
intef-exe (3:2.3.1) lucid; urgency=medium
* Juan Rafael Fernández
- New simplified Chinese translation, by Chenggui Duan.
* SDWeb
- Update field name to prevent error when exporting (#380).
-- eXeLearning <[email protected]> Thu, 17 Jan 2019 17:30:18 +0200
intef-exe (3:2.3) lucid; urgency=medium
* Ignacio Gros
- GeoGebra iDevice: Allow GeoGebra's short URLs (ggbm.at/...).
- Ajax tooltips in eXe where not displaying the "Go to Preview" message (#375).
- True-False iDevice: Input and label in different line (#376).
- Resources Report doesn't show metadata warning message (#374).
- Update the Debian/Control information (#378).
- Use correct git repository URL and the same email everywhere (#378).
* Juan Rafael Fernández
- Got rid of some errors in the compilation of PO files.
- New full Spanish translation.
- New full Basque translation, by Joxemi Andonegi.
- New full Italian translation, by Andrea Primiani.
- New full French translation, by Jesús Miguel Domínguez.
- New full Valencian translation, by Pilar Embid Giner.
- New full Catalan translation, by Carles Ferrando García.
- New full Russian translation, by Alexey Loginov.
- New Polish translation, by Waldemar Stoczkowski (with the help of Andrey Loginov).
- New full Portuguese translation, by Dionisio Martínez Soler.
- New full Galician translation, by Pablo Nimo.
- New partial Simplified Chinese translation.
* SDWeb
- Remove <small> tag from Procomún's publish success message (#372).
- Untranslated string: Publishing document to Procomún (#371).
- Clean packages no longer show metadata warning (#377).
- Ensure we use the correct DocType when generating a package from a template.
- Close OAuth window when the user presses cancel (#365).
-- eXeLearning <[email protected]> Wed, 19 Dec 2018 12:42:23 +0200
intef-exe (3:2.3~beta2) lucid; urgency=medium
* Ignacio Gros
- Use TinyMCE's advlist plugin instead of exelist to prevent errors with nested lists.
- text improvements in the metadata export warning.
-- eXeLearning <[email protected]> Tue, 27 Nov 2018 17:51:26 +0200
intef-exe (3:2.3~beta1) lucid; urgency=medium
* Ignacio Gros
- TinyMCE:
- Fixed wrong text alignment in image caption (#363).
- Fix ABC Music Notation Plugin preview display (#364).
* SDWeb
- Fixed Beta2 exporting to "undefined" folder (#363).
- Can't save properties from validation dialog (#357).
- Make "Learning Resource Type" combos 100% dependent from each other (#361).
- Update package properties forms when changing properties in the validation dialog (#355).
- Fixed package insertion when the package has zombie nodes (#352).
- Prevent eXe from adding templates and temp folders to the recent files list.
- Fixed error that prevented an user from inserting a package inside one without changes.
- Added "common.js" and "common_i18n.js" to the SCORM manifest (#366).
- Correctly set license for newly created packages to prevent an error when exporting to Procomún.
- Show warning when trying to export a package with metadata.
- Fixed error when updating JS Idevices during eXe's update process.
- Restart save reminder timeout after manually saving a package.
* Juan Rafael Fernández
- Improve the Spanish translation.
-- eXeLearning <[email protected]> Mon, 26 Nov 2018 16:11:54 +0200
intef-exe (3:2.2.1~beta2) lucid; urgency=medium
* Ignacio Gros
- Definition tooltips: Different link color.
* SDWeb
- Update package generation in order to copy the validation rules json on installation.
- Move validation rules json to webui to make it compatible with eXe's installation paths.
-- eXeLearning <[email protected]> Mon, 29 Oct 2018 12:41:27 +0200
intef-exe (3:2.2.1~beta1) lucid; urgency=medium
* Ignacio Gros
- Upgrade TinyMCE to 4.8.2.
- Upgrade abcjs to 3.2.1 (#331).
- New Idevice: GeoGebra Activity.
- Credits: Licenses revision.
- The "Scrambled List" iDevice is now in the "Interactive Activities" block.
- JavaScript iDevices instructions: How to add different fields (editor, color picker, etc.).
- Definition tooltips have a different presentation so they're not seen as ordinary links.
- Validation panel presentation revision.
- Fixed bugs:
- Open the "Try again clicking eXe" in top window.
- TinyMCE Image Plugin FIGURE alignment (#351).
- TinyMCE 4: Can't edit JavaScript popup.
- TinyMCE 4: Tooltip plugin errors when there's more than one editor (#335).
- Base Style: Replace default radio buttons in the TrueFalseIdevice (as in other iDevices).
- MultichoiceIdevice: No feedback in mobile view (due to the default radio buttons replacement) (#332).
- MultichoiceIdevice: Small text inputs using the Base Style (#333).
- CARM Style: Clearfix problem.
- CARM Style: Overlapping elements (logo and pagination).
- Unescaped quotes in author meta tag (#353).
* Juan Rafael Fernández
- New full Spanish translation, by Juan Rafael Fernández.
- New full French translation, by Jesús Miguel Domínguez.
- New full Italian translation, by Andrea Primiani.
- New full Russian translation, by Alex Loginov.
- New full Portuguese translation, by Dionisio Martínez Soler.
- New full Catalan translation, by Carles Ferrando Garcia.
- New full Basque translation, by Joxemi Andonegi.
- New full Galician translation, by Pablo Nimo.
- New full Valencian translation.
- Cleaned Dutch, Italian, German, Bengali, Hebrew, Norwegian and Tradicional Chinese PO files.
* SDWeb
- Fix error that made eXe remove resources from certain Idevices (#342).
- Fix error when loading packaged made with older versions of eXe (#341).
- Fix error that prevented eXe from showing a header imagen when the path to it contained special characters.
- Add optional title to LivePage alerts.
- Improve Procomún publishing user experience.
- Add validation to package properties before exporting them.
- Add "Conceptual map" to the list of available "Learning Resource Type".
- Fix error when trying to preview ODT, ODP, ODS, DOCX, PPTX and XLSX files.
- Prevent error that made eXe remove resources with similar names.
-- eXeLearning <[email protected]> Wed, 24 Oct 2018 11:05:35 +0200
intef-exe (3:2.2) lucid; urgency=medium
* Ignacio Gros
- Fix problems with page counter positions (#325).
- Add information tooltip for the "Advanced user" option.
- Modal Window: Height problem in Chrome (#328).
* Juan Rafael Fernández
- Fix translation error in Basque translation, detected by Gaizka Bilbao.
* SDWeb
- Fix error preventing JavaScript Idevices from being copied when installing eXe (#324).
-- eXeLearning <[email protected]> Tue, 19 Jun 2018 07:55:32 +0200
intef-exe (3:2.2~beta2) lucid; urgency=medium
* Ignacio Gros
- Fix help links not working (#304).
- Add alternative text to some assistant images.
- Scrambled List behavior in IE: Hidden arrows (#305).
- Hide Ustad Mobile export (#120).
- iDevices with no icon presentation revision (#312).
- Tknika Style: Pagination Styles.
- Effects (FX): ePub readers behavior revision (Readium and Adobe D. Editions) (#318 and #319).
- Fix some effects not working on Readium (#319).
- Effects (FX) in TinyMCE: Presentation revision.
- JavaScript bug fixes.
* Juan Rafael Fernández
- New full Spanish translation, by Juan Rafael Fernández.
- New full Basque translation, by Joxemi Andonegi.
- New full Catalan translation, by Carles Ferrando Garcia.
- New full Galician translation, by Pablo Nimo.
- New full Italian translation, by Andrea Primiani.
- New full Valencian translation, by Pilar Embid.
- New full French translation, by Jesús Miguel Domínguez.
- New full Portuguese translation, by Dionisio Martínez Soler.
- Cleanup of Brazilian Portuguese translation.
* SDWeb
- Show never instead of 0 when autosave warning is disabled.
- Set save warning enabled by default.
- Fix JavaScript Idevices using wrong path when exporting.
- Fix ID generation for ePub spine.
- Add message for templates menu when there is no templates.
- Fix metadata initialization when creating from template (prevent it from getting template's values).
- Remove wrong metadata from PBL template (#307).
- Add HTML tags' attributes to template translation.
- Fix export with JavaScript Idevices for some types of export (#311).
- Fix error message when downloading classification sources.
- Update MacOS package generation instructions (#301).
- Change templates translation mechanism to allow the translation of any field.
- Translate CeDeC's name to english in PBL template (#307).
- Fix JavaScript error with some ePub readers when inserting a YouTube video (#273).
- Fix error when saving "Add pagination" export option.
- Don't show save message warning if another modal window is open.
-- eXeLearning <[email protected]> Mon, 04 Jun 2018 06:38:05 +0200
intef-exe (3:2.2~beta1) lucid; urgency=medium
* Ignacio Gros
- Advanced/Simplified view.
- New navigation menu structure (simple and advanced).
- Easy to read help system.
- JavaScript iDevices (easy system to create new iDevices).
- JavaScript iDevice example.
- New 'PBL Tasks' iDevice.
- New 'Scrambled List' iDevice.
- New mode for TinyMCE: multiple-visible. More than one TinyMCE, but no Hide/Show editor links.
- 'Modal Dialog Window' Plugin for TinyMCE 4.
- Multimedia galleries: Allow local videos and audios in prettyPhoto.
- Custom HEAD content (Properties - Package - Advanced Options).
- SimplePoint Style: Show/Hide parts of the page using the + and - keys (use the presentation-slide CSS class).
- Styles compatible with the page counter.
- Save reminder message (until the autosave works).
- Ask for confirmation before deleting an iDevice.
- Information messages after saving or deleting an iDevice.
- Accessibility issues and feature requests made by the CENTAC.
- JavaScript revision to prevent errors on some ePub readers like Readium (Content Security Policy).
- Styles revision to fit the new options.
- Preview in any browser and consistent link behavior.
- Common color picker (moved to its own folder).
- TinyMCE: Load on demand revision.
- JavaScript bug fixes.
* Miguel Ángel Pereira and Cristina Valdera
- Help texts revision.
* SDWeb
- Content templates (and SCRIPTs to extract their string so they can be translated).
- JavaScript iDevices (easy system to create new iDevices).
- Pagination: Page counter.
- Allow users to change the iDevice icon in some iDevices.
- Prevent error when exporting content by exporting all the package contents.
- Add default values to metadata when the package ones are missing.
- Change i18n JS on ePubs to prevent errors on Readium (now in a separate file).
- Initialize variable for IMS Export to prevent an exception when exporting.
- Save reminder message (until the autosave works).
- exe_do bug fixes.
* Juan Rafael Fernández
- New full Spanish translation and transtation coordination.
- New full Russian translation, by Alexey Loginov.
- New full Catalan translation, by Carles Ferrando García.
- New full Italian translation, by Andrea Primiani.
- New full Basque translation, by Joxemi Andonegi.
- New full French translation, by Jesús Miguel Domínguez.
- New full Valencian translation, by Pilar Embid.
- New full Galician translation, by Pablo Nimo.
- New full Portuguese translation, by Dionisio Martínez Soler.
* José-Carlos Sánchez
- Youtube and Vimeo: https instead of http in Lightbox.
* Pedro Peña
- Mark exported SCORMS and IMS resources in LOM-es metadata as editable by eXe.
-- eXeLearning <[email protected]> Wed, 02 May 2018 15:06:45 +0200
intef-exe (3:2.1.3) lucid; urgency=medium
* Ignacio Gros
- The 'Use Autoplay' works now with Youtube, Vimeo and Dailymotion (#245).
- The dir attribute had a wrong value (rlt instead of rtl) and the node attribute value was not loaded when opening the plugin.
- Lowercase jQuery selector.
- Untranslated strings (button tooltip or title) (#249).
* SDWeb
- Wrong language selected on package properties page when using Traditional Chinese (#205).
- Add a warning when exporting packages with resources with long names and ISO9660 compatibility is enabled (english only).
-- eXeLearning <[email protected]> Thu, 02 Nov 2017 09:40:36 +0200
intef-exe (3:2.1.3~beta2) lucid; urgency=medium
* Ignacio Gros
- TinyMCE: Media plugin inserted DIV instead of figure (#216).
- TinyMCE: Activate the FX button in blocks with effects.
- The Preferences window was too small (#217).
- IFRAME was deleted after changing its footer caption (#214).
- Untranslated strings in the Preferences panel (#219).
- ABC Music Notation Plugin: Remove an unnecessary attribute and check if the browser is compatible before creating the MIDI link.
- iDevice with no TinyMCE editors (#226).
- Higher window so the buttons are not hidden.
- Align figure with image (#228).
- Remove the 'data-mce-fragment' attribute from audios and videos.
- Unhandled exception (SecurityError: Permission denied to access property "Ext" on cross-origin object).
- Untranslated strings in the Style Manager (#232).
- Invalid HTML: No space between attributes (#221).
- Lightbox link open in a new window (#227).
- Preferences window. Some texts were cut (#220).
- Package panel: Some labels were in 2 lines.
- TinyMCE 4. Untranslated string ('Template') (#236).
- Preferences panel. Untranslated string: 'Default' (#237).
- A government organization's name has changed.
* Juan Rafael Fernández
- Fix typo on new ISO 9660 preference.
- Fixed a misspelling in the English text.
- New full Russian translation, by Alexey Loginov.
- New full Catalan translation, by Carles Ferrando García.
- New full Italian translation, by Andrea Primiani.
- New full Basque translation, by Joxemi Andonegi.
- New full French translation, by Jesús Miguel Domínguez.
- New full Valencian translation, by Pilar Embid.
- New full Galician translation, by Pablo Nimo.
- New full Portuguese translation, by Dionisio Martínez Soler.
- Improved French translation.
* SDWeb
- Missing images in 2.1.3 (#224).
- 2.1.3 does not work in Fedora (#223).
- Wrong language selection (when choosing Chinese) (#205).
- Properties tab: No "Save" option (#240).
-- eXeLearning <[email protected]> Mon, 16 Oct 2017 09:16:39 +0200
intef-exe (3:2.1.3~beta1) lucid; urgency=medium
* Ignacio Gros
- About page contents updated.
- Hangman game available letters revision (i18n). English is the default language.
- Fix JS error in the SimplePoint Style when the package had no license.
- Dropdown Activity iDevice: Word check was failing (#171).
- Bigger Preferences window (#196).
- Lightbox (prettyPhoto) was not working when the image had no dimensions (SVG in some browsers). Default size set: 450x450.
- Lightbox (prettyPhoto): Expand/contract button moved to the left side of the screen.
- TinyMCE: Upgrade to the latest version (#190).
- TinyMCE: Constrain image proportions (#157).
- TinyMCE: Get the image size right after selecting it (#153).
- TinyMCE: New "Footer Caption" FIELDSET in the "Title and Attribution" tab.
- TinyMCE: Vertically align the images (#153).
- TinyMCE: Enable the image title input field in the image dialog (#153).
- TinyMCE: Use FIGURE and FIGCAPTION instead of DIV in HTML5 (image and media plugins).
- TinyMCE: Add attributes to an image with the Easy Attributes Plugin.
- TinyMCE: The Insert/Edit Attributes Plugin was failing with VIDEO, AUDIO and IFRAME (#192).
- TinyMCE: Workaround for the tables in the Insert/Edit Attributes Plugin (display instructions).
- TinyMCE: Predefined list of values for the REL attribute in the link dialog (#153).
- TinyMCE: JavaScript Popup' and 'Events' tabs in the link dialog (#153).
- TinyMCE: Create warning, alert, danger, info and success blocks (#188).
- TinyMCE: Align only the math content, not all the elements with the "position-center" class (pastemath plugin).
- TinyMCE: CodeMagic was using an external file (#193).
- TinyMCE: Plugin License Revision to make some contributions compatible with the GNU GPL.
- ABC Music Notation Plugin.
- Improve tables with CSS. 2 different table designs: default and minimalist.
- CodeMagic Plugin: Full Screen mode.
- License revision.
- Trado and Diwanltr fonts had to be removed from eXe.
- Colorpicker plugin (use it to select a table background color, etc.).
- Allow and export any file format in the Styles (#207).
- Add id or class to each BODY tag (#161).
- Style Manager: Show the title of the Style before deleting it (#150).
- Remove line break so it is easier to check/modify node title string with JS.
- Print CSS: Page break after each node in HTML5, where ARTICLE is used instead of DIV.
- Translate untranslated string.
- Links in alert blocks color.
* Juan Rafael Fernández
- Error message clarification (see issue #139).
- Update Babel to v.2.4.0.
- Create the 2.1.3 PO files.
- New full Spanish translation, by Juan Rafael Fernández.
- New full French translation, by Jesús Miguel Domínguez.
- New full Galician translation, by Pablo Nimo.
- New full Catalan translation, by Carles Ferrando.
- New full Basque translation, by Joxemi Andonegi.
- New full Russian translation, by Alexey Loginov.
- Updated Traditional Chinese translation, by Franklin Weng.
- New full Italian translation, by Andrea Primiani.
- New full Portuguese translation, by Dionisio Martínez Soler.
* frecorp
- Multi-select: Wrong feedback (#176).
* SDWeb
- Minor fixes on package generation (Windows and MacOS X).
- Prevent eXe from removing duplicated resources when loading a package.
- Prevent error when the package name matches one of the server folders like css, js... (#165).
- Limit description field to 1000 characters when exporting to SCORM 1.2 (#96).
- Add default name in case a file doesn't have any valid characters in its name (#182).
- Remove save button on metadata pages (metadata is now saved by saving the package).
- Workaround a MacOS 10.12.5 bug that prevented eXe from starting when no browser had been selected.
- Fix an error on latest versions os Mac OS X when Google Chrome is the default browser.
- Fix an error when exporting packages on the 2.1.2 portable versions.
- Added fallback.xhtml file for ePub exports.
- SVG image is not displayed inside eXe (#194).
- Solve a bunch of ePub3 problems and improve compatibility with most readers.
- Remove borders form iframes by default.
- Added option to force editable exports even if the package has it disabled when loading it.
- Replace imported HTML entities to its previous form (#163).
- Change MathJax CDN (#191).
- Problem with Wiki idevice on pages with a lot of images (#202).
- Update Mac OS package generation instructions (#198).
- Added compatibility with ISO 9660 by cutting names to 8.3 format (#208).
-- eXeLearning <[email protected]> Tue, 29 Aug 2017 07:28:37 +0200
intef-exe (3:2.1.2) lucid; urgency=medium
* Ignacio Gros
- Fix #154 - TinyMCE 4 (fullscreen mode): iDevice icons (save, etc.) should be hidden
- You can now add attributes to an image
- About page update
- Fix #157 - TinyMCE: Image plugin (Constrain proportions).
- Hangman game available letters (#140). This string should not be used: abcdefghijklmnñopqrstuvwxyz
- Fix #169 - Error in element.py for PlainTextAreaElement.
* SDWeb
- Fix #156: Use base.css from style if one is available
- Solve #158 - Copy minified CSS and JS to its correct location on ePub export
- Solve #162: Version file in config folder
* Juan Rafael Fernández
- Fixed exe_do help (added text export)
- Removed 'ñ' from default hangman letters
- Clarified English text on "exemedia" and "pastemath" plugins
- Preparing mki18n.sh for 2.1.2 release
- New Spanish translation
intef-exe (3:2.1.1) lucid; urgency=medium
* SDWeb
- Completely rewrite Ubuntu installation from source instructions
- Minify JS and CSS files when exporting
- Fixed #60: Version notes not working on Internet Explorer
- Fixed #80: Nodes links not working when the node has special characters on its title
- FR #29: Paste images in TinyMCE and include them in the package
- Synchronized image upload to the server
- Added width, height and alt to image (eXe ask for alt with a Prompt)
- Added compatibility to Copy/Paste images with Microsoft Edge
- Ask for confirmation if alt is left empty
- FR #36: Style Designer. Reload the Styles' list after saving a Style
- Fixed #90: Microsoft Edge doesn't appear on the list of available browsers
- Fixed #91: Error when executing on RedHat, CentOS, Fedora...
- Fix #131: Change browser check to prevent the SO to ask the user the location of a non-installed browser
- Update Debian packages to remove slimit and add webassets
- Solve #98. Add "_" to the file name if it is forbidden.
- Changed JS minifier library from Slimit to Webassets
- Remove "slimit" imports where they weren't used
- Revised #80 to use decodeURIComponent only when needed
- Package generation refactoring for all platforms
* Francisco Javier Pulido Cuadrado
- Kids Style: Write and listen icons
* Ignacio Gros
- TinyMCE 4 - Update from 3.5.11 to 4.3.13 (3.5.11 is still available)
- Recoded plugin: ABBR and ACRONYM
- Recoded plugin: Add a paragraph at the end
- Recoded plugin: Quote With Authorship
- Recoded plugin: Clear (new line or block)
- Recoded plugin: Definition List
- Recoded plugin: Align and justify (to align figures, etc.)
- Recoded plugin: Effects
- Recoded plugin: Hangman game
- Recoded plugin: Images with Title and Attribution
- Recoded plugin: Link to anchors and nodes
- Recoded plugin: Lists with automatic numbering
- Recoded plugin: Media with Title and Attribution (it transforms old Flash code to HTML5 code)
- Recoded plugin: Insert HTML code as text (Syntax highlighting options to be used with Prism, by Lea Verou) and Paste HTML fragment (embed code)
- Recoded plugin: Tooltip (to be used with http://qtip2.com)
- New plugin: Insert/Edit Attributes
- New plugin: Paste mathematical markup (Mathjax options to be used with https://www.mathjax.org/)
- New plugin: Toolbar Toggle
- Other features:
- Code Magic: Replacement source code editor plugin by Josh Lobe
- fMath, by Ionel Alexandru (to use with the Paste mathematical markup plugin)
- Custom style formats
- Configurable attributes: Language, context menu, toolbar, templates...
- Toggle editor option (enable TinyMCE on demand when there's more than one TEXTAREA)
- TinyMCE 3.5.11 - Windows Media (wmv, wma) and Real Media (ram) disabled
- TinyMCE 3.5.11 - Tooltip plugin: Add a title to each definition so it's easier to identify them
- Edition - New advanced preference (Editor version)
- Edition - HTML5 is the default DOCTYPE
- Edition - FR #87: 'Please wait' message when saving
- Edition - FR #74: Make the Kids Style compatible with the iDevice Editor
- Edition - FR #72: iDevice Editor: Auto-select the Style and allow PNG icons
- Edition - nevow_clientToServerEvent error handling
- Style Designer - Custom font size (footer, menu...)
- Style Designer - Custom menu width
- Style Designer - FR #73: Make the New Styles compatible with the iDevice editor
- Style Designer - i18n revision: Hard-coded strings replaced
- Style Designer - Favicon
- HTML - FR #62: HTML5 Single page export: iDevice titles level (h2 instead of h1)
- HTML - FR #75: iDevice Editor: Add a different class to each custom iDevice
- Styles - Responsive design (image, video and iframe max-width in all cases)
- Styles - Print version: Print a link to the IFRAME src instead of the IFRAME itself
- HTML, JavaScript and CSS bug fix:
- CSS - Horizontal navigation (title position)
- JavaScript - Effects (error handling)
- JavaScript - Cloze iDevice: Autocomplete in input should be off (#81)
- JavaScript - Video dimensions where changed in some browsers (#68)
- JavaScript - Hangman game base64 encoding problem
- JavaScript - The tooltips were not working in blocks with effects
- JavaScript - Effects in Readium for Chrome
- JavaScript - Effects: Pagination accessibility problem with sreenreader (#121)
- JavaScript - HTML5 video with media player size problem in IE-11 (#134)
- JavaScript - Flash movie over an eXe dialog in IE-11 (#127)
- TinyMCE - Image and media plugin: An exe-figure containing an IFRAME could not be aligned
- TinyMCE - Image and media plugin: Get the right width so the wrapper (exe-figure) has the same size as the content
- TinyMCE - Image and media plugin: Remove nested figures
- TinyMCE - Image and media plugin: Avoid empty width error
- TinyMCE - Text deleted when updating a link (#42)
- TinyMCE - Hangman game edition in IE was not loading data (#37)
- TinyMCE - Remove 'fakepath' in Google Chrome
- TinyMCE - No definition tooltips could be created
- Style Designer - config.xml values were not loaded in IE (#35)
- Style Designer - Wrong image path in IE (#34)
- Edition - iDevice Editor: Cannot select an icon (#65)
- Edition - Avoid this error: 'TextAreaField' object has no attribute 'buttonCaption' (#61)
- Edition - BMP Windows 32 encoding (#38)
- Edition - The current Style could be deleted and that caused an error (#114)
- ePub - Multi-select feedback error (#56)
- ePub - SCORM Quiz was not working in some ePub readers (#56)
- References to forja.cenatic.es removed
- Authorship and license revision
- Fedora installation instructions (link to the download page)
- Heading level mismatch (<hX></h1>) solved. We use H1 for the node titles. (see #62)
* Juan Rafael Fernández
- Fixes in debian/ and the debian packaging, making lintian a bit happier.
- (Debian packaging) Fixed information about the new dependencies.
- i18n tools revision.
- Fixed some tiny bugs in mki18n.sh.
- Updated python-babel to version 2.3.4
- Fixed mistakes in some English messages.
- eXe is ready for Hebrew now.
- Wikipedia iDevice license revision.
* Translation Teams
- New full Russian translation, by Alexey Loginov
- New full Basque translation, by Joxemi Andonegi
- New full Valencian translaton, by Pilar Embid Giner
- New full Italian translation, by Andrea Primiani
- New full French translation, by Jesús Miguel Domínguez
- New full Portuguese translation, by Dionisio Martínez Soler
- New full Spanish translation, by Juan Rafael Fernández
- New full Galician translation, by Pablo Nimo Liboreiro
- New full Catalan translation, by Carles Ferrando García
- New Norwegian translation, by Henrik Kvalnes
- New Dutch translation, by Karel Werschkull
- New Tradicional Chinese translation, by Franklin Weng
* Pedro Peña Pérez
- Updated changelog for version 2.1
- Encode file name urls of files added to a style
- More reliable styleIdFromName
- Try to reconnect client after 4 seconds onerror too
- Wait 4 seconds to reconnect after client connection lost
- Export scorm and publish to Procomún in threads
- Don't close and clear client handle on connection failure
- Move LOM.es classification sources file to github
- Don't try to autodetect encoding of config.xml of a style unt
- Add exe/tools to Mac OS X package
- Calculate exeAppUri after server initialization (found free p
- Configure pybabel to catch more strings to translate
- Close temporal file descriptor to prevent windows errors when
- Safe check of backupName
- Prevent decode error when logging message
- Trying to fix Procomún publication from windows and mac binar
- Fallback to english locale if not locale autodetected
- Update Procomún WSDL and OAuth base url to point to productio
- Replace some 127.0.0.1 references with exeAppUri
- Replace some forja.cenatic.es links
- Preserve first html filename when uniquifying html file names
- Prevent stopping client timeout timer twice
- Escape xml entities when exporting LOM and LOM-ES metadata
- Trying to fix duplicated when saving a style
- Fix epub3 table of contents nesting
- Fix style creation in some browsers
- Fix Procomún publication (LOM-ES metadata needed)
- Disable SSL verification when publishing to Procomún in OAuth
- Allow to set empty value for license: (void)
- Fix wrong file format error opening elp without idevices
- Fix windows binary build
- Add new dependencies to deb and rpm packages
* Antonio Monje
- Branch merging and revision
* Mercedes Cotelo Lois
- Developments in the publishing capacities of eXe
intef-exe (3:2.1) lucid; urgency=medium
* Ignacio Gros
- Style Designer - Front-end development.
- TinyMCE - Update from 3.5.7 to 3.5.11 (3.5.7 didn't work with IE 11).
- TinyMCE - Effects plugin (accordion, tabs, pagination, carousel, timeline).
- TinyMCE - Tooltips plugin: Simple, inline HTML and AJAX tooltips.
- TinyMCE - Definition Lists plugin.
- TinyMCE - Games plugin (just a Hangman Game for the moment).
- TinyMCE - advlist plugin: Auto-numbered lists. Idea and CSS by José Miguel Andonegi.
- TinyMCE - media plugin: Allow custom width and height.
- TinyMCE - Paste Code Plugin: Edit the CODE, add inline CODE tags and wrap or unwrap the selected CODE.
- TinyMCE - Paste Code Plugin (Insert HTML code as text): New Syntax highlighting options.
- TinyMCE - Quote With Authorship plugin. Based in a previous work by José Ramón Jiménez Reyes.
- TinyMCE - Add Content Plugin, by Philipp Urlich. Add content at the end of the body outside a single DIV.
- TinyMCE - Configuration revision (valid_elements or extended_valid_elements). To review.
- TinyMCE - Configuration file. Now it's easier to overwrite some values using the Style's edition-extra-head new option.
- TinyMCE - CodeMagic advanced source code editor (sutulustus.com). Andrew Collington's (amnuts.com) version. It uses CodeMirror (codemirror.net).
- HTML - Website pagination: Add a span to the pagination links for presentation purposes.
- HTML - The main title is now wrapped into a DIV with the "headerContent" ID. Controlling the height of the header is now easier.
- HTML - Legal Notes (HTML revision). Work done by Juan Rafael Fernández and Antonio Monje.
- HTML - Package license (valid XHTML).
- HTML - Document metadata: License included.
- Styles - New Base Style (use it or edit a copy of it with the Style Designer).
- Styles - New Kids Style, designed by Francisco Javier Pulido Cuadrado.
- Styles - New SimplePoint Style for presentations.
- Styles - Responsive design + Compatibility with old browsers.
- Styles - Responsive design. iDevices with a long title.
- Styles - New options in the config.xml file (edition-extra-head and edition-extra-body).
- Styles - Package license presentation.
- Styles - Accessibility: Underlined links.
- Styles - Print problems fixed.
- Styles - Style with print button.
- Styles - Some Styles have been removed. They'll be available at exelearning.net.
- Styles - Add a zoom icon to the images using CSS (use the "exe-enlarge" class).
- Styles - Updated licenses.
- Styles - Images and media with caption (better presentation).
- Styles - Tknika Style with responsive design, by Ikuspe Sormen Estudioa.
- JavaScript - common.js has been refactored (all the previous functions are now part of $exe).
- JavaScript - "Hide feedback" custom text enabled.
- JavaScript - prettyPhoto (by Stephane Caron) instead of Lightbox (by Lokesh Dhakar). You can now show videos too.
- JavaScript - Experimental iDevices' JavaScript code out of common.js.
- JavaScript - We use Ext.MessageBox instead of libot_drag.js.
- JavaScript - Syntax highlighting: Prism, by Lea Verou.
- Edition - Confirm before undoing edits.
- Edition - License and footer are also visible while editing.
- Edition - When "creative commons: attribution 4.0" was selected, common.renderLicense was not returning the expected HTML.
- ePub3 - Presentation and JavaScript functionality revision.
- ePub3 - Use VIDEO or AUDIO instead of OBJECT. Add a link to FLV file before the VIDEO. Suggested by Rafael Vidal.
- HTML, JS and CSS bug fix:
- qTip out of the window. forja.cenatic.es: 1726.
- Click in order game error. Fixed by "frecorp". forja.cenatic.es: 2412.
- Image Gallery - Visible scrollbar while editing.
- Tknika Style revision.
- jQuery. sourceMappingURL removed. forja.cenatic.es: 2745.
- Package description should be escaped. forja.cenatic.es: 2680.
- Navigation menu font size problem.
- 404 errors.
- Initial splash image encoding problem (Windows 32).
- TinyMCE: Text deleted when updating a link (#42).
- Other minor CSS changes.
* Juan Rafael Fernández
- Improved the .deb packaging
- Removed copied libraries, we'll use libraries available as dependencies instead (BeautifulSoup, Feedparser, mimetex ...)
- Respect the FHS (locale, doc) with links
- The PO files are no longer installed, just the MO files
- New debian/copyright file, maintained it
- Fixed several lintian warnings and errors
- Documentation and English messages.
- Task 1080 - removed obsolete Manual.
- New mock 'definition' of eXe
- Rewrote README (HTML5 mentioned) and copyright files.
- New page, Legal Notes
- Fixed minor encoding (python vs. js) and spelling problems
- Fixed the FSF address.
- As spotted by Pablo Nimo, Wikipedia has a CC -by-sa license now too. Added.
- Translations
- prepared mki18n.sh for 2.1.
- Prepared eXe for Amharic, Bengali, Farsi, Hebrew
- Updated the versions of some of the libraries used
- Updated flowPlayer.swf from v3.2.7 to v3.2.18 (now GPL-3)
* Translation Teams
- New full Russian translation, by Alexey Loginov
- New full Basque translation, by Joxemi Andonegi
- New full Valencian translaton, by Pilar Embid Giner
- New full Italian translation, by Andrea Primiani
- New full French translation, by Jesús Miguel Domínguez
- New full Portuguese translation, by Dionisio Martínez Soler
- New full Dutch translation, by Karel Werschkull
- New full Galician translation, by Pablo Nimo Liboreiro