Compare commits

...

2 commits

Author SHA1 Message Date
Arnas Udovic
c3854fac43 v4
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2025-01-06 21:37:40 +02:00
Arnas Udovic
9fa0ef78da update README and CHANGELOG
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2025-01-06 21:06:37 +02:00
3 changed files with 17 additions and 2 deletions

View file

@ -1,3 +1,10 @@
v4.0.0, released 2025-01-06
* support both 32 and 64 bases
* added Convert command between bases
v2.0.0, released 2024-09-20
* move to base 62
v1.0.2, released 2024-08-08 v1.0.2, released 2024-08-08
* support negative values * support negative values

View file

@ -2,7 +2,15 @@
[![Build Status](https://drone.arns.lt/api/badges/zordsdavini/abcex/status.svg)](https://drone.arns.lt/zordsdavini/abcex) [![Build Status](https://drone.arns.lt/api/badges/zordsdavini/abcex/status.svg)](https://drone.arns.lt/zordsdavini/abcex)
Computing system based on the number 62 Computing system based on the number 62 or 36
## Usage
`Encode(int, int) -> string` - convert number into string based on given base.
`Decode(string, int) -> int` - convert from encoded string into number based on given base.
`Convert(string, int, int) -> string` - convert encoded string from one base to another.
## History ## History

2
go.mod
View file

@ -1,3 +1,3 @@
module g.arns.lt/zordsdavini/abcex/v3 module g.arns.lt/zordsdavini/abcex/v4
go 1.16 go 1.16