Seite 1 von 1
BlackCat CMS v0.8.0Alpha released!
Verfasst: Fr 26. Jul 2013, 14:36
von shadowcat
Pünktlich zum Wochenende veröffentlichen wir heute
BlackCat CMS v0.8.0 Alpha!
Download
http://blackcat-cms.org/page/download.php
Es gibt dort ein fertiges Bundle sowie die Möglichkeit, sich ein eigenes Bundle zusammen zu stellen.
Homepage
http://blackcat-cms.org/page/willkommen.php
Known Bugs
https://github.com/webbird/LEPTON_2_Bla ... state=open
Bugs melden
Bitte ausschließlich bei GitHub! https://github.com/webbird/LEPTON_2_BlackCat/issues
Bitte
mindestens folgende Angaben machen:
- PHP Version
- Betriebssystem des Servers
- Betriebssystem des PCs
- Browser Name und Version
Re: BlackCat CMS v0.8.0Alpha released!
Verfasst: Di 30. Jul 2013, 18:42
von shadowcat
Hier eine ZIP-Datei mit allen Änderungen seit der Alpha.
Gefixte GitHub Issues:
#103 show_menu() => link of current-menu wrong
#107 Alpha: Pages with visibility "private" or "registered" showing up
#109 Dwoo: page_description() and page_keywords() are broken?
#110 Dwoo: show_menu() handles values as integer
#113 Widget "blackcat": Strange results in version check
#115 The big plus (+) button in the lower left corner does not work
#117 User settings causes PHP fatal error
#119 Enhancement: The UI element for closing the page settings panel is hardly visible
#120 Unable to save WYSIWYG content if no Editor is installed
Edit: Neuer Download weiter unten.
Re: BlackCat CMS v0.8.0Alpha released!
Verfasst: Mi 31. Jul 2013, 16:49
von shadowcat
Update:
#106 Standard target for new page is "_blank"
#108 blackcatcms_v0.8.0Alpha_Bundle
#111 Pages.php: Page_trail is mixed up
#112 Installationsfehler Blackcat
#123 Installation Wizard: Error when trying to install optional addons in step 6
#122 Page settings not closed after deleting page
#124 Backend --> Addons not working
#125 INITIAL_PAGE still used in /backend/users/index.php
#126 Should show_menu() hide the menu on maintenance mode?
#128 Minimal username length / installation
Das ZIP ist NICHT inkrementell, das heißt es beinhaltet alle Änderungen seit der Alpha, nicht nur die seit dem gestrigen ZIP.
Edit: Download entfernt, neue Datei weiter unten.
Re: BlackCat CMS v0.8.0Alpha released!
Verfasst: Mi 7. Aug 2013, 17:17
von shadowcat
Hier ein neues ZIP. Es beinhaltet alle Differenzen seit der Alpha.
WICHTIG: Die Datenbankstrukturen haben sich stellenweise geändert. Das ist in dem ZIP NICHT berücksichtigt!
- #130 Settings do not go (wontfix; Ersteller hat sich auf Rückfrage nicht gemeldet und Fehler nicht reproduzierbar)
- #131 URL /backend throws a blank page
- #133 Page modified date not changed
- #135 WBDEFAULT_SENDER_NAME no longer needed (wontfix; wird absichtlich dennoch gesetzt)
- #138 output_interface is not active
- #139 Replacement for output_filter - open for suggestions
- #141 Unable to change user preferences
Offene Issues: 20 (einige für Version 1.1)
Neue Tabellen:
Code: Alles auswählen
CREATE TABLE `cat_pages_settings` (
`page_id` INT(11) NOT NULL,
`set_type` ENUM('internal','meta') NOT NULL DEFAULT 'internal',
`set_name` VARCHAR(50) NOT NULL,
`set_value` TINYTEXT NOT NULL,
UNIQUE INDEX `set_type_set_name` (`page_id`, `set_type`, `set_name`),
CONSTRAINT `page_id` FOREIGN KEY (`page_id`) REFERENCES `cat_pages` (`page_id`)
) COMMENT='Additional settings for pages' ENGINE=InnoDB DEFAULT CHARSET=utf8;
Geänderte Tabellen:
Code: Alles auswählen
ALTER TABLE `cat_sections`
ADD COLUMN `modified_when` INT(11) NOT NULL DEFAULT '0' AFTER `name`;
ALTER TABLE `cat_sections`
ADD COLUMN `modified_by` INT(11) NOT NULL DEFAULT '0' AFTER `modified_when`;
Wichtig: Das Prefix 'cat_' durch das tatsächlich verwendete Prefix ersetzen!
Sonstiges:
Nach Austausch der Dateien die install.php des Moduls blackcatFilter ausführen. (Legt eine Tabelle an.) Alternativ:
Code: Alles auswählen
CREATE TABLE `cat_mod_filter` (
`filter_name` VARCHAR(50) NOT NULL,
`module_name` VARCHAR(50) NULL DEFAULT NULL,
`filter_description` TEXT NULL,
`filter_code` TEXT NULL,
`filter_active` ENUM('Y','N') NOT NULL DEFAULT 'Y',
UNIQUE INDEX `filter_name_module_name` (`filter_name`, `module_name`)
)
COMMENT='Successor of Output Filters'
COLLATE='utf8_general_ci'
ENGINE=InnoDB;
Edit: ZIP entfernt, neue Version weiter unten.
Re: BlackCat CMS v0.8.0Alpha released!
Verfasst: Di 20. Aug 2013, 09:25
von shadowcat
Ein neues ZIP mit allen Differenzen.