List of commits:
Subject Hash Author Date (UTC)
IvoR: track any changes of character data 4fcc7054b0b726b898fd1e2a6637a7a26027e315 Alex 2022-07-27 22:12:50
textfield: fix html characters substituting. I forgot IIf calculates both expressions :) e16c8c6f3576a1e98f292a18a6e5140230129536 Alex 2022-07-27 21:47:42
prepare AmigaOS4 icon 19747a4b22ffb76cd46f312751998e8c7b9522c8 Aleksei Gerasimov 2022-07-27 08:58:09
better lighted RSS image 8b948d3509fe4bf1965cbb422421ef9351d130f7 Alex 2022-07-27 08:36:36
prepare Amiga style selected icon 4a7d2609b85565b82a64ef47b37faaa5e002b570 Alex 2022-07-27 07:40:30
ReadMe: typo and feeds mention faa9536b0bbc36f55bcbd930c1962c1cb13a3aec Alex 2022-07-27 06:00:50
ReadMe: describe changes 4a3738dabb171bcb26169807703ef379948f754b Alex 2022-07-27 05:53:05
IvoR: workaround for fast switching 3f699a83db36204bf93105a98244c49e31ea5a18 Alex 2022-07-27 05:09:24
textfield: cover more html characters aecd5997b5f1db463524550a9f3a784701c080c8 Alex 2022-07-27 04:59:07
feedtree: polish status messages 3eb570cfff3d3f8d285542954368cf11aa449615 Alex 2022-07-27 02:54:45
feedtree: implement direct work with curl's easy interface 7ff0dc14b7a436545cedf9ea3d3c8e724dba323c Alex 2022-07-27 02:36:08
IvoRSS: prepare optional parametr UseDefaultDownloader c167731044a81a2091f93557d7d908f671c20133 Alex 2022-07-26 02:32:56
feedtree: prepare custom curl handling 70eb6c5f40d698b4ad017752f54daed1a09647d5 Alex 2022-07-26 02:01:24
feedtree: explicitly mark when GroupFetch is ready and show time spent 83fe01fb883fcc66849da02eecbdc61f6ea52b99 Alex 2022-07-25 01:18:47
feedtree: rework fetcher to not rely on guids 760fc788f0297847469290a5c75e3df95da3cfe8 Alex 2022-07-24 22:25:26
IvoRSS: change version to 1.1 It's time to release! 8f883741fce50dc3e9c869c2e41e1fb8b67b0048 Alex 2022-07-24 04:19:12
feeds: add even more Amiga related feeds b19a07dcdd1f198e6fff88f13c16962e6ab73084 Alex 2022-07-24 04:18:08
feedtree: reload rss channel whenever user decides to fetch 52c6dde8b832490b873b02d2157da3bc81b73e54 Alex 2022-07-24 04:10:09
lurk: seru na to, parser spouštím pro každej link zvlášť 5b0a792527510716e36da04e36689765907500c2 Alex 2022-07-24 02:06:56
do not let text labels to explode eeec1ccb6b0c3c90e2e0803021817a07489c1093 Alex 2022-07-24 01:36:32
Commit 4fcc7054b0b726b898fd1e2a6637a7a26027e315 - IvoR: track any changes of character data
Author: Alex
Author date (UTC): 2022-07-27 22:12
Committer name: Alex
Committer date (UTC): 2022-07-27 22:12
Parent(s): e16c8c6f3576a1e98f292a18a6e5140230129536
Signer:
Signing key:
Signing status: N
Tree: 85bc2a190a6a90e9d94badd4288cec7bd3276237
File Lines added Lines deleted
IvoR.hws 4 3
File IvoR.hws changed (mode: 100755) (index af0ada4..ab1c18d)
... ... Function CharacterData(p, str$)
266 266 EndSwitch EndSwitch
267 267
268 268 Else Else
269 current_item.guid = current_item.guid .. str$
269 270 Switch current_element$ Switch current_element$
270 271 Case "title": Case "title":
271 272 current_item.title = tf_Label(str$) current_item.title = tf_Label(str$)
272 current_item.guid = current_item.guid .. "title:" .. str$
273 ;current_item.guid = current_item.guid .. "title:" .. str$
273 274 Case "dc:creator": FallThrough Case "dc:creator": FallThrough
274 275 Case "author": current_item.author = StripStr(str$) Case "author": current_item.author = StripStr(str$)
275 276 ;č číselné hodnoty se nějak špatně načítají. ;č číselné hodnoty se nějak špatně načítají.
276 277 ;č fakt je nějaký problém v tom serializatoru ;č fakt je nějaký problém v tom serializatoru
277 278 Case "guid": Case "guid":
278 279 If current_item.link = "" Then current_item.link = StripStr(str$) If current_item.link = "" Then current_item.link = StripStr(str$)
279 current_item.guid = current_item.guid .. "guid:" .. str$
280 ;current_item.guid = current_item.guid .. "guid:" .. str$
280 281 Case "updated": Case "updated":
281 current_item.guid = current_item.guid .. "updated:" .. str$
282 ;current_item.guid = current_item.guid .. "updated:" .. str$
282 283 current_item.pubdate = StripStr(str$) current_item.pubdate = StripStr(str$)
283 284 Case "pubDate": current_item.pubdate = StripStr(str$) Case "pubDate": current_item.pubdate = StripStr(str$)
284 285
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/iam-git/IvoRSS

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/iam-git/IvoRSS

Clone this repository using git:
git clone git://git.rocketgit.com/user/iam-git/IvoRSS

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main