File tree Expand file tree Collapse file tree 2 files changed +25
-0
lines changed
Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -261,6 +261,7 @@ modules: object [
261261 thru-cache: https://src.rebol.tech/modules/thru-cache.reb
262262 to-ascii: https://src.rebol.tech/modules/to-ascii.reb
263263 unicode-utils: https://src.rebol.tech/modules/unicode-utils.reb
264+ upgrade: https://src.rebol.tech/modules/upgrade.red
264265 daytime: https://src.rebol.tech/mezz/prot-daytime.reb
265266 mail: https://src.rebol.tech/mezz/prot-mail.reb
266267 mysql: https://src.rebol.tech/mezz/prot-mysql.reb
Original file line number Diff line number Diff line change 1+ Rebol [
2+ title: "Upgrade"
3+ purpose: "Keep track of possible Rebol upgrades"
4+ name: upgrade
5+ type: module
6+ options: [delay]
7+ version: 0.0.1
8+ exports: [upgrade]
9+ author: @Oldes
10+ file: %upgrade.reb
11+ home: https://src.rebol.tech/modules/upgrade.reb
12+ ]
13+
14+ system/options/log/upgrade: 4
15+ upgrade : function [
16+ "Check if there are possible upgrades"
17+ ] [
18+ sys/log/error 'UPGRADE "Not yet implemented!"
19+ ;; remove itself...
20+ try [delete system/options/modules/upgrade.reb ]
21+ try [unset in system/contexts/user 'upgrade]
22+ try [unset in system/contexts/lib 'upgrade]
23+ system/modules/upgrade: https://src.rebol.tech/modules/upgrade.red
24+ ]
You can’t perform that action at this time.
0 commit comments