Subversion Repositories SvarDOS

Compare Revisions

Ignore whitespace Rev 1623 → Rev 1624

/install/trunk/install.c
3,7 → 3,7
*
* PUBLISHED UNDER THE TERMS OF THE MIT LICENSE
*
* COPYRIGHT (C) 2016-2023 MATEUSZ VISTE, ALL RIGHTS RESERVED.
* COPYRIGHT (C) 2016-2024 MATEUSZ VISTE, ALL RIGHTS RESERVED.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
/install/trunk/install.txt
1,6 → 1,5
 
SVARDOS INSTALLER
Copyright (C) 2016-2023 Mateusz Viste
 
This is a simple installer for SvarDOS. It installs packages from the CD or
floppy (relying on pkginst), SYS the boot disk and pre-configures default boot
11,7 → 10,7
 
The SvarDOS INSTALL program is published under the terms of the MIT license.
 
Copyright (C) 2016-2023 Mateusz Viste
Copyright (C) 2016-2024 Mateusz Viste
All rights reserved.
 
Permission is hereby granted, free of charge, to any person obtaining a copy
/install/trunk/keylay.h
21,6 → 21,8
"Hungarian\0hu\0\3\124\1\1\0\320",
/****** IT ******/
"Italian\0it\0\3\132\1\1\0\0",
/****** LA ******/
"Latin-American\0la\0\1\265\0\1\0\0",
/****** NO ******/
"Norvegian\0no\0\3\132\11\1\0\0",
/****** PL ******/
/install/trunk/keyoff.h
15,18 → 15,20
#define OFFLEN_HU 1
#define OFFLOC_IT 12
#define OFFLEN_IT 1
#define OFFLOC_NO 13
#define OFFLOC_LA 13
#define OFFLEN_LA 1
#define OFFLOC_NO 14
#define OFFLEN_NO 1
#define OFFLOC_PL 14
#define OFFLOC_PL 15
#define OFFLEN_PL 2
#define OFFLOC_RU 16
#define OFFLOC_RU 17
#define OFFLEN_RU 2
#define OFFLOC_SI 18
#define OFFLOC_SI 19
#define OFFLEN_SI 1
#define OFFLOC_ES 19
#define OFFLOC_ES 20
#define OFFLEN_ES 1
#define OFFLOC_SV 20
#define OFFLOC_SV 21
#define OFFLEN_SV 1
#define OFFLOC_TR 21
#define OFFLOC_TR 22
#define OFFLEN_TR 1
#define OFFCOUNT 22
#define OFFCOUNT 23
/install/trunk/locales.c
3,7 → 3,7
* contains the list of all supported keyboard layouts, along with a way to
* select sets of keyboard layouts that apply to only a specific region.
*
* Copyright (C) 2016-2023 Mateusz Viste
* Copyright (C) 2016-2024 Mateusz Viste
*/
 
/* the kblayouts list is a NULL-terminated array that contains entries in the
109,6 → 109,9
/* Italian */
addnew("IT", "Italian", "it", 858, 1, 1, 0);
 
/* Latin-American */
addnew("LA", "Latin-American", "la", 437, 0, 1, 0);
 
/* Norvegian */
addnew("NO", "Norvegian", "no", 858, 9, 1, 0);