Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated Manuals, Modded Friend Create, added workspace menu #105

Merged
merged 10 commits into from
Mar 4, 2019
Binary file removed docs/Developer's manual.pdf
Binary file not shown.
5 changes: 4 additions & 1 deletion interfaces/web_desktop/apps/FriendCreate/Scripts/artisan.js
Original file line number Diff line number Diff line change
Expand Up @@ -1213,6 +1213,9 @@ Application.showPrefs = function()
};

// Check if we support the filetype --------------------------------------------
/* If a file is (Currently) un-supported, return true anyway. The file's extension
will still be recorded and then can be opened as a standard text file.
*/
Application.checkFileType = function( path )
{
if( !path || ( path && !path.split ) ) return;
Expand Down Expand Up @@ -1252,7 +1255,7 @@ Application.checkFileType = function( path )
case 'conf':
return true;
default:
return false;
return true; // no reason to reject a file. just force to a .txt syntax
}
};

Expand Down
6 changes: 6 additions & 0 deletions interfaces/web_desktop/js/gui/workspace_inside.js
Original file line number Diff line number Diff line change
Expand Up @@ -6591,6 +6591,12 @@ body .View.Active.IconWindow ::-webkit-scrollbar-thumb
{
menu = [
{
name: i18n( 'menu_look_and_feel' ),
command: function()
{
ExecuteApplication( 'Looknfeel' );
}
}, {
name: i18n( 'menu_edit_wallpaper' ),
command: function()
{
Expand Down
3 changes: 2 additions & 1 deletion interfaces/web_desktop/js/io/door_system.js
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,8 @@ DoorSystem.prototype.getIcons = function( fileInfo, callback )
},
'System:Documentation/': function()
{
var files = [ 'Developer\'s manual.pdf', 'DOS manual.pdf' ]; // not complete yet, 'User\'s guide.pdf' ];
var files = [ 'Documentation.pdf', 'Programmer\'s Manual.pdf', 'Friend DOS and CLI Manual.pdf', 'FriendUP API Manual.pdf' ]; // not complete yet, 'User\'s guide.pdf' ];
// var files = [ 'Developer\'s manual.pdf', 'DOS manual.pdf' ]; // not complete yet, 'User\'s guide.pdf' ];
//'Workspace', 'FriendScript', 'FriendDOS', 'Dormant', 'Programming', 'VoiceCommand' ];
var dirs = []; //'Applications', 'Modules', 'Libraries', 'Repositories', 'Devices' ];
var eles = [];
Expand Down
1 change: 1 addition & 0 deletions interfaces/web_desktop/locale/en.locale
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ menu_new_window : New window

menu_edit_wallpaper : Edit wallpaper
menu_set_as_wallpaper : Set as wallpaper
menu_look_and_feel : Personalize Look and feel
i18n_edit_dock : Edit dock
i18n_remove_from_dock : Remove from dock

Expand Down
Binary file not shown.
Binary file not shown.