Upgraded Redmine to version 3.4.13, now it works with current Debian 11 and Ruby ruby 2.5.8
Next milestone is to check BlackBox build pipeline
Search found 1701 matches
- Wed Mar 09, 2022 7:37 am
- Forum: Infrastructure
- Topic: VRS support terminated by hosting provider
- Replies: 7
- Views: 33557
- Mon Mar 07, 2022 6:35 pm
- Forum: Infrastructure
- Topic: VRS support terminated by hosting provider
- Replies: 7
- Views: 33557
- Tue Aug 18, 2020 1:07 am
- Forum: Features
- Topic: issue-#210 SYSTEM.ADR(ProcedureType) should be supported
- Replies: 4
- Views: 44133
Re: issue-#210 SYSTEM.ADR(ProcedureType) should be supported
Yes!
Install CPfront, then run commands from Build/build.odc file.
Install CPfront, then run commands from Build/build.odc file.
- Sun Aug 16, 2020 10:35 am
- Forum: Features
- Topic: issue-#210 SYSTEM.ADR(ProcedureType) should be supported
- Replies: 4
- Views: 44133
Re: issue-#210 SYSTEM.ADR(ProcedureType) should be supported
This is used in armBox project
https://community.blackboxframework.org ... f=29&t=252
So Build/build.odc should executed well with CPfront installed
CPfront uses front-end of BlackBox compiler.
https://community.blackboxframework.org ... f=29&t=252
So Build/build.odc should executed well with CPfront installed
CPfront uses front-end of BlackBox compiler.
- Sat Jul 18, 2020 1:51 pm
- Forum: Bugs
- Topic: about SYSTEM.ADR(BasicType)
- Replies: 11
- Views: 35197
Re: about SYSTEM.ADR(BasicType)
The fix of luowy allowing to get descriptor of type.
This is important for such case
This is relevant for some lowlevel project.
This is important for such case
Code: Select all
MODULE Test;
IMPORT SYSTEM;
TYPE
Command* = PROCEDURE;
VAR
adr: INTEGER;
BEGIN
adr := SYSTEM.ADR(Command)
END Test.
- Sat Jun 06, 2020 3:03 pm
- Forum: Bugs
- Topic: Trap 25 on start
- Replies: 11
- Views: 25581
Re: Trap 25 on start
As reported by Mathieu Westerweele this problem also took place. I suggested to add prt = NIL just after selecting current printer in Documents.StdDocument.SetView. IF Printers.dir # NIL THEN prt := Printers.dir.Current() ELSE prt := NIL END; prt = NIL; (* <----------- *) IF prt # NIL THEN prt.SetOr...
- Wed Nov 06, 2019 6:36 pm
- Forum: Resolved (Infrastructure)
- Topic: issue-#203 Release 1.7.2
- Replies: 19
- Views: 44417
Re: issue-#203 Release 1.7.2
Unfortunately I don't have working certificate now.
- Fri Oct 25, 2019 5:51 am
- Forum: Resolved (Infrastructure)
- Topic: issue-#203 Release 1.7.2
- Replies: 19
- Views: 44417
Re: issue-#203 Release 1.7.2
Josef, I think that fixing the dates in the changelog in DevDebug and StdDebug even does not require voting. You can change it with last commit, when you will change the version file.
- Fri Sep 20, 2019 2:30 am
- Forum: Infrastructure
- Topic: service interruption
- Replies: 5
- Views: 17274
Re: service interruption
Certificates extended until 19th Dec. Also cleaned logs for free space in the server. My small contribution for the Center community
- Thu Aug 08, 2019 5:35 pm
- Forum: Bugs
- Topic: Slow printing speed
- Replies: 4
- Views: 15948
Re: Slow printing speed
Here the trouble can be, that TextModel.Model contains many "peaces". The space is ASCII "Piece" and ● is unicode "LPiece". So TextModels chunk the data with many such peaces and precess them separately. Some people think, that TextModels should be redesigned for realit...